Interface AttributeGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AttributeGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-29T11:15:52.096Z")
@Stability(Experimental)
public interface AttributeGroupProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a Service Catalog AppRegistry Attribute Group.
Example:
AttributeGroup attributeGroup = AttributeGroup.Builder.create(this, "MyFirstAttributeGroup")
.attributeGroupName("MyFirstAttributeGroupName")
.description("description for my attribute group") // the description is optional,
.attributes(Map.of(
"project", "foo",
"team", List.of("member1", "member2", "member3"),
"public", false,
"stages", Map.of(
"alpha", "complete",
"beta", "incomplete",
"release", "not started")))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAttributeGroupPropsstatic final classAn implementation forAttributeGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic AttributeGroupProps.Builderbuilder()(experimental) Enforces a particular physical attribute group name.(experimental) A JSON of nested key-value pairs that represent the attributes in the group.default String(experimental) Description for attribute group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeGroupName
(experimental) Enforces a particular physical attribute group name. -
getAttributes
(experimental) A JSON of nested key-value pairs that represent the attributes in the group.Attributes maybe an empty JSON '{}', but must be explicitly stated.
-
getDescription
(experimental) Description for attribute group.Default: - No description provided
-
builder
- Returns:
- a
AttributeGroupProps.BuilderofAttributeGroupProps
-