1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CancelBatchJobExecution`](crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`application_id(impl Into<String>)`](crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder::application_id) / [`set_application_id(Option<String>)`](crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder::set_application_id):<br>required: **true**<br><p>The unique identifier of the application.</p><br>
    ///   - [`execution_id(impl Into<String>)`](crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder::execution_id) / [`set_execution_id(Option<String>)`](crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder::set_execution_id):<br>required: **true**<br><p>The unique identifier of the batch job execution.</p><br>
    /// - On success, responds with [`CancelBatchJobExecutionOutput`](crate::operation::cancel_batch_job_execution::CancelBatchJobExecutionOutput)
    /// - On failure, responds with [`SdkError<CancelBatchJobExecutionError>`](crate::operation::cancel_batch_job_execution::CancelBatchJobExecutionError)
    pub fn cancel_batch_job_execution(&self) -> crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder {
        crate::operation::cancel_batch_job_execution::builders::CancelBatchJobExecutionFluentBuilder::new(self.handle.clone())
    }
}