EnabledControlReference

class aws_cdk.aws_controltower.EnabledControlReference(*, control_identifier, target_identifier)

Bases: object

A 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 import aws_controltower as controltower

enabled_control_reference = 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.