interface CfnAttributeGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalogAppRegistry.CfnAttributeGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalogappregistry#CfnAttributeGroupMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalogappregistry.CfnAttributeGroupMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalogappregistry.CfnAttributeGroupMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalogappregistry » 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 { aws_servicecatalogappregistry as servicecatalogappregistry } from '@aws-cdk/cfn-property-mixins';
declare const attributes: any;
const cfnAttributeGroupMixinProps: servicecatalogappregistry.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