1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetPreparedStatement`](crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`prepared_statement_names(impl Into<String>)`](crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder::prepared_statement_names) / [`set_prepared_statement_names(Option<Vec::<String>>)`](crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder::set_prepared_statement_names):<br>required: **true**<br><p>A list of prepared statement names to return.</p><br>
    ///   - [`work_group(impl Into<String>)`](crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder::work_group) / [`set_work_group(Option<String>)`](crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder::set_work_group):<br>required: **true**<br><p>The name of the workgroup to which the prepared statements belong.</p><br>
    /// - On success, responds with [`BatchGetPreparedStatementOutput`](crate::operation::batch_get_prepared_statement::BatchGetPreparedStatementOutput) with field(s):
    ///   - [`prepared_statements(Option<Vec::<PreparedStatement>>)`](crate::operation::batch_get_prepared_statement::BatchGetPreparedStatementOutput::prepared_statements): <p>The list of prepared statements returned.</p>
    ///   - [`unprocessed_prepared_statement_names(Option<Vec::<UnprocessedPreparedStatementName>>)`](crate::operation::batch_get_prepared_statement::BatchGetPreparedStatementOutput::unprocessed_prepared_statement_names): <p>A list of one or more prepared statements that were requested but could not be returned.</p>
    /// - On failure, responds with [`SdkError<BatchGetPreparedStatementError>`](crate::operation::batch_get_prepared_statement::BatchGetPreparedStatementError)
    pub fn batch_get_prepared_statement(&self) -> crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder {
        crate::operation::batch_get_prepared_statement::builders::BatchGetPreparedStatementFluentBuilder::new(self.handle.clone())
    }
}