interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppConfig.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappconfig/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appconfig.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_appconfig.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appconfig » 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 appconfig_mixins } from '@aws-cdk/mixins-preview/aws-appconfig';
const cfnApplicationMixinProps: appconfig_mixins.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