interface CfnApplicationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Servicecatalogappregistry.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalogappregistry#CfnApplicationProps |
Java | software.amazon.awscdk.services.servicecatalogappregistry.CfnApplicationProps |
Python | aws_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
Name | Type | Description |
---|---|---|
name | string | The name of the application. |
description? | string | The 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.