ConformancePackReference

class aws_cdk.interfaces.aws_config.ConformancePackReference(*, conformance_pack_arn, conformance_pack_name)

Bases: object

A reference to a ConformancePack resource.

Parameters:
  • conformance_pack_arn (str) – The ARN of the ConformancePack resource.

  • conformance_pack_name (str) – The ConformancePackName of the ConformancePack 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_config as interfaces_config

conformance_pack_reference = interfaces_config.ConformancePackReference(
    conformance_pack_arn="conformancePackArn",
    conformance_pack_name="conformancePackName"
)

Attributes

conformance_pack_arn

The ARN of the ConformancePack resource.

conformance_pack_name

The ConformancePackName of the ConformancePack resource.