Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeAnalysisSchemesRequest

import type { DescribeAnalysisSchemesRequest } from "https://aws-api.deno.dev/v0.3/services/cloudsearch.ts?docs=full";

Container for the parameters to the "DescribeAnalysisSchemes" operation. Specifies the name of the domain you want to describe. To limit the response to particular analysis schemes, specify the names of the analysis schemes you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

interface DescribeAnalysisSchemesRequest {
AnalysisSchemeNames?: string[] | null;
Deployed?: boolean | null;
DomainName: string;
}

§Properties

§
AnalysisSchemeNames?: string[] | null
[src]

The analysis schemes you want to describe.

§
Deployed?: boolean | null
[src]

Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

§
DomainName: string
[src]

The name of the domain you want to describe.