aws_sdk_glue/client/
delete_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 [`DeleteBlueprint`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`name(impl Into<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::set_name):<br>required: **true**<br><p>The name of the blueprint to delete.</p><br>
7    /// - On success, responds with [`DeleteBlueprintOutput`](crate::operation::delete_blueprint::DeleteBlueprintOutput) with field(s):
8    ///   - [`name(Option<String>)`](crate::operation::delete_blueprint::DeleteBlueprintOutput::name): <p>Returns the name of the blueprint that was deleted.</p>
9    /// - On failure, responds with [`SdkError<DeleteBlueprintError>`](crate::operation::delete_blueprint::DeleteBlueprintError)
10    pub fn delete_blueprint(&self) -> crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder {
11        crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::new(self.handle.clone())
12    }
13}