Struct aws_sdk_iotanalytics::operation::get_dataset_content::builders::GetDatasetContentInputBuilder
source · #[non_exhaustive]pub struct GetDatasetContentInputBuilder { /* private fields */ }
Expand description
A builder for GetDatasetContentInput
.
Implementations§
source§impl GetDatasetContentInputBuilder
impl GetDatasetContentInputBuilder
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 contents are retrieved.
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 contents are retrieved.
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 contents are retrieved. You can also use the strings "$LATEST" or "$LATEST_SUCCEEDED" to retrieve the contents of the latest or latest successfully completed dataset. 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 contents are retrieved. You can also use the strings "$LATEST" or "$LATEST_SUCCEEDED" to retrieve the contents of the latest or latest successfully completed dataset. If not specified, "$LATEST_SUCCEEDED" is the default.
sourcepub fn build(self) -> Result<GetDatasetContentInput, BuildError>
pub fn build(self) -> Result<GetDatasetContentInput, BuildError>
Consumes the builder and constructs a GetDatasetContentInput
.
Trait Implementations§
source§impl Clone for GetDatasetContentInputBuilder
impl Clone for GetDatasetContentInputBuilder
source§fn clone(&self) -> GetDatasetContentInputBuilder
fn clone(&self) -> GetDatasetContentInputBuilder
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 GetDatasetContentInputBuilder
impl Default for GetDatasetContentInputBuilder
source§fn default() -> GetDatasetContentInputBuilder
fn default() -> GetDatasetContentInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetDatasetContentInputBuilder> for GetDatasetContentInputBuilder
impl PartialEq<GetDatasetContentInputBuilder> for GetDatasetContentInputBuilder
source§fn eq(&self, other: &GetDatasetContentInputBuilder) -> bool
fn eq(&self, other: &GetDatasetContentInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDatasetContentInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetDatasetContentInputBuilder
impl Send for GetDatasetContentInputBuilder
impl Sync for GetDatasetContentInputBuilder
impl Unpin for GetDatasetContentInputBuilder
impl UnwindSafe for GetDatasetContentInputBuilder
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