Configures an analysis scheme that can be applied to a text or text-array field to define language-specific text processing options. For more information, see Configuring Analysis Schemes in the Amazon CloudSearch Developer Guide.
example
Use a bare-bones client and the command you need to make an API call.
Configures an analysis scheme that can be applied to a
text
ortext-array
field to define language-specific text processing options. For more information, see Configuring Analysis Schemes in the Amazon CloudSearch Developer Guide.Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DefineAnalysisSchemeCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DefineAnalysisSchemeCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DefineAnalysisSchemeCommand(input); const response = await client.send(command);
DefineAnalysisSchemeCommandInput for command's
input
shape.DefineAnalysisSchemeCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.