interface CfnResourceAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalogAppRegistry.Mixins.CfnResourceAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalogappregistry/mixins#CfnResourceAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalogappregistry.mixins.CfnResourceAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnResourceAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalogappregistry » mixins » 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 { mixins as servicecatalogappregistry_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalogappregistry';
const cfnResourceAssociationMixinProps: servicecatalogappregistry_mixins.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