interface CfnAttributeGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalogAppRegistry.Mixins.CfnAttributeGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalogappregistry/mixins#CfnAttributeGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalogappregistry.mixins.CfnAttributeGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnAttributeGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalogappregistry » mixins » CfnAttributeGroupMixinProps |
Properties for CfnAttributeGroupPropsMixin.
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';
declare const attributes: any;
const cfnAttributeGroupMixinProps: servicecatalogappregistry_mixins.CfnAttributeGroupMixinProps = {
attributes: attributes,
description: 'description',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | any | A nested object in a JSON or YAML template that supports arbitrary definitions. |
| description? | string | The description of the attribute group that the user provides. |
| name? | string | The name of the attribute group. |
| tags? | { [string]: string } | Key-value pairs you can use to associate with the attribute group. |
attributes?
Type:
any
(optional)
A nested object in a JSON or YAML template that supports arbitrary definitions.
Represents the attributes in an attribute group that describes an application and its components.
description?
Type:
string
(optional)
The description of the attribute group that the user provides.
name?
Type:
string
(optional)
The name of the attribute group.
tags?
Type:
{ [string]: string }
(optional)
Key-value pairs you can use to associate with the attribute group.

.NET
Go
Java
Python
TypeScript