CfnEnabledControlMixinProps

class aws_cdk.mixins_preview.aws_controltower.mixins.CfnEnabledControlMixinProps(*, control_identifier=None, parameters=None, tags=None, target_identifier=None)

Bases: object

Properties 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 the controlIdentifier , see the overview page .

  • parameters (Union[IResolvable, Sequence[Union[IResolvable, EnabledControlParameterProperty, Dict[str, Any]]], None]) – Array of EnabledControlParameter objects.

  • 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html

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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-controlidentifier

parameters

Array of EnabledControlParameter objects.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-parameters

tags

A set of tags to assign to the enabled control.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-tags

target_identifier

The ARN of the organizational unit.

For information on how to find the targetIdentifier , see the overview page .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-targetidentifier