aws-cdk-lib.aws_appconfig.CfnApplicationProps

interface CfnApplicationProps

LanguageType name
.NETAmazon.CDK.AWS.AppConfig.CfnApplicationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#CfnApplicationProps
Javasoftware.amazon.awscdk.services.appconfig.CfnApplicationProps
Pythonaws_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

NameTypeDescription
namestringA name for the application.
description?stringA description of the application.
tags?TagsProperty[]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: TagsProperty[] (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.