aws_sdk_greengrass/client/
stop_bulk_deployment.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`StopBulkDeployment`](crate::operation::stop_bulk_deployment::builders::StopBulkDeploymentFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`bulk_deployment_id(impl Into<String>)`](crate::operation::stop_bulk_deployment::builders::StopBulkDeploymentFluentBuilder::bulk_deployment_id) / [`set_bulk_deployment_id(Option<String>)`](crate::operation::stop_bulk_deployment::builders::StopBulkDeploymentFluentBuilder::set_bulk_deployment_id):<br>required: **true**<br>The ID of the bulk deployment.<br>
7    /// - On success, responds with [`StopBulkDeploymentOutput`](crate::operation::stop_bulk_deployment::StopBulkDeploymentOutput)
8    /// - On failure, responds with [`SdkError<StopBulkDeploymentError>`](crate::operation::stop_bulk_deployment::StopBulkDeploymentError)
9    pub fn stop_bulk_deployment(&self) -> crate::operation::stop_bulk_deployment::builders::StopBulkDeploymentFluentBuilder {
10        crate::operation::stop_bulk_deployment::builders::StopBulkDeploymentFluentBuilder::new(self.handle.clone())
11    }
12}