pub struct PutWorkflowRunProperties { /* private fields */ }Expand description
Fluent builder constructing a request to PutWorkflowRunProperties.
Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.
Implementations§
source§impl PutWorkflowRunProperties
impl PutWorkflowRunProperties
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<PutWorkflowRunProperties, AwsResponseRetryClassifier>, SdkError<PutWorkflowRunPropertiesError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<PutWorkflowRunProperties, AwsResponseRetryClassifier>, SdkError<PutWorkflowRunPropertiesError>>
Consume 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 async fn send(
self
) -> Result<PutWorkflowRunPropertiesOutput, SdkError<PutWorkflowRunPropertiesError>>
pub async fn send(
self
) -> Result<PutWorkflowRunPropertiesOutput, SdkError<PutWorkflowRunPropertiesError>>
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 run_id(self, input: impl Into<String>) -> Self
pub fn run_id(self, input: impl Into<String>) -> Self
The ID of the workflow run for which the run properties should be updated.
sourcepub fn set_run_id(self, input: Option<String>) -> Self
pub fn set_run_id(self, input: Option<String>) -> Self
The ID of the workflow run for which the run properties should be updated.
sourcepub fn run_properties(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn run_properties(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to RunProperties.
To override the contents of this collection use set_run_properties.
The properties to put for the specified run.
Trait Implementations§
source§impl Clone for PutWorkflowRunProperties
impl Clone for PutWorkflowRunProperties
source§fn clone(&self) -> PutWorkflowRunProperties
fn clone(&self) -> PutWorkflowRunProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more