interface ServiceActionAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalog.ServiceActionAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#ServiceActionAssociationReference |
Java | software.amazon.awscdk.services.servicecatalog.ServiceActionAssociationReference |
Python | aws_cdk.aws_servicecatalog.ServiceActionAssociationReference |
TypeScript | aws-cdk-lib » aws_servicecatalog » ServiceActionAssociationReference |
A reference to a ServiceActionAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalog as servicecatalog } from 'aws-cdk-lib';
const serviceActionAssociationReference: servicecatalog.ServiceActionAssociationReference = {
productId: 'productId',
provisioningArtifactId: 'provisioningArtifactId',
serviceActionId: 'serviceActionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| product | string | The ProductId of the ServiceActionAssociation resource. |
| provisioning | string | The ProvisioningArtifactId of the ServiceActionAssociation resource. |
| service | string | The ServiceActionId of the ServiceActionAssociation resource. |
productId
Type:
string
The ProductId of the ServiceActionAssociation resource.
provisioningArtifactId
Type:
string
The ProvisioningArtifactId of the ServiceActionAssociation resource.
serviceActionId
Type:
string
The ServiceActionId of the ServiceActionAssociation resource.

.NET
Go
Java
Python
TypeScript