@aws-cdk_aws-servicecatalogappregistry-alpha.AttributeGroupProps

interface AttributeGroupProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalogappregistry.Alpha.AttributeGroupProps
Gogithub.com/aws/aws-cdk-go/awscdkservicecatalogappregistryalpha/v2#AttributeGroupProps
Javasoftware.amazon.awscdk.services.servicecatalogappregistry.alpha.AttributeGroupProps
Pythonaws_cdk.aws_servicecatalogappregistry_alpha.AttributeGroupProps
TypeScript (source)@aws-cdk/aws-servicecatalogappregistry-alpha ยป AttributeGroupProps

Properties for a Service Catalog AppRegistry Attribute Group.

Example

const attributeGroup = new appreg.AttributeGroup(this, 'MyFirstAttributeGroup', {
  attributeGroupName: 'MyFirstAttributeGroupName',
  description: 'description for my attribute group', // the description is optional,
  attributes: {
    project: 'foo',
    team: ['member1', 'member2', 'member3'],
    public: false,
    stages: {
      alpha: 'complete',
      beta: 'incomplete',
      release: 'not started'
    }
  }
});

Properties

NameTypeDescription
attributeGroupName๐Ÿ”นstringEnforces a particular physical attribute group name.
attributes๐Ÿ”น{ [string]: any }A JSON of nested key-value pairs that represent the attributes in the group.
description?๐Ÿ”นstringDescription for attribute group.

attributeGroupName๐Ÿ”น

Type: string

Enforces a particular physical attribute group name.


attributes๐Ÿ”น

Type: { [string]: any }

A JSON of nested key-value pairs that represent the attributes in the group.

Attributes maybe an empty JSON '{}', but must be explicitly stated.


description?๐Ÿ”น

Type: string (optional, default: No description provided)

Description for attribute group.