Struct aws_sdk_iotanalytics::operation::delete_dataset_content::builders::DeleteDatasetContentInputBuilder
source · #[non_exhaustive]pub struct DeleteDatasetContentInputBuilder { /* private fields */ }
Expand description
A builder for DeleteDatasetContentInput
.
Implementations§
source§impl DeleteDatasetContentInputBuilder
impl DeleteDatasetContentInputBuilder
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 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 build(self) -> Result<DeleteDatasetContentInput, BuildError>
pub fn build(self) -> Result<DeleteDatasetContentInput, BuildError>
Consumes the builder and constructs a DeleteDatasetContentInput
.
Trait Implementations§
source§impl Clone for DeleteDatasetContentInputBuilder
impl Clone for DeleteDatasetContentInputBuilder
source§fn clone(&self) -> DeleteDatasetContentInputBuilder
fn clone(&self) -> DeleteDatasetContentInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for DeleteDatasetContentInputBuilder
impl Default for DeleteDatasetContentInputBuilder
source§fn default() -> DeleteDatasetContentInputBuilder
fn default() -> DeleteDatasetContentInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DeleteDatasetContentInputBuilder> for DeleteDatasetContentInputBuilder
impl PartialEq<DeleteDatasetContentInputBuilder> for DeleteDatasetContentInputBuilder
source§fn eq(&self, other: &DeleteDatasetContentInputBuilder) -> bool
fn eq(&self, other: &DeleteDatasetContentInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteDatasetContentInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeleteDatasetContentInputBuilder
impl Send for DeleteDatasetContentInputBuilder
impl Sync for DeleteDatasetContentInputBuilder
impl Unpin for DeleteDatasetContentInputBuilder
impl UnwindSafe for DeleteDatasetContentInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more