aws_sdk_lambda/client/
send_durable_execution_callback_heartbeat.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`SendDurableExecutionCallbackHeartbeat`](crate::operation::send_durable_execution_callback_heartbeat::builders::SendDurableExecutionCallbackHeartbeatFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`callback_id(impl Into<String>)`](crate::operation::send_durable_execution_callback_heartbeat::builders::SendDurableExecutionCallbackHeartbeatFluentBuilder::callback_id) / [`set_callback_id(Option<String>)`](crate::operation::send_durable_execution_callback_heartbeat::builders::SendDurableExecutionCallbackHeartbeatFluentBuilder::set_callback_id):<br>required: **true**<br><p>The unique identifier for the callback operation.</p><br>
7    /// - On success, responds with [`SendDurableExecutionCallbackHeartbeatOutput`](crate::operation::send_durable_execution_callback_heartbeat::SendDurableExecutionCallbackHeartbeatOutput)
8    /// - On failure, responds with [`SdkError<SendDurableExecutionCallbackHeartbeatError>`](crate::operation::send_durable_execution_callback_heartbeat::SendDurableExecutionCallbackHeartbeatError)
9    pub fn send_durable_execution_callback_heartbeat(
10        &self,
11    ) -> crate::operation::send_durable_execution_callback_heartbeat::builders::SendDurableExecutionCallbackHeartbeatFluentBuilder {
12        crate::operation::send_durable_execution_callback_heartbeat::builders::SendDurableExecutionCallbackHeartbeatFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}