CommonControlReference

class aws_cdk.interfaces.aws_controlcatalog.CommonControlReference(*, common_control_arn, common_control_id)

Bases: object

A reference to a CommonControl resource.

Parameters:
  • common_control_arn (str) – The ARN of the CommonControl resource.

  • common_control_id (str) – The CommonControlId of the CommonControl 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_controlcatalog as interfaces_controlcatalog

common_control_reference = interfaces_controlcatalog.CommonControlReference(
    common_control_arn="commonControlArn",
    common_control_id="commonControlId"
)

Attributes

common_control_arn

The ARN of the CommonControl resource.

common_control_id

The CommonControlId of the CommonControl resource.