public static interface CfnApplication.ApiGatewayProxyInputProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.refactorspaces.*; ApiGatewayProxyInputProperty apiGatewayProxyInputProperty = ApiGatewayProxyInputProperty.builder() .endpointType("endpointType") .stageName("stageName") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.ApiGatewayProxyInputProperty.Builder
A builder for
CfnApplication.ApiGatewayProxyInputProperty |
static class |
CfnApplication.ApiGatewayProxyInputProperty.Jsii$Proxy
An implementation for
CfnApplication.ApiGatewayProxyInputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.ApiGatewayProxyInputProperty.Builder |
builder() |
default java.lang.String |
getEndpointType()
The type of endpoint to use for the API Gateway proxy.
|
default java.lang.String |
getStageName()
The name of the API Gateway stage.
|
default java.lang.String getEndpointType()
If no value is specified in the request, the value is set to REGIONAL
by default.
If the value is set to PRIVATE
in the request, this creates a private API endpoint that is isolated from the public internet. The private endpoint can only be accessed by using Amazon Virtual Private Cloud ( Amazon VPC ) endpoints for Amazon API Gateway that have been granted access.
default java.lang.String getStageName()
The name defaults to prod
.
static CfnApplication.ApiGatewayProxyInputProperty.Builder builder()