CfnResourceAssociationProps
- class aws_cdk.aws_servicecatalogappregistry.CfnResourceAssociationProps(*, application, resource, resource_type)
Bases:
object
Properties for defining a
CfnResourceAssociation
.- Parameters:
application (
str
) – The name or ID of the application.resource (
str
) – The name or ID of the resource of which the application will be associated.resource_type (
str
) – The type of resource of which the application will be associated.
- See:
- 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 cfn_resource_association_props = servicecatalogappregistry.CfnResourceAssociationProps( application="application", resource="resource", resource_type="resourceType" )
Attributes
- application
The name or ID of the application.
- resource
The name or ID of the resource of which the application will be associated.
- resource_type
The type of resource of which the application will be associated.