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

DescribeExpressionsRequest

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

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

interface DescribeExpressionsRequest {
Deployed?: boolean | null;
DomainName: string;
ExpressionNames?: string[] | null;
}

§Properties

§
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.

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

Limits the "DescribeExpressions" response to the specified expressions. If not specified, all expressions are shown.