CfnEnabledControlMixinProps
- class aws_cdk.mixins_preview.aws_controltower.mixins.CfnEnabledControlMixinProps(*, control_identifier=None, parameters=None, tags=None, target_identifier=None)
Bases:
objectProperties for CfnEnabledControlPropsMixin.
- Parameters:
control_identifier (
Optional[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 .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.target_identifier (
Optional[str]) –The ARN of the organizational unit. For information on how to find the
targetIdentifier, see the overview page .
- 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.mixins_preview.aws_controltower import mixins as controltower_mixins # value: Any cfn_enabled_control_mixin_props = controltower_mixins.CfnEnabledControlMixinProps( control_identifier="controlIdentifier", parameters=[controltower_mixins.CfnEnabledControlPropsMixin.EnabledControlParameterProperty( key="key", value=value )], tags=[CfnTag( key="key", value="value" )], target_identifier="targetIdentifier" )
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 .