interface CfnAttributeGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ServiceCatalogAppRegistry.CfnAttributeGroupProps |
Java | software.amazon.awscdk.services.servicecatalogappregistry.CfnAttributeGroupProps |
Python | aws_cdk.aws_servicecatalogappregistry.CfnAttributeGroupProps |
TypeScript | @aws-cdk/aws-servicecatalogappregistry » CfnAttributeGroupProps |
Properties for defining a CfnAttributeGroup
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicecatalogappregistry from '@aws-cdk/aws-servicecatalogappregistry';
declare const attributes: any;
const cfnAttributeGroupProps: servicecatalogappregistry.CfnAttributeGroupProps = {
attributes: attributes,
name: 'name',
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
attributes | any | A nested object in a JSON or YAML template that supports arbitrary definitions. |
name | string | The name of the attribute group. |
description? | string | The description of the attribute group that the user provides. |
tags? | { [string]: string } | Key-value pairs you can use to associate with the attribute group. |
attributes
Type:
any
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.
name
Type:
string
The name of the attribute group.
description?
Type:
string
(optional)
The description of the attribute group that the user provides.
tags?
Type:
{ [string]: string }
(optional)
Key-value pairs you can use to associate with the attribute group.