[][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 Clone for GetDiscoveredResourceCountsResponse[src]

impl Debug for GetDiscoveredResourceCountsResponse[src]

impl Default for GetDiscoveredResourceCountsResponse[src]

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

impl PartialEq<GetDiscoveredResourceCountsResponse> for GetDiscoveredResourceCountsResponse[src]

impl StructuralPartialEq for GetDiscoveredResourceCountsResponse[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.