interface CfnApplicationProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppConfig.CfnApplicationProps | 
|  Java | software.amazon.awscdk.services.appconfig.CfnApplicationProps | 
|  Python | aws_cdk.aws_appconfig.CfnApplicationProps | 
|  TypeScript | @aws-cdk/aws-appconfig»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 * as appconfig from '@aws-cdk/aws-appconfig';
const cfnApplicationProps: appconfig.CfnApplicationProps = {
  name: 'name',
  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | A name for the application. | 
| description? | string | A description of the application. | 
| tags? | Tags[] | Metadata to assign to the application. | 
name
Type:
string
A name for the application.
description?
Type:
string
(optional)
A description of the application.
tags?
Type:
Tags[]
(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.
