interface CfnApplicationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RefactorSpaces.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrefactorspaces#CfnApplicationProps |
Java | software.amazon.awscdk.services.refactorspaces.CfnApplicationProps |
Python | aws_cdk.aws_refactorspaces.CfnApplicationProps |
TypeScript | aws-cdk-lib » aws_refactorspaces » 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_refactorspaces as refactorspaces } from 'aws-cdk-lib';
const cfnApplicationProps: refactorspaces.CfnApplicationProps = {
environmentIdentifier: 'environmentIdentifier',
name: 'name',
proxyType: 'proxyType',
vpcId: 'vpcId',
// the properties below are optional
apiGatewayProxy: {
endpointType: 'endpointType',
stageName: 'stageName',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| environment | string | The unique identifier of the environment. |
| name | string | The name of the application. |
| proxy | string | The proxy type of the proxy created within the application. |
| vpc | string | The ID of the virtual private cloud (VPC). |
| api | IResolvable | Api | The endpoint URL of the Amazon API Gateway proxy. |
| tags? | Cfn[] | The tags assigned to the application. |
environmentIdentifier
Type:
string
The unique identifier of the environment.
name
Type:
string
The name of the application.
proxyType
Type:
string
The proxy type of the proxy created within the application.
vpcId
Type:
string
The ID of the virtual private cloud (VPC).
apiGatewayProxy?
Type:
IResolvable | Api
(optional)
The endpoint URL of the Amazon API Gateway proxy.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the application.

.NET
Go
Java
Python
TypeScript