interface CfnResourceAssociationProps
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Servicecatalogappregistry.CfnResourceAssociationProps | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#CfnResourceAssociationProps | 
  Java | software.amazon.awscdk.services.servicecatalogappregistry.CfnResourceAssociationProps | 
  Python | aws_cdk.aws_servicecatalogappregistry.CfnResourceAssociationProps | 
  TypeScript  | aws-cdk-lib » aws_servicecatalogappregistry » CfnResourceAssociationProps | 
Properties for defining a CfnResourceAssociation.
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 cfnResourceAssociationProps: servicecatalogappregistry.CfnResourceAssociationProps = {
  application: 'application',
  resource: 'resource',
  resourceType: 'resourceType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| application | string | The name or ID of the application. | 
| resource | string | The name or ID of the resource of which the application will be associated. | 
| resource | string | The type of resource of which the application will be associated. | 
application
Type:
string
The name or ID of the application.
resource
Type:
string
The name or ID of the resource of which the application will be associated.
resourceType
Type:
string
The type of resource of which the application will be associated.

 .NET
 Go
 Java
 Python
 TypeScript