aws-sdk-snowball 0.27.0

AWS SDK for Amazon Import/Export Snowball
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CancelCluster`](crate::operation::cancel_cluster::builders::CancelClusterFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_id(impl Into<String>)`](crate::operation::cancel_cluster::builders::CancelClusterFluentBuilder::cluster_id) / [`set_cluster_id(Option<String>)`](crate::operation::cancel_cluster::builders::CancelClusterFluentBuilder::set_cluster_id): <p>The 39-character ID for the cluster that you want to cancel, for example <code>CID123e4567-e89b-12d3-a456-426655440000</code>.</p>
    /// - On success, responds with [`CancelClusterOutput`](crate::operation::cancel_cluster::CancelClusterOutput)
    /// - On failure, responds with [`SdkError<CancelClusterError>`](crate::operation::cancel_cluster::CancelClusterError)
    pub fn cancel_cluster(
        &self,
    ) -> crate::operation::cancel_cluster::builders::CancelClusterFluentBuilder {
        crate::operation::cancel_cluster::builders::CancelClusterFluentBuilder::new(
            self.handle.clone(),
        )
    }
}