Interface CfnApplication.ApiGatewayProxyInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.ApiGatewayProxyInputProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.ApiGatewayProxyInputProperty
extends software.amazon.jsii.JsiiSerializable
A wrapper object holding the Amazon API Gateway endpoint input.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.ApiGatewayProxyInputProperty
static final class
An implementation forCfnApplication.ApiGatewayProxyInputProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointType
The type of endpoint to use for the API Gateway proxy.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) interface endpoints for the Amazon API Gateway that has been granted access. For more information about creating a private connection with Refactor Spaces and interface endpoint ( AWS PrivateLink ) availability, see Access Refactor Spaces using an interface endpoint ( AWS PrivateLink ) .- See Also:
-
getStageName
The name of the API Gateway stage.The name defaults to
prod
.- See Also:
-
builder
-