Struct aws_sdk_iotanalytics::operation::cancel_pipeline_reprocessing::builders::CancelPipelineReprocessingFluentBuilder
source · pub struct CancelPipelineReprocessingFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to CancelPipelineReprocessing
.
Cancels the reprocessing of data through the pipeline.
Implementations§
source§impl CancelPipelineReprocessingFluentBuilder
impl CancelPipelineReprocessingFluentBuilder
sourcepub fn as_input(&self) -> &CancelPipelineReprocessingInputBuilder
pub fn as_input(&self) -> &CancelPipelineReprocessingInputBuilder
Access the CancelPipelineReprocessing as a reference.
sourcepub async fn send(
self
) -> Result<CancelPipelineReprocessingOutput, SdkError<CancelPipelineReprocessingError, HttpResponse>>
pub async fn send( self ) -> Result<CancelPipelineReprocessingOutput, SdkError<CancelPipelineReprocessingError, 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<CancelPipelineReprocessingOutput, CancelPipelineReprocessingError, Self>
pub fn customize( self ) -> CustomizableOperation<CancelPipelineReprocessingOutput, CancelPipelineReprocessingError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of pipeline for which data reprocessing is canceled.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of pipeline for which data reprocessing is canceled.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name of pipeline for which data reprocessing is canceled.
sourcepub fn reprocessing_id(self, input: impl Into<String>) -> Self
pub fn reprocessing_id(self, input: impl Into<String>) -> Self
The ID of the reprocessing task (returned by StartPipelineReprocessing
).
sourcepub fn set_reprocessing_id(self, input: Option<String>) -> Self
pub fn set_reprocessing_id(self, input: Option<String>) -> Self
The ID of the reprocessing task (returned by StartPipelineReprocessing
).
sourcepub fn get_reprocessing_id(&self) -> &Option<String>
pub fn get_reprocessing_id(&self) -> &Option<String>
The ID of the reprocessing task (returned by StartPipelineReprocessing
).
Trait Implementations§
source§impl Clone for CancelPipelineReprocessingFluentBuilder
impl Clone for CancelPipelineReprocessingFluentBuilder
source§fn clone(&self) -> CancelPipelineReprocessingFluentBuilder
fn clone(&self) -> CancelPipelineReprocessingFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more