aws_sdk_bedrockdataautomation/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    ///   - [`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>
7    ///   - [`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>
8    ///   - [`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>
9    ///   - [`encryption_configuration(EncryptionConfiguration)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::encryption_configuration) / [`set_encryption_configuration(Option<EncryptionConfiguration>)`](crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::set_encryption_configuration):<br>required: **false**<br>KMS Encryption Configuration<br>
10    /// - On success, responds with [`UpdateBlueprintOutput`](crate::operation::update_blueprint::UpdateBlueprintOutput) with field(s):
11    ///   - [`blueprint(Option<Blueprint>)`](crate::operation::update_blueprint::UpdateBlueprintOutput::blueprint): Contains the information of a Blueprint.
12    /// - On failure, responds with [`SdkError<UpdateBlueprintError>`](crate::operation::update_blueprint::UpdateBlueprintError)
13    pub fn update_blueprint(&self) -> crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder {
14        crate::operation::update_blueprint::builders::UpdateBlueprintFluentBuilder::new(self.handle.clone())
15    }
16}