aws_sdk_glue/client/start_blueprint_run.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`StartBlueprintRun`](crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - [`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>
9 /// - On success, responds with [`StartBlueprintRunOutput`](crate::operation::start_blueprint_run::StartBlueprintRunOutput) with field(s):
10 /// - [`run_id(Option<String>)`](crate::operation::start_blueprint_run::StartBlueprintRunOutput::run_id): <p>The run ID for this blueprint run.</p>
11 /// - On failure, responds with [`SdkError<StartBlueprintRunError>`](crate::operation::start_blueprint_run::StartBlueprintRunError)
12 pub fn start_blueprint_run(&self) -> crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder {
13 crate::operation::start_blueprint_run::builders::StartBlueprintRunFluentBuilder::new(self.handle.clone())
14 }
15}