Struct aws_sdk_sagemaker::operation::send_pipeline_execution_step_failure::builders::SendPipelineExecutionStepFailureFluentBuilder
source · pub struct SendPipelineExecutionStepFailureFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to SendPipelineExecutionStepFailure
.
Notifies the pipeline that the execution of a callback step failed, along with a message describing why. When a callback step is run, the pipeline generates a callback token and includes the token in a message sent to Amazon Simple Queue Service (Amazon SQS).
Implementations§
source§impl SendPipelineExecutionStepFailureFluentBuilder
impl SendPipelineExecutionStepFailureFluentBuilder
sourcepub fn as_input(&self) -> &SendPipelineExecutionStepFailureInputBuilder
pub fn as_input(&self) -> &SendPipelineExecutionStepFailureInputBuilder
Access the SendPipelineExecutionStepFailure as a reference.
sourcepub async fn send(
self,
) -> Result<SendPipelineExecutionStepFailureOutput, SdkError<SendPipelineExecutionStepFailureError, HttpResponse>>
pub async fn send( self, ) -> Result<SendPipelineExecutionStepFailureOutput, SdkError<SendPipelineExecutionStepFailureError, 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<SendPipelineExecutionStepFailureOutput, SendPipelineExecutionStepFailureError, Self>
pub fn customize( self, ) -> CustomizableOperation<SendPipelineExecutionStepFailureOutput, SendPipelineExecutionStepFailureError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn callback_token(self, input: impl Into<String>) -> Self
pub fn callback_token(self, input: impl Into<String>) -> Self
The pipeline generated token from the Amazon SQS queue.
sourcepub fn set_callback_token(self, input: Option<String>) -> Self
pub fn set_callback_token(self, input: Option<String>) -> Self
The pipeline generated token from the Amazon SQS queue.
sourcepub fn get_callback_token(&self) -> &Option<String>
pub fn get_callback_token(&self) -> &Option<String>
The pipeline generated token from the Amazon SQS queue.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
A message describing why the step failed.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
A message describing why the step failed.
sourcepub fn get_failure_reason(&self) -> &Option<String>
pub fn get_failure_reason(&self) -> &Option<String>
A message describing why the step failed.
sourcepub fn client_request_token(self, input: impl Into<String>) -> Self
pub fn client_request_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.
sourcepub fn set_client_request_token(self, input: Option<String>) -> Self
pub fn set_client_request_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.
sourcepub fn get_client_request_token(&self) -> &Option<String>
pub fn get_client_request_token(&self) -> &Option<String>
A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.
Trait Implementations§
source§impl Clone for SendPipelineExecutionStepFailureFluentBuilder
impl Clone for SendPipelineExecutionStepFailureFluentBuilder
source§fn clone(&self) -> SendPipelineExecutionStepFailureFluentBuilder
fn clone(&self) -> SendPipelineExecutionStepFailureFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for SendPipelineExecutionStepFailureFluentBuilder
impl !RefUnwindSafe for SendPipelineExecutionStepFailureFluentBuilder
impl Send for SendPipelineExecutionStepFailureFluentBuilder
impl Sync for SendPipelineExecutionStepFailureFluentBuilder
impl Unpin for SendPipelineExecutionStepFailureFluentBuilder
impl !UnwindSafe for SendPipelineExecutionStepFailureFluentBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more