interface EnabledControlReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ControlTower.EnabledControlReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscontroltower#EnabledControlReference |
Java | software.amazon.awscdk.interfaces.controltower.EnabledControlReference |
Python | aws_cdk.interfaces.aws_controltower.EnabledControlReference |
TypeScript | aws-cdk-lib » interfaces » aws_controltower » EnabledControlReference |
A reference to a EnabledControl resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_controltower as interfaces_controltower } from 'aws-cdk-lib/interfaces';
const enabledControlReference: interfaces_controltower.EnabledControlReference = {
controlIdentifier: 'controlIdentifier',
targetIdentifier: 'targetIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| control | string | The ControlIdentifier of the EnabledControl resource. |
| target | string | The TargetIdentifier of the EnabledControl resource. |
controlIdentifier
Type:
string
The ControlIdentifier of the EnabledControl resource.
targetIdentifier
Type:
string
The TargetIdentifier of the EnabledControl resource.

.NET
Go
Java
Python
TypeScript