Class EndpointConfigurationTrait
java.lang.Object
software.amazon.smithy.model.traits.AbstractTrait
software.amazon.smithy.aws.apigateway.traits.EndpointConfigurationTrait
- All Implemented Interfaces:
FromSourceLocation,ToNode,ToShapeId,Trait,ToSmithyBuilder<EndpointConfigurationTrait>
public final class EndpointConfigurationTrait
extends AbstractTrait
implements ToSmithyBuilder<EndpointConfigurationTrait>
Defines the endpoint configuration for an API Gateway REST API, including
the endpoint type, VPC endpoint IDs, whether the default execute-api
endpoint is disabled, and the IP address type.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classstatic final class -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder for the trait.protected ObjectNodeThe result of toNode is used for hashCodes and equality.Gets whether the default execute-api endpoint is disabled.Gets the IP address type that can invoke the API.getTypes()Gets the endpoint types for the API.Gets the VPC endpoint IDs for PRIVATE endpoint type APIs.Take this object and create a builder that contains all of the current property values of this object.Methods inherited from class software.amazon.smithy.model.traits.AbstractTrait
equals, getSourceLocation, hashCode, setNodeCache, toNode, toShapeId, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.smithy.model.traits.Trait
isSynthetic
-
Field Details
-
ID
-
-
Method Details
-
builder
Creates a builder for the trait.- Returns:
- Returns the created builder.
-
getTypes
Gets the endpoint types for the API.- Returns:
- Returns the list of endpoint types.
-
getVpcEndpointIds
Gets the VPC endpoint IDs for PRIVATE endpoint type APIs.- Returns:
- Returns the optional list of VPC endpoint IDs.
-
getDisableExecuteApiEndpoint
Gets whether the default execute-api endpoint is disabled.- Returns:
- Returns the optional disable flag.
-
getIpAddressType
Gets the IP address type that can invoke the API.Supported values are
ipv4anddualstack.- Returns:
- Returns the optional IP address type.
-
createNode
Description copied from class:AbstractTraitThe result of toNode is used for hashCodes and equality. Subclasses must implement createNode to turn the trait into a Node. This is then cached for subsequent retrievals.- Specified by:
createNodein classAbstractTrait- Returns:
- Returns the trait as a node.
-
toBuilder
Description copied from interface:ToSmithyBuilderTake this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilderin interfaceToSmithyBuilder<EndpointConfigurationTrait>- Returns:
- a builder for type T
-