aws_sdk_glue/client/get_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 [`GetBlueprintRun`](crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`blueprint_name(impl Into<String>)`](crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder::blueprint_name) / [`set_blueprint_name(Option<String>)`](crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder::set_blueprint_name):<br>required: **true**<br><p>The name of the blueprint.</p><br>
7 /// - [`run_id(impl Into<String>)`](crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder::run_id) / [`set_run_id(Option<String>)`](crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder::set_run_id):<br>required: **true**<br><p>The run ID for the blueprint run you want to retrieve.</p><br>
8 /// - On success, responds with [`GetBlueprintRunOutput`](crate::operation::get_blueprint_run::GetBlueprintRunOutput) with field(s):
9 /// - [`blueprint_run(Option<BlueprintRun>)`](crate::operation::get_blueprint_run::GetBlueprintRunOutput::blueprint_run): <p>Returns a <code>BlueprintRun</code> object.</p>
10 /// - On failure, responds with [`SdkError<GetBlueprintRunError>`](crate::operation::get_blueprint_run::GetBlueprintRunError)
11 pub fn get_blueprint_run(&self) -> crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder {
12 crate::operation::get_blueprint_run::builders::GetBlueprintRunFluentBuilder::new(self.handle.clone())
13 }
14}