interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppConfig.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappconfig#CfnApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.appconfig.CfnApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_appconfig.CfnApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appconfig » 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_appconfig as appconfig } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationMixinProps: appconfig.CfnApplicationMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the application. |
| name? | string | A name for the application. |
| tags? | Cfn[] | Metadata to assign to the application. |
description?
Type:
string
(optional)
A description of the application.
name?
Type:
string
(optional)
A name for the application.
tags?
Type:
Cfn[]
(optional)
Metadata to assign to the application.
Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

.NET
Go
Java
Python
TypeScript