Gets the availability options configured for a domain. By default, shows the configuration with any pending changes. Set the Deployed option to true to show the active configuration and exclude pending changes. For more information, see Configuring Availability Options in the Amazon CloudSearch Developer Guide.
example
Use a bare-bones client and the command you need to make an API call.
Gets the availability options configured for a domain. By default, shows the configuration with any pending changes. Set the
Deployed
option totrue
to show the active configuration and exclude pending changes. For more information, see Configuring Availability Options in the Amazon CloudSearch Developer Guide.Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DescribeAvailabilityOptionsCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DescribeAvailabilityOptionsCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DescribeAvailabilityOptionsCommand(input); const response = await client.send(command);
DescribeAvailabilityOptionsCommandInput for command's
input
shape.DescribeAvailabilityOptionsCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.