interface EndpointConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.APIGateway.CfnDomainNameV2.EndpointConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsapigateway#CfnDomainNameV2_EndpointConfigurationProperty |
![]() | software.amazon.awscdk.services.apigateway.CfnDomainNameV2.EndpointConfigurationProperty |
![]() | aws_cdk.aws_apigateway.CfnDomainNameV2.EndpointConfigurationProperty |
![]() | aws-cdk-lib » aws_apigateway » CfnDomainNameV2 » EndpointConfigurationProperty |
The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has.
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.CfnDomainNameV2.EndpointConfigurationProperty = {
types: ['types'],
};
Properties
Name | Type | Description |
---|---|---|
types? | string[] | A list of endpoint types of an API (RestApi) or its custom domain name (DomainName). |
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
.