Struct aws_sdk_iotanalytics::operation::create_dataset_content::builders::CreateDatasetContentFluentBuilder
source · pub struct CreateDatasetContentFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateDatasetContent
.
Creates the content of a dataset by applying a queryAction
(a SQL query) or a containerAction
(executing a containerized application).
Implementations§
source§impl CreateDatasetContentFluentBuilder
impl CreateDatasetContentFluentBuilder
sourcepub async fn send(
self
) -> Result<CreateDatasetContentOutput, SdkError<CreateDatasetContentError>>
pub async fn send( self ) -> Result<CreateDatasetContentOutput, SdkError<CreateDatasetContentError>>
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 async fn customize(
self
) -> Result<CustomizableOperation<CreateDatasetContent, AwsResponseRetryClassifier>, SdkError<CreateDatasetContentError>>
pub async fn customize( self ) -> Result<CustomizableOperation<CreateDatasetContent, AwsResponseRetryClassifier>, SdkError<CreateDatasetContentError>>
Consumes this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
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.
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.
sourcepub fn version_id(self, input: impl Into<String>) -> Self
pub fn version_id(self, input: impl Into<String>) -> Self
The version ID of the dataset content. To specify versionId
for a dataset content, the dataset must use a DeltaTimer filter.
sourcepub fn set_version_id(self, input: Option<String>) -> Self
pub fn set_version_id(self, input: Option<String>) -> Self
The version ID of the dataset content. To specify versionId
for a dataset content, the dataset must use a DeltaTimer filter.
Trait Implementations§
source§impl Clone for CreateDatasetContentFluentBuilder
impl Clone for CreateDatasetContentFluentBuilder
source§fn clone(&self) -> CreateDatasetContentFluentBuilder
fn clone(&self) -> CreateDatasetContentFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more