interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalogAppRegistry.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalogappregistry#CfnApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalogappregistry.CfnApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalogappregistry.CfnApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalogappregistry » 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 { aws_servicecatalogappregistry as servicecatalogappregistry } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationMixinProps: servicecatalogappregistry.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