interface ConfigurationAggregatorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Config.ConfigurationAggregatorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconfig#ConfigurationAggregatorReference |
Java | software.amazon.awscdk.services.config.ConfigurationAggregatorReference |
Python | aws_cdk.aws_config.ConfigurationAggregatorReference |
TypeScript | aws-cdk-lib » aws_config » ConfigurationAggregatorReference |
A reference to a ConfigurationAggregator 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 config } from 'aws-cdk-lib';
const configurationAggregatorReference: config.ConfigurationAggregatorReference = {
configurationAggregatorArn: 'configurationAggregatorArn',
configurationAggregatorName: 'configurationAggregatorName',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The ARN of the ConfigurationAggregator resource. |
| configuration | string | The ConfigurationAggregatorName of the ConfigurationAggregator resource. |
configurationAggregatorArn
Type:
string
The ARN of the ConfigurationAggregator resource.
configurationAggregatorName
Type:
string
The ConfigurationAggregatorName of the ConfigurationAggregator resource.

.NET
Go
Java
Python
TypeScript