interface AttributeGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Servicecatalogappregistry.AttributeGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicecatalogappregistry#AttributeGroupReference |
Java | software.amazon.awscdk.interfaces.servicecatalogappregistry.AttributeGroupReference |
Python | aws_cdk.interfaces.aws_servicecatalogappregistry.AttributeGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicecatalogappregistry » AttributeGroupReference |
A reference to a AttributeGroup 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_aws_servicecatalogappregistry } from 'aws-cdk-lib/interfaces';
const attributeGroupReference: interfaces_aws_servicecatalogappregistry.AttributeGroupReference = {
attributeGroupArn: 'attributeGroupArn',
attributeGroupId: 'attributeGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| attribute | string | The ARN of the AttributeGroup resource. |
| attribute | string | The Id of the AttributeGroup resource. |
attributeGroupArn
Type:
string
The ARN of the AttributeGroup resource.
attributeGroupId
Type:
string
The Id of the AttributeGroup resource.

.NET
Go
Java
Python
TypeScript