@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:23.296Z") @Stability(value=Experimental) public interface EndpointConfiguration extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EndpointConfiguration.Builder
A builder for
EndpointConfiguration |
static class |
EndpointConfiguration.Jsii$Proxy
An implementation for
EndpointConfiguration |
| Modifier and Type | Method and Description |
|---|---|
static EndpointConfiguration.Builder |
builder() |
List<EndpointType> |
getTypes()
(experimental) A list of endpoint types of an API or its custom domain name.
|
default List<IVpcEndpoint> |
getVpcEndpoints()
(experimental) A list of VPC Endpoints against which to create Route53 ALIASes.
|
@Stability(value=Experimental) @NotNull List<EndpointType> getTypes()
Default: EndpointType.EDGE
@Stability(value=Experimental) @Nullable default List<IVpcEndpoint> getVpcEndpoints()
Default: - no ALIASes are created for the endpoint.
@Stability(value=Experimental) static EndpointConfiguration.Builder builder()
EndpointConfiguration.Builder of EndpointConfigurationCopyright © 2022. All rights reserved.