interface ApplicationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.ApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#ApplicationProps |
Java | software.amazon.awscdk.services.appconfig.ApplicationProps |
Python | aws_cdk.aws_appconfig.ApplicationProps |
TypeScript (source) | aws-cdk-lib » aws_appconfig » ApplicationProps |
Properties for the Application construct.
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 applicationProps: appconfig.ApplicationProps = {
applicationName: 'applicationName',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The name of the application. |
| description? | string | The description for the application. |
applicationName?
Type:
string
(optional, default: A name is generated.)
The name of the application.
description?
Type:
string
(optional, default: No description.)
The description for the application.

.NET
Go
Java
Python
TypeScript (