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 [`StartOnDemandReplicationRun`](crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`replication_job_id(impl Into<String>)`](crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder::replication_job_id) / [`set_replication_job_id(Option<String>)`](crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder::set_replication_job_id):<br>required: **true**<br><p>The ID of the replication job.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder::set_description):<br>required: **false**<br><p>The description of the replication run.</p><br>
    /// - On success, responds with [`StartOnDemandReplicationRunOutput`](crate::operation::start_on_demand_replication_run::StartOnDemandReplicationRunOutput) with field(s):
    ///   - [`replication_run_id(Option<String>)`](crate::operation::start_on_demand_replication_run::StartOnDemandReplicationRunOutput::replication_run_id): <p>The ID of the replication run.</p>
    /// - On failure, responds with [`SdkError<StartOnDemandReplicationRunError>`](crate::operation::start_on_demand_replication_run::StartOnDemandReplicationRunError)
    pub fn start_on_demand_replication_run(
        &self,
    ) -> crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder {
        crate::operation::start_on_demand_replication_run::builders::StartOnDemandReplicationRunFluentBuilder::new(self.handle.clone())
    }
}