interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalogAppRegistry.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalogappregistry/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalogappregistry.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalogappregistry.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalogappregistry » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as servicecatalogappregistry_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalogappregistry';
const cfnApplicationMixinProps: servicecatalogappregistry_mixins.CfnApplicationMixinProps = {
description: 'description',
name: 'name',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the application. |
| name? | string | The name of the application. |
| tags? | { [string]: string } | Key-value pairs you can use to associate with the application. |
description?
Type:
string
(optional)
The description of the application.
name?
Type:
string
(optional)
The name of the application.
The name must be unique in the region in which you are creating the application.
tags?
Type:
{ [string]: string }
(optional)
Key-value pairs you can use to associate with the application.

.NET
Go
Java
Python
TypeScript