1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`PutWorkflowRunProperties`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::set_name):<br>required: **true**<br><p>Name of the workflow which was run.</p><br>
    ///   - [`run_id(impl Into<String>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::run_id) / [`set_run_id(Option<String>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::set_run_id):<br>required: **true**<br><p>The ID of the workflow run for which the run properties should be updated.</p><br>
    ///   - [`run_properties(impl Into<String>, impl Into<String>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::run_properties) / [`set_run_properties(Option<HashMap::<String, String>>)`](crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::set_run_properties):<br>required: **true**<br><p>The properties to put for the specified run.</p><br>
    /// - On success, responds with [`PutWorkflowRunPropertiesOutput`](crate::operation::put_workflow_run_properties::PutWorkflowRunPropertiesOutput)
    /// - On failure, responds with [`SdkError<PutWorkflowRunPropertiesError>`](crate::operation::put_workflow_run_properties::PutWorkflowRunPropertiesError)
    pub fn put_workflow_run_properties(&self) -> crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder {
        crate::operation::put_workflow_run_properties::builders::PutWorkflowRunPropertiesFluentBuilder::new(self.handle.clone())
    }
}