Interface CfnAttributeGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAttributeGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.480Z")
@Stability(Stable)
public interface CfnAttributeGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAttributeGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.servicecatalogappregistry.*;
Object attributes;
CfnAttributeGroupMixinProps cfnAttributeGroupMixinProps = CfnAttributeGroupMixinProps.builder()
.attributes(attributes)
.description("description")
.name("name")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAttributeGroupMixinPropsstatic final classAn implementation forCfnAttributeGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectA nested object in a JSON or YAML template that supports arbitrary definitions.default StringThe description of the attribute group that the user provides.default StringgetName()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.
- See Also:
-
getDescription
The description of the attribute group that the user provides.- See Also:
-
getName
The name of the attribute group.- See Also:
-
getTags
Key-value pairs you can use to associate with the attribute group.- See Also:
-
builder
-