EnabledControlReference
- class aws_cdk.interfaces.aws_controltower.EnabledControlReference(*, control_identifier, target_identifier)
Bases:
objectA reference to a EnabledControl resource.
- Parameters:
control_identifier (
str) – The ControlIdentifier of the EnabledControl resource.target_identifier (
str) – The TargetIdentifier of the EnabledControl resource.
- 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.interfaces import aws_controltower as interfaces_controltower enabled_control_reference = interfaces_controltower.EnabledControlReference( control_identifier="controlIdentifier", target_identifier="targetIdentifier" )
Attributes
- control_identifier
The ControlIdentifier of the EnabledControl resource.
- target_identifier
The TargetIdentifier of the EnabledControl resource.