Interface CustomEndpointOptions

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

@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)", date="2026-01-23T11:19:50.856Z") @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