interface CfnEnabledControlMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ControlTower.Mixins.CfnEnabledControlMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscontroltower/mixins#CfnEnabledControlMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.controltower.mixins.CfnEnabledControlMixinProps |
Python | aws_cdk.mixins_preview.aws_controltower.mixins.CfnEnabledControlMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_controltower » mixins » CfnEnabledControlMixinProps |
Properties for CfnEnabledControlPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as controltower_mixins } from '@aws-cdk/mixins-preview/aws-controltower';
declare const value: any;
const cfnEnabledControlMixinProps: controltower_mixins.CfnEnabledControlMixinProps = {
controlIdentifier: 'controlIdentifier',
parameters: [{
key: 'key',
value: value,
}],
tags: [{
key: 'key',
value: 'value',
}],
targetIdentifier: 'targetIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| control | string | The ARN of the control. |
| parameters? | IResolvable | (IResolvable | Enabled)[] | Array of EnabledControlParameter objects. |
| tags? | Cfn[] | A set of tags to assign to the enabled control. |
| target | string | The ARN of the organizational unit. |
controlIdentifier?
Type:
string
(optional)
The ARN of the control.
Only Strongly recommended and Elective controls are permitted, with the exception of the Region deny control. For information on how to find the controlIdentifier , see the overview page .
parameters?
Type:
IResolvable | (IResolvable | Enabled)[]
(optional)
Array of EnabledControlParameter objects.
tags?
Type:
Cfn[]
(optional)
A set of tags to assign to the enabled control.
targetIdentifier?
Type:
string
(optional)
The ARN of the organizational unit.
For information on how to find the targetIdentifier , see the overview page .

.NET
Go
Java
Python
TypeScript