aws-cdk-lib.aws_servicecatalogappregistry.CfnAttributeGroupProps

interface CfnAttributeGroupProps

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalogappregistry.CfnAttributeGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#CfnAttributeGroupProps
Javasoftware.amazon.awscdk.services.servicecatalogappregistry.CfnAttributeGroupProps
Pythonaws_cdk.aws_servicecatalogappregistry.CfnAttributeGroupProps
TypeScript aws-cdk-lib » 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 { aws_servicecatalogappregistry as servicecatalogappregistry } from 'aws-cdk-lib';

declare const attributes: any;
const cfnAttributeGroupProps: servicecatalogappregistry.CfnAttributeGroupProps = {
  attributes: attributes,
  name: 'name',

  // the properties below are optional
  description: 'description',
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
attributesanyA nested object in a JSON or YAML template that supports arbitrary definitions.
namestringThe name of the attribute group.
description?stringThe 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.