Returns the domain's endpoint options, specifically whether all requests to the domain must arrive over HTTPS. For more information, see Configuring Domain Endpoint Options in the Amazon CloudSearch Developer Guide.
example
Use a bare-bones client and the command you need to make an API call.
Returns the domain's endpoint options, specifically whether all requests to the domain must arrive over HTTPS. For more information, see Configuring Domain Endpoint Options in the Amazon CloudSearch Developer Guide.
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DescribeDomainEndpointOptionsCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DescribeDomainEndpointOptionsCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DescribeDomainEndpointOptionsCommand(input); const response = await client.send(command);
DescribeDomainEndpointOptionsCommandInput for command's
input
shape.DescribeDomainEndpointOptionsCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.