aws_sdk_glue/client/batch_get_blueprints.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 [`BatchGetBlueprints`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`names(impl Into<String>)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::names) / [`set_names(Option<Vec::<String>>)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::set_names):<br>required: **true**<br><p>A list of blueprint names.</p><br>
7 /// - [`include_blueprint(bool)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::include_blueprint) / [`set_include_blueprint(Option<bool>)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::set_include_blueprint):<br>required: **false**<br><p>Specifies whether or not to include the blueprint in the response.</p><br>
8 /// - [`include_parameter_spec(bool)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::include_parameter_spec) / [`set_include_parameter_spec(Option<bool>)`](crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::set_include_parameter_spec):<br>required: **false**<br><p>Specifies whether or not to include the parameters, as a JSON string, for the blueprint in the response.</p><br>
9 /// - On success, responds with [`BatchGetBlueprintsOutput`](crate::operation::batch_get_blueprints::BatchGetBlueprintsOutput) with field(s):
10 /// - [`blueprints(Option<Vec::<Blueprint>>)`](crate::operation::batch_get_blueprints::BatchGetBlueprintsOutput::blueprints): <p>Returns a list of blueprint as a <code>Blueprints</code> object.</p>
11 /// - [`missing_blueprints(Option<Vec::<String>>)`](crate::operation::batch_get_blueprints::BatchGetBlueprintsOutput::missing_blueprints): <p>Returns a list of <code>BlueprintNames</code> that were not found.</p>
12 /// - On failure, responds with [`SdkError<BatchGetBlueprintsError>`](crate::operation::batch_get_blueprints::BatchGetBlueprintsError)
13 pub fn batch_get_blueprints(&self) -> crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder {
14 crate::operation::batch_get_blueprints::builders::BatchGetBlueprintsFluentBuilder::new(self.handle.clone())
15 }
16}