ResourceAssociationReference

class aws_cdk.aws_servicecatalogappregistry.ResourceAssociationReference(*, application_arn, resource_arn, resource_type)

Bases: object

A reference to a ResourceAssociation resource.

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

  • resource_arn (str) – The ResourceArn of the ResourceAssociation resource.

  • resource_type (str) – The ResourceType of the ResourceAssociation 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

resource_association_reference = servicecatalogappregistry.ResourceAssociationReference(
    application_arn="applicationArn",
    resource_arn="resourceArn",
    resource_type="resourceType"
)

Attributes

application_arn

The ApplicationArn of the ResourceAssociation resource.

resource_arn

The ResourceArn of the ResourceAssociation resource.

resource_type

The ResourceType of the ResourceAssociation resource.