interface CfnApplicationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppConfig.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnApplicationProps |
Java | software.amazon.awscdk.services.appconfig.CfnApplicationProps |
Python | aws_cdk.aws_appconfig.CfnApplicationProps |
TypeScript | aws-cdk-lib » 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 { aws_appconfig as appconfig } from 'aws-cdk-lib';
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? | Cfn [] | 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:
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.