Interface CustomEndpointOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CustomEndpointOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-09T14:39:15.098Z") @Stability(Stable) public interface CustomEndpointOptions extends software.amazon.jsii.JsiiSerializable
Configures a custom domain endpoint for the Amazon OpenSearch Service domain.

Example:

 Domain.Builder.create(this, "Domain")
         .version(EngineVersion.OPENSEARCH_1_0)
         .customEndpoint(CustomEndpointOptions.builder()
                 .domainName("search.example.com")
                 .build())
         .build();
 
  • Method Details