Interface EndpointConfiguration

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EndpointConfiguration.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.940Z") @Stability(Stable) public interface EndpointConfiguration extends software.amazon.jsii.JsiiSerializable
The endpoint configuration of a REST API, including VPCs and endpoint types.

EndpointConfiguration is a property of the AWS::ApiGateway::RestApi resource.

Example:

 RestApi api = RestApi.Builder.create(this, "api")
         .endpointConfiguration(EndpointConfiguration.builder()
                 .types(List.of(EndpointType.EDGE))
                 .build())
         .build();