interface ControlReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ControlCatalog.ControlReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscontrolcatalog#ControlReference |
Java | software.amazon.awscdk.interfaces.controlcatalog.ControlReference |
Python | aws_cdk.interfaces.aws_controlcatalog.ControlReference |
TypeScript | aws-cdk-lib » interfaces » aws_controlcatalog » ControlReference |
A reference to a Control 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 controlReference: interfaces_controlcatalog.ControlReference = {
controlArn: 'controlArn',
controlId: 'controlId',
};
Properties
| Name | Type | Description |
|---|---|---|
| control | string | The ARN of the Control resource. |
| control | string | The ControlId of the Control resource. |
controlArn
Type:
string
The ARN of the Control resource.
controlId
Type:
string
The ControlId of the Control resource.

.NET
Go
Java
Python
TypeScript