ServiceActionAssociationReference
- class aws_cdk.interfaces.aws_servicecatalog.ServiceActionAssociationReference(*, product_id, provisioning_artifact_id, service_action_id)
Bases:
objectA 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.interfaces import aws_servicecatalog as interfaces_aws_servicecatalog service_action_association_reference = interfaces_aws_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.