interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RefactorSpaces.Mixins.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrefactorspaces/mixins#CfnApplicationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.refactorspaces.mixins.CfnApplicationMixinProps |
Python | aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnApplicationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_refactorspaces » mixins » CfnApplicationMixinProps |
Properties for CfnApplicationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as refactorspaces_mixins } from '@aws-cdk/mixins-preview/aws-refactorspaces';
const cfnApplicationMixinProps: refactorspaces_mixins.CfnApplicationMixinProps = {
apiGatewayProxy: {
endpointType: 'endpointType',
stageName: 'stageName',
},
environmentIdentifier: 'environmentIdentifier',
name: 'name',
proxyType: 'proxyType',
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | IResolvable | Api | The endpoint URL of the Amazon API Gateway proxy. |
| 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. |
| tags? | Cfn[] | The tags assigned to the application. |
| vpc | string | The ID of the virtual private cloud (VPC). |
apiGatewayProxy?
Type:
IResolvable | Api
(optional)
The endpoint URL of the Amazon API Gateway proxy.
environmentIdentifier?
Type:
string
(optional)
The unique identifier of the environment.
name?
Type:
string
(optional)
The name of the application.
proxyType?
Type:
string
(optional)
The proxy type of the proxy created within the application.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the application.
vpcId?
Type:
string
(optional)
The ID of the virtual private cloud (VPC).

.NET
Go
Java
Python
TypeScript