ServiceActionAssociationReference
- class aws_cdk.aws_servicecatalog.ServiceActionAssociationReference(*, product_id, provisioning_artifact_id, service_action_id)
Bases:
object
A reference to a ServiceActionAssociation resource.
- Parameters:
product_id (
str
) – The ProductId of the ServiceActionAssociation resource.provisioning_artifact_id (
str
) – The ProvisioningArtifactId of the ServiceActionAssociation resource.service_action_id (
str
) – The ServiceActionId of the ServiceActionAssociation 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_servicecatalog as servicecatalog service_action_association_reference = servicecatalog.ServiceActionAssociationReference( product_id="productId", provisioning_artifact_id="provisioningArtifactId", service_action_id="serviceActionId" )
Attributes
- product_id
The ProductId of the ServiceActionAssociation resource.
- provisioning_artifact_id
The ProvisioningArtifactId of the ServiceActionAssociation resource.
- service_action_id
The ServiceActionId of the ServiceActionAssociation resource.