1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeExpressions`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_name(impl Into<String>)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::domain_name) / [`set_domain_name(Option<String>)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::set_domain_name): <p>The name of the domain you want to describe.</p>
    ///   - [`expression_names(Vec<String>)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::expression_names) / [`set_expression_names(Option<Vec<String>>)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::set_expression_names): <p>Limits the <code><code>DescribeExpressions</code></code> response to the specified expressions. If not specified, all expressions are shown.</p>
    ///   - [`deployed(bool)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::deployed) / [`set_deployed(Option<bool>)`](crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::set_deployed): <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
    /// - On success, responds with [`DescribeExpressionsOutput`](crate::operation::describe_expressions::DescribeExpressionsOutput) with field(s):
    ///   - [`expressions(Option<Vec<ExpressionStatus>>)`](crate::operation::describe_expressions::DescribeExpressionsOutput::expressions): <p>The expressions configured for the domain.</p>
    /// - On failure, responds with [`SdkError<DescribeExpressionsError>`](crate::operation::describe_expressions::DescribeExpressionsError)
    pub fn describe_expressions(
        &self,
    ) -> crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder {
        crate::operation::describe_expressions::builders::DescribeExpressionsFluentBuilder::new(
            self.handle.clone(),
        )
    }
}