Interface AttributeGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AttributeGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:19.228Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAttributeGroupProps
static final class
An implementation forAttributeGroupProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic AttributeGroupProps.Builder
builder()
(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.Builder
ofAttributeGroupProps
-