interface ConfigurationRecorderReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Config.ConfigurationRecorderReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconfig#ConfigurationRecorderReference |
Java | software.amazon.awscdk.interfaces.config.ConfigurationRecorderReference |
Python | aws_cdk.interfaces.aws_config.ConfigurationRecorderReference |
TypeScript | aws-cdk-lib » interfaces » aws_config » ConfigurationRecorderReference |
A reference to a ConfigurationRecorder 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 configurationRecorderReference: interfaces_aws_config.ConfigurationRecorderReference = {
configurationRecorderId: 'configurationRecorderId',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | string | The Id of the ConfigurationRecorder resource. |
configurationRecorderId
Type:
string
The Id of the ConfigurationRecorder resource.

.NET
Go
Java
Python
TypeScript