interface CfnAttributeGroupAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ServiceCatalogAppRegistry.CfnAttributeGroupAssociationProps |
Java | software.amazon.awscdk.services.servicecatalogappregistry.CfnAttributeGroupAssociationProps |
Python | aws_cdk.aws_servicecatalogappregistry.CfnAttributeGroupAssociationProps |
TypeScript | @aws-cdk/aws-servicecatalogappregistry » CfnAttributeGroupAssociationProps |
Properties for defining a CfnAttributeGroupAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicecatalogappregistry from '@aws-cdk/aws-servicecatalogappregistry';
const cfnAttributeGroupAssociationProps: servicecatalogappregistry.CfnAttributeGroupAssociationProps = {
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 that holds the attributes to describe the application. |
application
Type:
string
The name or ID of the application.
attributeGroup
Type:
string
The name or ID of the attribute group that holds the attributes to describe the application.

.NET
Java
Python
TypeScript