@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:14.918Z") @Stability(value=Experimental) public interface AttributeGroupProps extends software.amazon.jsii.JsiiSerializable
Example:
// Example automatically generated from non-compiling source. May contain errors.
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AttributeGroupProps.Builder
A builder for
AttributeGroupProps |
static class |
AttributeGroupProps.Jsii$Proxy
An implementation for
AttributeGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static AttributeGroupProps.Builder |
builder() |
String |
getAttributeGroupName()
(experimental) Enforces a particular physical attribute group name.
|
Map<String,Object> |
getAttributes()
(experimental) A JSON of nested key-value pairs that represent the attributes in the group.
|
default String |
getDescription()
(experimental) Description for attribute group.
|
@Stability(value=Experimental) @NotNull String getAttributeGroupName()
@Stability(value=Experimental) @NotNull Map<String,Object> getAttributes()
Attributes maybe an empty JSON '{}', but must be explicitly stated.
@Stability(value=Experimental) @Nullable default String getDescription()
Default: - No description provided
@Stability(value=Experimental) static AttributeGroupProps.Builder builder()
AttributeGroupProps.Builder of AttributeGroupPropsCopyright © 2022. All rights reserved.