aws_sdk_quicksight/client/
delete_data_set.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteDataSet`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The Amazon Web Services account ID.</p><br>
    ///   - [`data_set_id(impl Into<String>)`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::data_set_id) / [`set_data_set_id(Option<String>)`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::set_data_set_id):<br>required: **true**<br><p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
    /// - On success, responds with [`DeleteDataSetOutput`](crate::operation::delete_data_set::DeleteDataSetOutput) with field(s):
    ///   - [`arn(Option<String>)`](crate::operation::delete_data_set::DeleteDataSetOutput::arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
    ///   - [`data_set_id(Option<String>)`](crate::operation::delete_data_set::DeleteDataSetOutput::data_set_id): <p>The ID for the dataset that you want to create. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::delete_data_set::DeleteDataSetOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::delete_data_set::DeleteDataSetOutput::status): <p>The HTTP status of the request.</p>
    /// - On failure, responds with [`SdkError<DeleteDataSetError>`](crate::operation::delete_data_set::DeleteDataSetError)
    pub fn delete_data_set(&self) -> crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder {
        crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::new(self.handle.clone())
    }
}