interface CfnAggregationAuthorizationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Config.Mixins.CfnAggregationAuthorizationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconfig/mixins#CfnAggregationAuthorizationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.config.mixins.CfnAggregationAuthorizationMixinProps |
Python | aws_cdk.mixins_preview.aws_config.mixins.CfnAggregationAuthorizationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_config » mixins » CfnAggregationAuthorizationMixinProps |
Properties for CfnAggregationAuthorizationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as config_mixins } from '@aws-cdk/mixins-preview/aws-config';
const cfnAggregationAuthorizationMixinProps: config_mixins.CfnAggregationAuthorizationMixinProps = {
authorizedAccountId: 'authorizedAccountId',
authorizedAwsRegion: 'authorizedAwsRegion',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| authorized | string | The 12-digit account ID of the account authorized to aggregate data. |
| authorized | string | The region authorized to collect aggregated data. |
| tags? | Cfn[] | An array of tag object. |
authorizedAccountId?
Type:
string
(optional)
The 12-digit account ID of the account authorized to aggregate data.
authorizedAwsRegion?
Type:
string
(optional)
The region authorized to collect aggregated data.
tags?
Type:
Cfn[]
(optional)
An array of tag object.

.NET
Go
Java
Python
TypeScript