CfnEnabledControlProps
- class aws_cdk.aws_controltower.CfnEnabledControlProps(*, control_identifier, target_identifier, parameters=None, tags=None)
Bases:
objectProperties for defining a
CfnEnabledControl.- Parameters:
control_identifier (
str) – 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 thecontrolIdentifier, see the overview page .target_identifier (
str) –The ARN of the organizational unit. For information on how to find the
targetIdentifier, see the overview page .parameters (
Union[IResolvable,Sequence[Union[IResolvable,EnabledControlParameterProperty,Dict[str,Any]]],None]) – Array ofEnabledControlParameterobjects.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A set of tags to assign to the enabled control.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_controltower as controltower # value: Any cfn_enabled_control_props = controltower.CfnEnabledControlProps( control_identifier="controlIdentifier", target_identifier="targetIdentifier", # the properties below are optional parameters=[controltower.CfnEnabledControl.EnabledControlParameterProperty( key="key", value=value )], tags=[CfnTag( key="key", value="value" )] )
Attributes
- control_identifier
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
Array of
EnabledControlParameterobjects.
- tags
A set of tags to assign to the enabled control.
- target_identifier
The ARN of the organizational unit.
For information on how to find the
targetIdentifier, see the overview page .