interface TagOptionAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalog.TagOptionAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalog#TagOptionAssociationReference |
Java | software.amazon.awscdk.interfaces.servicecatalog.TagOptionAssociationReference |
Python | aws_cdk.interfaces.aws_servicecatalog.TagOptionAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalog » TagOptionAssociationReference |
A reference to a TagOptionAssociation 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 interfaces_aws_servicecatalog } from 'aws-cdk-lib/interfaces';
const tagOptionAssociationReference: interfaces_aws_servicecatalog.TagOptionAssociationReference = {
resourceId: 'resourceId',
tagOptionId: 'tagOptionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The ResourceId of the TagOptionAssociation resource. |
| tag | string | The TagOptionId of the TagOptionAssociation resource. |
resourceId
Type:
string
The ResourceId of the TagOptionAssociation resource.
tagOptionId
Type:
string
The TagOptionId of the TagOptionAssociation resource.

.NET
Go
Java
Python
TypeScript