Interface CfnAttributeGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAttributeGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.767Z")
@Stability(Stable)
public interface CfnAttributeGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAttributeGroup.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAttributeGroupPropsstatic final classAn implementation forCfnAttributeGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A nested object in a JSON or YAML template that supports arbitrary definitions.default StringThe description of the attribute group that the user provides.getName()The name of the attribute group.getTags()Key-value pairs you can use to associate with the attribute group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributes
A nested object in a JSON or YAML template that supports arbitrary definitions.Represents the attributes in an attribute group that describes an application and its components.
-
getName
The name of the attribute group. -
getDescription
The description of the attribute group that the user provides. -
getTags
Key-value pairs you can use to associate with the attribute group. -
builder
- Returns:
- a
CfnAttributeGroupProps.BuilderofCfnAttributeGroupProps
-