[][src]Struct rusoto_config::GetDiscoveredResourceCountsResponse

pub struct GetDiscoveredResourceCountsResponse {
    pub next_token: Option<String>,
    pub resource_counts: Option<Vec<ResourceCount>>,
    pub total_discovered_resources: Option<i64>,
}

Fields

next_token: Option<String>

The string that you use in a subsequent request to get the next page of results in a paginated response.

resource_counts: Option<Vec<ResourceCount>>

The list of ResourceCount objects. Each object is listed in descending order by the number of resources.

total_discovered_resources: Option<i64>

The total number of resources that AWS Config is recording in the region for your account. If you specify resource types in the request, AWS Config returns only the total number of resources for those resource types.

Example

  1. AWS Config is recording three resource types in the US East (Ohio) Region for your account: 25 EC2 instances, 20 IAM users, and 15 S3 buckets, for a total of 60 resources.

  2. You make a call to the GetDiscoveredResourceCounts action and specify the resource type, "AWS::EC2::Instances", in the request.

  3. AWS Config returns 25 for totalDiscoveredResources.

Trait Implementations

impl PartialEq<GetDiscoveredResourceCountsResponse> for GetDiscoveredResourceCountsResponse[src]

impl Default for GetDiscoveredResourceCountsResponse[src]

impl Clone for GetDiscoveredResourceCountsResponse[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GetDiscoveredResourceCountsResponse[src]

impl<'de> Deserialize<'de> for GetDiscoveredResourceCountsResponse[src]

Auto Trait Implementations

impl Send for GetDiscoveredResourceCountsResponse

impl Sync for GetDiscoveredResourceCountsResponse

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self