interface ConformancePackReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Config.ConformancePackReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconfig#ConformancePackReference |
Java | software.amazon.awscdk.interfaces.config.ConformancePackReference |
Python | aws_cdk.interfaces.aws_config.ConformancePackReference |
TypeScript | aws-cdk-lib » interfaces » aws_config » ConformancePackReference |
A reference to a ConformancePack 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_config } from 'aws-cdk-lib/interfaces';
const conformancePackReference: interfaces_config.ConformancePackReference = {
conformancePackName: 'conformancePackName',
};
Properties
| Name | Type | Description |
|---|---|---|
| conformance | string | The ConformancePackName of the ConformancePack resource. |
conformancePackName
Type:
string
The ConformancePackName of the ConformancePack resource.

.NET
Go
Java
Python
TypeScript