Struct rusoto_config::GetDiscoveredResourceCountsRequest[][src]

pub struct GetDiscoveredResourceCountsRequest {
    pub limit: Option<i64>,
    pub next_token: Option<String>,
    pub resource_types: Option<Vec<String>>,
}

Fields

The maximum number of ResourceCount objects returned on each page. The default is 100. You cannot specify a number greater than 100. If you specify 0, AWS Config uses the default.

The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

The comma-separated list that specifies the resource types that you want AWS Config to return (for example, "AWS::EC2::Instance", "AWS::IAM::User").

If a value for resourceTypes is not specified, AWS Config returns all resource types that AWS Config is recording in the region for your account.

If the configuration recorder is turned off, AWS Config returns an empty list of ResourceCount objects. If the configuration recorder is not recording a specific resource type (for example, S3 buckets), that resource type is not returned in the list of ResourceCount objects.

Trait Implementations

impl Default for GetDiscoveredResourceCountsRequest
[src]

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

impl Debug for GetDiscoveredResourceCountsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetDiscoveredResourceCountsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetDiscoveredResourceCountsRequest
[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