ControlReference

class aws_cdk.interfaces.aws_controlcatalog.ControlReference(*, control_arn, control_id)

Bases: object

A reference to a Control resource.

Parameters:
  • control_arn (str) – The ARN of the Control resource.

  • control_id (str) – The ControlId of the Control 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

control_reference = interfaces_controlcatalog.ControlReference(
    control_arn="controlArn",
    control_id="controlId"
)

Attributes

control_arn

The ARN of the Control resource.

control_id

The ControlId of the Control resource.