interface EndpointConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.APIGateway.CfnRestApi.EndpointConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigateway#CfnRestApi_EndpointConfigurationProperty | 
  Java | software.amazon.awscdk.services.apigateway.CfnRestApi.EndpointConfigurationProperty | 
  Python | aws_cdk.aws_apigateway.CfnRestApi.EndpointConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_apigateway » CfnRestApi » EndpointConfigurationProperty | 
The EndpointConfiguration property type specifies the endpoint types and IP address types of a REST API.
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 { aws_apigateway as apigateway } from 'aws-cdk-lib';
const endpointConfigurationProperty: apigateway.CfnRestApi.EndpointConfigurationProperty = {
  ipAddressType: 'ipAddressType',
  types: ['types'],
  vpcEndpointIds: ['vpcEndpointIds'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| ip | string | The IP address types that can invoke an API (RestApi). | 
| types? | string[] | A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). | 
| vpc | string[] | A list of VpcEndpointIds of an API (RestApi) against which to create Route53 ALIASes. | 
ipAddressType?
Type:
string
(optional)
The IP address types that can invoke an API (RestApi).
Use ipv4 to allow only IPv4 addresses to invoke an API, or use dualstack to allow both IPv4 and IPv6 addresses to invoke an API. For the PRIVATE endpoint type, only dualstack is supported.
types?
Type:
string[]
(optional)
A list of endpoint types of an API (RestApi) or its custom domain name (DomainName).
For an edge-optimized API and its custom domain name, the endpoint type is "EDGE" . For a regional API and its custom domain name, the endpoint type is REGIONAL . For a private API, the endpoint type is PRIVATE .
vpcEndpointIds?
Type:
string[]
(optional)
A list of VpcEndpointIds of an API (RestApi) against which to create Route53 ALIASes.
It is only supported for PRIVATE endpoint type.

 .NET
 Go
 Java
 Python
 TypeScript