Interface AttributeGroupAssociationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AttributeGroupAssociationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:11.893Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAttributeGroupAssociationProps
static final class
An 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
-