CfnAttributeGroupProps¶
-
class
aws_cdk.aws_servicecatalogappregistry.
CfnAttributeGroupProps
(*, attributes, name, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnAttributeGroup
.- Parameters
attributes (
Any
) – A JSON string in the form of nested key-value pairs that represent the attributes in the group and 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.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.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 JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.
-
description
¶ The description of the attribute group that the user provides.
-
name
¶ The name of the attribute group.
Key-value pairs you can use to associate with the attribute group.
- Link
- Return type
Optional
[Mapping
[str
,str
]]