pub struct GetMatchIdFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetMatchId
.
Returns the corresponding Match ID of a customer record if the record has been processed.
Implementations§
source§impl GetMatchIdFluentBuilder
impl GetMatchIdFluentBuilder
sourcepub fn as_input(&self) -> &GetMatchIdInputBuilder
pub fn as_input(&self) -> &GetMatchIdInputBuilder
Access the GetMatchId as a reference.
sourcepub async fn send(
self
) -> Result<GetMatchIdOutput, SdkError<GetMatchIdError, HttpResponse>>
pub async fn send( self ) -> Result<GetMatchIdOutput, SdkError<GetMatchIdError, 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<GetMatchIdOutput, GetMatchIdError, Self>
pub fn customize( self ) -> CustomizableOperation<GetMatchIdOutput, GetMatchIdError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workflow_name(self, input: impl Into<String>) -> Self
pub fn workflow_name(self, input: impl Into<String>) -> Self
The name of the workflow.
sourcepub fn set_workflow_name(self, input: Option<String>) -> Self
pub fn set_workflow_name(self, input: Option<String>) -> Self
The name of the workflow.
sourcepub fn get_workflow_name(&self) -> &Option<String>
pub fn get_workflow_name(&self) -> &Option<String>
The name of the workflow.
sourcepub fn record(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn record(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to record
.
To override the contents of this collection use set_record
.
The record to fetch the Match ID for.
Trait Implementations§
source§impl Clone for GetMatchIdFluentBuilder
impl Clone for GetMatchIdFluentBuilder
source§fn clone(&self) -> GetMatchIdFluentBuilder
fn clone(&self) -> GetMatchIdFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more