Interface EndpointConfiguration

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:01.977Z") @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();