AttributeGroupAssociationReference

class aws_cdk.aws_servicecatalogappregistry.AttributeGroupAssociationReference(*, application_arn, attribute_group_arn)

Bases: object

A reference to a AttributeGroupAssociation resource.

Parameters:
  • application_arn (str) – The ApplicationArn of the AttributeGroupAssociation resource.

  • attribute_group_arn (str) – The AttributeGroupArn of the AttributeGroupAssociation 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_servicecatalogappregistry as servicecatalogappregistry

attribute_group_association_reference = servicecatalogappregistry.AttributeGroupAssociationReference(
    application_arn="applicationArn",
    attribute_group_arn="attributeGroupArn"
)

Attributes

application_arn

The ApplicationArn of the AttributeGroupAssociation resource.

attribute_group_arn

The AttributeGroupArn of the AttributeGroupAssociation resource.