Configures the access rules that control access to the domain's document and search endpoints. For more information, see Configuring Access for an Amazon CloudSearch Domain.
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, UpdateServiceAccessPoliciesCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, UpdateServiceAccessPoliciesCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new UpdateServiceAccessPoliciesCommand(input); const response = await client.send(command);
UpdateServiceAccessPoliciesCommandInput for command's input shape.
input
UpdateServiceAccessPoliciesCommandOutput for command's response shape.
response
config for CloudSearchClient's config shape.
config
Configures the access rules that control access to the domain's document and search endpoints. For more information, see Configuring Access for an Amazon CloudSearch Domain.
Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, UpdateServiceAccessPoliciesCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, UpdateServiceAccessPoliciesCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new UpdateServiceAccessPoliciesCommand(input); const response = await client.send(command);
UpdateServiceAccessPoliciesCommandInput for command's
input
shape.UpdateServiceAccessPoliciesCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.