interface AttributeGroupAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalogappregistry.AttributeGroupAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalogappregistry#AttributeGroupAssociationReference |
Java | software.amazon.awscdk.interfaces.servicecatalogappregistry.AttributeGroupAssociationReference |
Python | aws_cdk.interfaces.aws_servicecatalogappregistry.AttributeGroupAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalogappregistry » AttributeGroupAssociationReference |
A reference to a AttributeGroupAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalogappregistry as interfaces_servicecatalogappregistry } from 'aws-cdk-lib/interfaces';
const attributeGroupAssociationReference: interfaces_servicecatalogappregistry.AttributeGroupAssociationReference = {
applicationArn: 'applicationArn',
attributeGroupArn: 'attributeGroupArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationArn of the AttributeGroupAssociation resource. |
| attribute | string | The AttributeGroupArn of the AttributeGroupAssociation resource. |
applicationArn
Type:
string
The ApplicationArn of the AttributeGroupAssociation resource.
attributeGroupArn
Type:
string
The AttributeGroupArn of the AttributeGroupAssociation resource.

.NET
Go
Java
Python
TypeScript