Struct rusoto_config::GetDiscoveredResourceCountsResponse[][src]

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

Fields

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

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

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

Returns the "default value" for a type. Read more

impl Debug for GetDiscoveredResourceCountsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDiscoveredResourceCountsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetDiscoveredResourceCountsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations