pub struct Builder { /* private fields */ }
Expand description
A builder for ActivityTaskStartedEventAttributes
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn identity(self, input: impl Into<String>) -> Self
pub fn identity(self, input: impl Into<String>) -> Self
Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.
sourcepub fn set_identity(self, input: Option<String>) -> Self
pub fn set_identity(self, input: Option<String>) -> Self
Identity of the worker that was assigned this task. This aids diagnostics when problems arise. The form of this identity is user defined.
sourcepub fn scheduled_event_id(self, input: i64) -> Self
pub fn scheduled_event_id(self, input: i64) -> Self
The ID of the ActivityTaskScheduled
event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourcepub fn set_scheduled_event_id(self, input: Option<i64>) -> Self
pub fn set_scheduled_event_id(self, input: Option<i64>) -> Self
The ID of the ActivityTaskScheduled
event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourcepub fn build(self) -> ActivityTaskStartedEventAttributes
pub fn build(self) -> ActivityTaskStartedEventAttributes
Consumes the builder and constructs a ActivityTaskStartedEventAttributes
.