Struct aws_sdk_iotanalytics::operation::get_dataset_content::builders::GetDatasetContentFluentBuilder
source · pub struct GetDatasetContentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetDatasetContent
.
Retrieves the contents of a dataset as presigned URIs.
Implementations§
source§impl GetDatasetContentFluentBuilder
impl GetDatasetContentFluentBuilder
sourcepub fn as_input(&self) -> &GetDatasetContentInputBuilder
pub fn as_input(&self) -> &GetDatasetContentInputBuilder
Access the GetDatasetContent as a reference.
sourcepub async fn send(
self
) -> Result<GetDatasetContentOutput, SdkError<GetDatasetContentError, HttpResponse>>
pub async fn send( self ) -> Result<GetDatasetContentOutput, SdkError<GetDatasetContentError, 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<GetDatasetContentOutput, GetDatasetContentError, Self>
pub fn customize( self ) -> CustomizableOperation<GetDatasetContentOutput, GetDatasetContentError, 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 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 get_dataset_name(&self) -> &Option<String>
pub fn get_dataset_name(&self) -> &Option<String>
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 get_version_id(&self) -> &Option<String>
pub fn get_version_id(&self) -> &Option<String>
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.
Trait Implementations§
source§impl Clone for GetDatasetContentFluentBuilder
impl Clone for GetDatasetContentFluentBuilder
source§fn clone(&self) -> GetDatasetContentFluentBuilder
fn clone(&self) -> GetDatasetContentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more