@aws-cdk_aws-servicecatalogappregistry-alpha.AttributeGroupAssociationProps

interface AttributeGroupAssociationProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalogappregistry.Alpha.AttributeGroupAssociationProps
Gogithub.com/aws/aws-cdk-go/awscdkservicecatalogappregistryalpha/v2#AttributeGroupAssociationProps
Javasoftware.amazon.awscdk.services.servicecatalogappregistry.alpha.AttributeGroupAssociationProps
Pythonaws_cdk.aws_servicecatalogappregistry_alpha.AttributeGroupAssociationProps
TypeScript (source)@aws-cdk/aws-servicecatalogappregistry-alpha ยป AttributeGroupAssociationProps

Properties for a Service Catalog AppRegistry Attribute Group.

Example

import * as cdk from "aws-cdk-lib";

const app = new App();

const associatedApp = new appreg.ApplicationAssociator(app, 'AssociatedApplication', {
  applications: [appreg.TargetApplication.createApplicationStack({
    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: { account: '123456789012', region: 'us-east-1' },
  })],
});

// Associate application to the attribute group.
associatedApp.appRegistryApplication.addAttributeGroup('MyAttributeGroup' , {
  attributeGroupName: 'MyAttributeGroupName',
  description: 'Test attribute group',
  attributes: {},
});

Properties

NameTypeDescription
attributeGroupName๐Ÿ”นstringName for attribute group.
attributes๐Ÿ”น{ [string]: any }A JSON of nested key-value pairs that represent the attributes in the group.
description?๐Ÿ”นstringDescription for attribute group.

attributeGroupName๐Ÿ”น

Type: string

Name for attribute group.


attributes๐Ÿ”น

Type: { [string]: any }

A JSON of nested key-value pairs that represent the attributes in the group.

Attributes maybe an empty JSON '{}', but must be explicitly stated.


description?๐Ÿ”น

Type: string (optional, default: No description provided)

Description for attribute group.