1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StartOnDemandAppReplication`](crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`app_id(impl Into<String>)`](crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder::app_id) / [`set_app_id(Option<String>)`](crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder::set_app_id):<br>required: **true**<br><p>The ID of the application.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder::set_description):<br>required: **false**<br><p>The description of the replication run.</p><br>
    /// - On success, responds with [`StartOnDemandAppReplicationOutput`](crate::operation::start_on_demand_app_replication::StartOnDemandAppReplicationOutput)
    /// - On failure, responds with [`SdkError<StartOnDemandAppReplicationError>`](crate::operation::start_on_demand_app_replication::StartOnDemandAppReplicationError)
    pub fn start_on_demand_app_replication(
        &self,
    ) -> crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder {
        crate::operation::start_on_demand_app_replication::builders::StartOnDemandAppReplicationFluentBuilder::new(self.handle.clone())
    }
}