Interface AttributeGroupAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AttributeGroupAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-10T13:40:18.502Z")
@Stability(Experimental)
public interface AttributeGroupAssociationProps
extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for a Service Catalog AppRegistry Attribute Group.
Example:
import software.amazon.awscdk.*;
App app = new App();
ApplicationAssociator associatedApp = ApplicationAssociator.Builder.create(app, "AssociatedApplication")
.applications(List.of(TargetApplication.createApplicationStack(CreateTargetApplicationOptions.builder()
.applicationName("MyAssociatedApplication")
// 'Application containing stacks deployed via CDK.' is the default
.applicationDescription("Associated Application description")
.stackName("MyAssociatedApplicationStack")
// AWS Account and Region that are implied by the current CLI configuration is the default
.env(Environment.builder().account("123456789012").region("us-east-1").build())
.build())))
.build();
// Associate application to the attribute group.
associatedApp.appRegistryApplication.addAttributeGroup("MyAttributeGroup", AttributeGroupAssociationProps.builder()
.attributeGroupName("MyAttributeGroupName")
.description("Test attribute group")
.attributes(Map.of())
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAttributeGroupAssociationPropsstatic final classAn implementation forAttributeGroupAssociationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAttributeGroupName
(experimental) Name for attribute group. -
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
-