interface CfnAttributeGroupAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalogAppRegistry.Mixins.CfnAttributeGroupAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalogappregistry/mixins#CfnAttributeGroupAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalogappregistry.mixins.CfnAttributeGroupAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnAttributeGroupAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalogappregistry » mixins » CfnAttributeGroupAssociationMixinProps |
Properties for CfnAttributeGroupAssociationPropsMixin.
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 cfnAttributeGroupAssociationMixinProps: servicecatalogappregistry_mixins.CfnAttributeGroupAssociationMixinProps = {
application: 'application',
attributeGroup: 'attributeGroup',
};
Properties
| Name | Type | Description |
|---|---|---|
| application? | string | The name or ID of the application. |
| attribute | string | The name or ID of the attribute group which holds the attributes that describe the application. |
application?
Type:
string
(optional)
The name or ID of the application.
attributeGroup?
Type:
string
(optional)
The name or ID of the attribute group which holds the attributes that describe the application.

.NET
Go
Java
Python
TypeScript