interface CommonControlReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ControlCatalog.CommonControlReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscontrolcatalog#CommonControlReference |
Java | software.amazon.awscdk.interfaces.controlcatalog.CommonControlReference |
Python | aws_cdk.interfaces.aws_controlcatalog.CommonControlReference |
TypeScript | aws-cdk-lib » interfaces » aws_controlcatalog » CommonControlReference |
A reference to a CommonControl resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_controlcatalog as interfaces_controlcatalog } from 'aws-cdk-lib/interfaces';
const commonControlReference: interfaces_controlcatalog.CommonControlReference = {
commonControlArn: 'commonControlArn',
commonControlId: 'commonControlId',
};
Properties
| Name | Type | Description |
|---|---|---|
| common | string | The ARN of the CommonControl resource. |
| common | string | The CommonControlId of the CommonControl resource. |
commonControlArn
Type:
string
The ARN of the CommonControl resource.
commonControlId
Type:
string
The CommonControlId of the CommonControl resource.

.NET
Go
Java
Python
TypeScript