aws_sdk_quicksight/client/delete_data_set.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 [`DeleteDataSet`](crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`DeleteDataSetOutput`](crate::operation::delete_data_set::DeleteDataSetOutput) with field(s):
9 /// - [`arn(Option<String>)`](crate::operation::delete_data_set::DeleteDataSetOutput::arn): <p>The Amazon Resource Name (ARN) of the dataset.</p>
10 /// - [`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>
11 /// - [`request_id(Option<String>)`](crate::operation::delete_data_set::DeleteDataSetOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
12 /// - [`status(i32)`](crate::operation::delete_data_set::DeleteDataSetOutput::status): <p>The HTTP status of the request.</p>
13 /// - On failure, responds with [`SdkError<DeleteDataSetError>`](crate::operation::delete_data_set::DeleteDataSetError)
14 pub fn delete_data_set(&self) -> crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder {
15 crate::operation::delete_data_set::builders::DeleteDataSetFluentBuilder::new(self.handle.clone())
16 }
17}