interface CfnEnabledControlProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ControlTower.CfnEnabledControlProps |
Java | software.amazon.awscdk.services.controltower.CfnEnabledControlProps |
Python | aws_cdk.aws_controltower.CfnEnabledControlProps |
TypeScript | @aws-cdk/aws-controltower » CfnEnabledControlProps |
Properties for defining a CfnEnabledControl.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as controltower from '@aws-cdk/aws-controltower';
const cfnEnabledControlProps: controltower.CfnEnabledControlProps = {
controlIdentifier: 'controlIdentifier',
targetIdentifier: 'targetIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| control | string | The ARN of the control. |
| target | string | The ARN of the organizational unit. |
controlIdentifier
Type:
string
The ARN of the control.
Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny guardrail.
targetIdentifier
Type:
string
The ARN of the organizational unit.

.NET
Java
Python
TypeScript