interface CfnApplicationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RefactorSpaces.CfnApplicationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrefactorspaces#CfnApplicationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.refactorspaces.CfnApplicationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_refactorspaces.CfnApplicationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_refactorspaces » 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 { aws_refactorspaces as refactorspaces } from '@aws-cdk/cfn-property-mixins';
const cfnApplicationMixinProps: refactorspaces.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 | IEnvironment | 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 | IVPCRef | 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 | IEnvironment
(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 | IVPCRef
(optional)
The ID of the virtual private cloud (VPC).

.NET
Go
Java
Python
TypeScript