interface ResourceAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalogappregistry.ResourceAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#ResourceAssociationReference |
Java | software.amazon.awscdk.services.servicecatalogappregistry.ResourceAssociationReference |
Python | aws_cdk.aws_servicecatalogappregistry.ResourceAssociationReference |
TypeScript | aws-cdk-lib » aws_servicecatalogappregistry » ResourceAssociationReference |
A reference to a ResourceAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalogappregistry as servicecatalogappregistry } from 'aws-cdk-lib';
const resourceAssociationReference: servicecatalogappregistry.ResourceAssociationReference = {
applicationArn: 'applicationArn',
resourceArn: 'resourceArn',
resourceType: 'resourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationArn of the ResourceAssociation resource. |
| resource | string | The ResourceArn of the ResourceAssociation resource. |
| resource | string | The ResourceType of the ResourceAssociation resource. |
applicationArn
Type:
string
The ApplicationArn of the ResourceAssociation resource.
resourceArn
Type:
string
The ResourceArn of the ResourceAssociation resource.
resourceType
Type:
string
The ResourceType of the ResourceAssociation resource.

.NET
Go
Java
Python
TypeScript