@Stability(value=Stable)
public static interface CfnRestApi.EndpointConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
EndpointConfiguration is a property of the AWS::ApiGateway::RestApi resource.
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.apigateway.*;
EndpointConfigurationProperty endpointConfigurationProperty = EndpointConfigurationProperty.builder()
.types(List.of("types"))
.vpcEndpointIds(List.of("vpcEndpointIds"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnRestApi.EndpointConfigurationProperty.Builder
A builder for
CfnRestApi.EndpointConfigurationProperty |
static class |
CfnRestApi.EndpointConfigurationProperty.Jsii$Proxy
An implementation for
CfnRestApi.EndpointConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnRestApi.EndpointConfigurationProperty.Builder |
builder() |
default List<String> |
getTypes()
A list of endpoint types of an API or its custom domain name.
|
default List<String> |
getVpcEndpointIds()
A list of VPC endpoint IDs of an API ( [AWS::ApiGateway::RestApi](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html) ) against which to create Route53 ALIASes.
|
@Stability(value=Stable) @Nullable default List<String> getTypes()
EDGE : For an edge-optimized API and its custom domain name.REGIONAL : For a regional API and its custom domain name.PRIVATE : For a private API.@Stability(value=Stable) @Nullable default List<String> getVpcEndpointIds()
@Stability(value=Stable) static CfnRestApi.EndpointConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.