Struct rusoto_cloudsearch::DescribeAnalysisSchemesRequest[][src]

pub struct DescribeAnalysisSchemesRequest {
    pub analysis_scheme_names: Option<Vec<String>>,
    pub deployed: Option<bool>,
    pub domain_name: String,
}

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.

Fields

The analysis schemes you want to describe.

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

The name of the domain you want to describe.

Trait Implementations

impl Default for DescribeAnalysisSchemesRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DescribeAnalysisSchemesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeAnalysisSchemesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeAnalysisSchemesRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations