@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.114Z") @Stability(value=Stable) public interface CfnAttributeGroupProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.servicecatalogappregistry.*;
Object attributes;
CfnAttributeGroupProps cfnAttributeGroupProps = CfnAttributeGroupProps.builder()
.attributes(attributes)
.name("name")
// the properties below are optional
.description("description")
.tags(Map.of(
"tagsKey", "tags"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnAttributeGroupProps.Builder
A builder for
CfnAttributeGroupProps |
static class |
CfnAttributeGroupProps.Jsii$Proxy
An implementation for
CfnAttributeGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnAttributeGroupProps.Builder |
builder() |
Object |
getAttributes()
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.
|
default String |
getDescription()
The description of the attribute group that the user provides.
|
String |
getName()
The name of the attribute group.
|
default Map<String,String> |
getTags()
Key-value pairs you can use to associate with the attribute group.
|
@Stability(value=Stable) @NotNull Object getAttributes()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
@Stability(value=Stable) static CfnAttributeGroupProps.Builder builder()
CfnAttributeGroupProps.Builder of CfnAttributeGroupPropsCopyright © 2022. All rights reserved.