interface CfnResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalogAppRegistry.CfnResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalogappregistry#CfnResourceAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalogappregistry.CfnResourceAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalogappregistry.CfnResourceAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalogappregistry » CfnResourceAssociationMixinProps |
Properties for CfnResourceAssociationPropsMixin.
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/cfn-property-mixins';
const cfnResourceAssociationMixinProps: servicecatalogappregistry.CfnResourceAssociationMixinProps = {
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
(optional)
The name or ID of the application.
resource?
Type:
string
(optional)
The name or ID of the resource of which the application will be associated.
resourceType?
Type:
string
(optional)
The type of resource of which the application will be associated.

.NET
Go
Java
Python
TypeScript