aws-cdk-lib.aws_servicecatalogappregistry.CfnApplicationProps

interface CfnApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.Servicecatalogappregistry.CfnApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#CfnApplicationProps
Javasoftware.amazon.awscdk.services.servicecatalogappregistry.CfnApplicationProps
Pythonaws_cdk.aws_servicecatalogappregistry.CfnApplicationProps
TypeScript aws-cdk-lib » aws_servicecatalogappregistry » CfnApplicationProps

Properties for defining a CfnApplication.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalogappregistry as servicecatalogappregistry } from 'aws-cdk-lib';
const cfnApplicationProps: servicecatalogappregistry.CfnApplicationProps = {
  name: 'name',

  // the properties below are optional
  description: 'description',
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
namestringThe name of the application.
description?stringThe description of the application.
tags?{ [string]: string }Key-value pairs you can use to associate with the application.

name

Type: string

The name of the application.

The name must be unique in the region in which you are creating the application.


description?

Type: string (optional)

The description of the application.


tags?

Type: { [string]: string } (optional)

Key-value pairs you can use to associate with the application.