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. Possible values: CFN_STACK.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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.
Possible values: CFN_STACK.