aws_sdk_glue/client/update_blueprint.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 [`UpdateBlueprint`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`name(impl Into<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_name):<br>required: **true**<br><p>The name of the blueprint.</p><br>
7 /// - [`description(impl Into<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_description):<br>required: **false**<br><p>A description of the blueprint.</p><br>
8 /// - [`blueprint_location(impl Into<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::blueprint_location) / [`set_blueprint_location(Option<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_blueprint_location):<br>required: **true**<br><p>Specifies a path in Amazon S3 where the blueprint is published.</p><br>
9 /// - On success, responds with [`UpdateBlueprintOutput`](crate::operation::update_blueprint::UpdateBlueprintOutput) with field(s):
10 /// - [`name(Option<String>)`](crate::operation::update_blueprint::UpdateBlueprintOutput::name): <p>Returns the name of the blueprint that was updated.</p>
11 /// - On failure, responds with [`SdkError<UpdateBlueprintError>`](crate::operation::update_blueprint::UpdateBlueprintError)
12 pub fn update_blueprint(&self) -> crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder {
13 crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::new(self.handle.clone())
14 }
15}