[][src]Struct rusoto_resourcegroupstaggingapi::GetComplianceSummaryInput

pub struct GetComplianceSummaryInput {
    pub group_by: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub pagination_token: Option<String>,
    pub region_filters: Option<Vec<String>>,
    pub resource_type_filters: Option<Vec<String>>,
    pub tag_key_filters: Option<Vec<String>>,
    pub target_id_filters: Option<Vec<String>>,
}

Fields

group_by: Option<Vec<String>>

A list of attributes to group the counts of noncompliant resources by. If supplied, the counts are sorted by those attributes.

max_results: Option<i64>

A limit that restricts the number of results that are returned per page.

pagination_token: Option<String>

A string that indicates that additional data is available. Leave this value empty for your initial request. If the response includes a PaginationToken, use that string for this value to request an additional page of data.

region_filters: Option<Vec<String>>

A list of Regions to limit the output by. If you use this parameter, the count of returned noncompliant resources includes only resources in the specified Regions.

resource_type_filters: Option<Vec<String>>

The constraints on the resources that you want returned. The format of each resource type is service[:resourceType]. For example, specifying a resource type of ec2 returns all Amazon EC2 resources (which includes EC2 instances). Specifying a resource type of ec2:instance returns only EC2 instances.

The string for each service name and resource type is the same as that embedded in a resource's Amazon Resource Name (ARN). Consult the AWS General Reference for the following:

You can specify multiple resource types by using an array. The array can include up to 100 items. Note that the length constraint requirement applies to each resource type filter.

tag_key_filters: Option<Vec<String>>

A list of tag keys to limit the output by. If you use this parameter, the count of returned noncompliant resources includes only resources that have the specified tag keys.

target_id_filters: Option<Vec<String>>

The target identifiers (usually, specific account IDs) to limit the output by. If you use this parameter, the count of returned noncompliant resources includes only resources with the specified target IDs.

Trait Implementations

impl Clone for GetComplianceSummaryInput[src]

impl Debug for GetComplianceSummaryInput[src]

impl Default for GetComplianceSummaryInput[src]

impl PartialEq<GetComplianceSummaryInput> for GetComplianceSummaryInput[src]

impl Serialize for GetComplianceSummaryInput[src]

impl StructuralPartialEq for GetComplianceSummaryInput[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> From<T> for T[src]

impl<T> Instrument 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.