interface AggregationAuthorizationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Config.AggregationAuthorizationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconfig#AggregationAuthorizationReference |
Java | software.amazon.awscdk.interfaces.config.AggregationAuthorizationReference |
Python | aws_cdk.interfaces.aws_config.AggregationAuthorizationReference |
TypeScript | aws-cdk-lib » interfaces » aws_config » AggregationAuthorizationReference |
A reference to a AggregationAuthorization resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_config as interfaces_aws_config } from 'aws-cdk-lib/interfaces';
const aggregationAuthorizationReference: interfaces_aws_config.AggregationAuthorizationReference = {
aggregationAuthorizationArn: 'aggregationAuthorizationArn',
authorizedAccountId: 'authorizedAccountId',
authorizedAwsRegion: 'authorizedAwsRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| aggregation | string | The ARN of the AggregationAuthorization resource. |
| authorized | string | The AuthorizedAccountId of the AggregationAuthorization resource. |
| authorized | string | The AuthorizedAwsRegion of the AggregationAuthorization resource. |
aggregationAuthorizationArn
Type:
string
The ARN of the AggregationAuthorization resource.
authorizedAccountId
Type:
string
The AuthorizedAccountId of the AggregationAuthorization resource.
authorizedAwsRegion
Type:
string
The AuthorizedAwsRegion of the AggregationAuthorization resource.

.NET
Go
Java
Python
TypeScript