CfnAttributeGroupProps

class aws_cdk.aws_servicecatalogappregistry.CfnAttributeGroupProps(*, attributes, name, description=None, tags=None)

Bases: object

Properties for defining a CfnAttributeGroup.

Parameters:
  • attributes (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 (str) – The name of the attribute group.

  • description (Optional[str]) – The description of the attribute group that the user provides.

  • tags (Optional[Mapping[str, str]]) – Key-value pairs you can use to associate with the attribute group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_servicecatalogappregistry as servicecatalogappregistry

# attributes: Any

cfn_attribute_group_props = servicecatalogappregistry.CfnAttributeGroupProps(
    attributes=attributes,
    name="name",

    # the properties below are optional
    description="description",
    tags={
        "tags_key": "tags"
    }
)

Attributes

attributes

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-attributes

description

The description of the attribute group that the user provides.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-description

name

The name of the attribute group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-name

tags

Key-value pairs you can use to associate with the attribute group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalogappregistry-attributegroup.html#cfn-servicecatalogappregistry-attributegroup-tags