Struct aws_sdk_iotanalytics::operation::delete_dataset_content::builders::DeleteDatasetContentFluentBuilder
source · pub struct DeleteDatasetContentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteDatasetContent
.
Deletes the content of the specified dataset.
Implementations§
source§impl DeleteDatasetContentFluentBuilder
impl DeleteDatasetContentFluentBuilder
sourcepub fn as_input(&self) -> &DeleteDatasetContentInputBuilder
pub fn as_input(&self) -> &DeleteDatasetContentInputBuilder
Access the DeleteDatasetContent as a reference.
sourcepub async fn send(
self
) -> Result<DeleteDatasetContentOutput, SdkError<DeleteDatasetContentError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteDatasetContentOutput, SdkError<DeleteDatasetContentError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<DeleteDatasetContentOutput, DeleteDatasetContentError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteDatasetContentOutput, DeleteDatasetContentError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn dataset_name(self, input: impl Into<String>) -> Self
pub fn dataset_name(self, input: impl Into<String>) -> Self
The name of the dataset whose content is deleted.
sourcepub fn set_dataset_name(self, input: Option<String>) -> Self
pub fn set_dataset_name(self, input: Option<String>) -> Self
The name of the dataset whose content is deleted.
sourcepub fn get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
The name of the dataset whose content is deleted.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
The version of the dataset whose content is deleted. You can also use the strings "$LATEST" or "$LATEST_SUCCEEDED" to delete the latest or latest successfully completed data set. If not specified, "$LATEST_SUCCEEDED" is the default.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
The version of the dataset whose content is deleted. You can also use the strings "$LATEST" or "$LATEST_SUCCEEDED" to delete the latest or latest successfully completed data set. If not specified, "$LATEST_SUCCEEDED" is the default.
sourcepub fn get_version_id(&self) -> &Option<String>
pub fn get_version_id(&self) -> &Option<String>
The version of the dataset whose content is deleted. You can also use the strings "$LATEST" or "$LATEST_SUCCEEDED" to delete the latest or latest successfully completed data set. If not specified, "$LATEST_SUCCEEDED" is the default.
Trait Implementations§
source§impl Clone for DeleteDatasetContentFluentBuilder
impl Clone for DeleteDatasetContentFluentBuilder
source§fn clone(&self) -> DeleteDatasetContentFluentBuilder
fn clone(&self) -> DeleteDatasetContentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more