Struct rusoto_config::OrganizationAggregationSource[][src]

pub struct OrganizationAggregationSource {
    pub all_aws_regions: Option<bool>,
    pub aws_regions: Option<Vec<String>>,
    pub role_arn: String,
}

This object contains regions to setup the aggregator and an IAM role to retrieve organization details.

Fields

If true, aggreagate existing AWS Config regions and future regions.

The source regions being aggregated.

ARN of the IAM role used to retreive AWS Organization details associated with the aggregator account.

Trait Implementations

impl Default for OrganizationAggregationSource
[src]

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

impl Debug for OrganizationAggregationSource
[src]

Formats the value using the given formatter. Read more

impl Clone for OrganizationAggregationSource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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