interface CfnAttributeGroupAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalogappregistry.CfnAttributeGroupAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#CfnAttributeGroupAssociationProps |
Java | software.amazon.awscdk.services.servicecatalogappregistry.CfnAttributeGroupAssociationProps |
Python | aws_cdk.aws_servicecatalogappregistry.CfnAttributeGroupAssociationProps |
TypeScript | aws-cdk-lib » 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 { aws_servicecatalogappregistry as servicecatalogappregistry } from 'aws-cdk-lib';
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 which holds the attributes that describe the application. |
application
Type:
string
The name or ID of the application.
attributeGroup
Type:
string
The name or ID of the attribute group which holds the attributes that describe the application.

.NET
Go
Java
Python
TypeScript