aws_sdk_bedrockdataautomation/client/
delete_blueprint.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteBlueprint`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`blueprint_arn(impl Into<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::blueprint_arn) / [`set_blueprint_arn(Option<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::set_blueprint_arn):<br>required: **true**<br>ARN generated at the server side when a Blueprint is created<br>
    ///   - [`blueprint_version(impl Into<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::blueprint_version) / [`set_blueprint_version(Option<String>)`](crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::set_blueprint_version):<br>required: **false**<br>Optional field to delete a specific Blueprint version<br>
    /// - On success, responds with [`DeleteBlueprintOutput`](crate::operation::delete_blueprint::DeleteBlueprintOutput)
    /// - On failure, responds with [`SdkError<DeleteBlueprintError>`](crate::operation::delete_blueprint::DeleteBlueprintError)
    pub fn delete_blueprint(&self) -> crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder {
        crate::operation::delete_blueprint::builders::DeleteBlueprintFluentBuilder::new(self.handle.clone())
    }
}