@aws-cdk_aws-servicecatalogappregistry-alpha.ApplicationAssociatorProps

interface ApplicationAssociatorProps 🔹

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

Properties for Service Catalog AppRegistry Application Associator.

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
applications🔹TargetApplication[]Application associator properties.

applications🔹

Type: TargetApplication[]

Application associator properties.