aws_sdk_bedrockdataautomation/client/
get_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 [`GetBlueprint`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`blueprint_arn(impl Into<String>)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::blueprint_arn) / [`set_blueprint_arn(Option<String>)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::set_blueprint_arn):<br>required: **true**<br>ARN generated at the server side when a Blueprint is created<br>
7    ///   - [`blueprint_version(impl Into<String>)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::blueprint_version) / [`set_blueprint_version(Option<String>)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::set_blueprint_version):<br>required: **false**<br>Optional field to get a specific Blueprint version<br>
8    ///   - [`blueprint_stage(BlueprintStage)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::blueprint_stage) / [`set_blueprint_stage(Option<BlueprintStage>)`](crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::set_blueprint_stage):<br>required: **false**<br>Optional field to get a specific Blueprint stage<br>
9    /// - On success, responds with [`GetBlueprintOutput`](crate::operation::get_blueprint::GetBlueprintOutput) with field(s):
10    ///   - [`blueprint(Option<Blueprint>)`](crate::operation::get_blueprint::GetBlueprintOutput::blueprint): Contains the information of a Blueprint.
11    /// - On failure, responds with [`SdkError<GetBlueprintError>`](crate::operation::get_blueprint::GetBlueprintError)
12    pub fn get_blueprint(&self) -> crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder {
13        crate::operation::get_blueprint::builders::GetBlueprintFluentBuilder::new(self.handle.clone())
14    }
15}