aws_sdk_bedrockdataautomation/client/update_blueprint.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`UpdateBlueprint`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`blueprint_arn(impl Into<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::blueprint_arn) / [`set_blueprint_arn(Option<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_blueprint_arn):<br>required: **true**<br>ARN generated at the server side when a Blueprint is created<br>
/// - [`schema(impl Into<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::schema) / [`set_schema(Option<String>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_schema):<br>required: **true**<br>Schema of the blueprint<br>
/// - [`blueprint_stage(BlueprintStage)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::blueprint_stage) / [`set_blueprint_stage(Option<BlueprintStage>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_blueprint_stage):<br>required: **false**<br>Stage of the Blueprint<br>
/// - On success, responds with [`UpdateBlueprintOutput`](crate::operation::update_blueprint::UpdateBlueprintOutput) with field(s):
/// - [`blueprint(Option<Blueprint>)`](crate::operation::update_blueprint::UpdateBlueprintOutput::blueprint): Contains the information of a Blueprint.
/// - On failure, responds with [`SdkError<UpdateBlueprintError>`](crate::operation::update_blueprint::UpdateBlueprintError)
pub fn update_blueprint(&self) -> crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder {
crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::new(self.handle.clone())
}
}