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

.NET
Go
Java
Python
TypeScript