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 [`StartBlueprintRun`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`blueprint_name(impl Into<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::blueprint_name) / [`set_blueprint_name(Option<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::set_blueprint_name):<br>required: **true**<br><p>The name of the blueprint.</p><br>
    ///   - [`parameters(impl Into<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::parameters) / [`set_parameters(Option<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::set_parameters):<br>required: **false**<br><p>Specifies the parameters as a <code>BlueprintParameters</code> object.</p><br>
    ///   - [`role_arn(impl Into<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::role_arn) / [`set_role_arn(Option<String>)`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::set_role_arn):<br>required: **true**<br><p>Specifies the IAM role used to create the workflow.</p><br>
    /// - On success, responds with [`StartBlueprintRunOutput`](crate::operation::start_blueprint_run::StartBlueprintRunOutput) with field(s):
    ///   - [`run_id(Option<String>)`](crate::operation::start_blueprint_run::StartBlueprintRunOutput::run_id): <p>The run ID for this blueprint run.</p>
    /// - On failure, responds with [`SdkError<StartBlueprintRunError>`](crate::operation::start_blueprint_run::StartBlueprintRunError)
    pub fn start_blueprint_run(&self) -> crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder {
        crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::new(self.handle.clone())
    }
}