aws_sdk_osis/client/get_pipeline_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 [`GetPipelineBlueprint`](crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`blueprint_name(impl Into<String>)`](crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder::blueprint_name) / [`set_blueprint_name(Option<String>)`](crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder::set_blueprint_name):<br>required: **true**<br><p>The name of the blueprint to retrieve.</p><br>
7 /// - [`format(impl Into<String>)`](crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder::format) / [`set_format(Option<String>)`](crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder::set_format):<br>required: **false**<br><p>The format format of the blueprint to retrieve.</p><br>
8 /// - On success, responds with [`GetPipelineBlueprintOutput`](crate::operation::get_pipeline_blueprint::GetPipelineBlueprintOutput) with field(s):
9 /// - [`blueprint(Option<PipelineBlueprint>)`](crate::operation::get_pipeline_blueprint::GetPipelineBlueprintOutput::blueprint): <p>The requested blueprint in YAML format.</p>
10 /// - [`format(Option<String>)`](crate::operation::get_pipeline_blueprint::GetPipelineBlueprintOutput::format): <p>The format of the blueprint.</p>
11 /// - On failure, responds with [`SdkError<GetPipelineBlueprintError>`](crate::operation::get_pipeline_blueprint::GetPipelineBlueprintError)
12 pub fn get_pipeline_blueprint(&self) -> crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder {
13 crate::operation::get_pipeline_blueprint::builders::GetPipelineBlueprintFluentBuilder::new(self.handle.clone())
14 }
15}