interface ConfigurationAggregatorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Config.ConfigurationAggregatorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconfig#ConfigurationAggregatorReference |
Java | software.amazon.awscdk.interfaces.config.ConfigurationAggregatorReference |
Python | aws_cdk.interfaces.aws_config.ConfigurationAggregatorReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_config } from 'aws-cdk-lib/interfaces';
const configurationAggregatorReference: interfaces_aws_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