interface ResourceAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalogappregistry.ResourceAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalogappregistry#ResourceAssociationReference |
Java | software.amazon.awscdk.interfaces.servicecatalogappregistry.ResourceAssociationReference |
Python | aws_cdk.interfaces.aws_servicecatalogappregistry.ResourceAssociationReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_servicecatalogappregistry } from 'aws-cdk-lib/interfaces';
const resourceAssociationReference: interfaces_aws_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