1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`FailoverShard`](crate::operation::failover_shard::builders::FailoverShardFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`cluster_name(impl Into<String>)`](crate::operation::failover_shard::builders::FailoverShardFluentBuilder::cluster_name) / [`set_cluster_name(Option<String>)`](crate::operation::failover_shard::builders::FailoverShardFluentBuilder::set_cluster_name):<br>required: **true**<br><p>The cluster being failed over</p><br>
    ///   - [`shard_name(impl Into<String>)`](crate::operation::failover_shard::builders::FailoverShardFluentBuilder::shard_name) / [`set_shard_name(Option<String>)`](crate::operation::failover_shard::builders::FailoverShardFluentBuilder::set_shard_name):<br>required: **true**<br><p>The name of the shard</p><br>
    /// - On success, responds with [`FailoverShardOutput`](crate::operation::failover_shard::FailoverShardOutput) with field(s):
    ///   - [`cluster(Option<Cluster>)`](crate::operation::failover_shard::FailoverShardOutput::cluster): <p>The cluster being failed over</p>
    /// - On failure, responds with [`SdkError<FailoverShardError>`](crate::operation::failover_shard::FailoverShardError)
    pub fn failover_shard(&self) -> crate::operation::failover_shard::builders::FailoverShardFluentBuilder {
        crate::operation::failover_shard::builders::FailoverShardFluentBuilder::new(self.handle.clone())
    }
}