@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.161Z") @Stability(value=Stable) 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()
A list of endpoint types of an API or its custom domain name.
|
default List<IVpcEndpoint> |
getVpcEndpoints()
A list of VPC Endpoints against which to create Route53 ALIASes.
|
@Stability(value=Stable) @NotNull List<EndpointType> getTypes()
Default: EndpointType.EDGE
@Stability(value=Stable) @Nullable default List<IVpcEndpoint> getVpcEndpoints()
Default: - no ALIASes are created for the endpoint.
@Stability(value=Stable) static EndpointConfiguration.Builder builder()
EndpointConfiguration.Builder of EndpointConfigurationCopyright © 2022. All rights reserved.