pub struct PollForActivityTaskInput {
pub domain: String,
pub identity: Option<String>,
pub task_list: TaskList,
}
Fields§
§domain: String
The name of the domain that contains the task lists being polled.
identity: Option<String>
Identity of the worker making the request, recorded in the ActivityTaskStarted
event in the workflow history. This enables diagnostic tracing when problems arise. The form of this identity is user defined.
task_list: TaskList
Specifies the task list to poll for activity tasks.
The specified string must not start or end with whitespace. It must not contain a :
(colon), /
(slash), |
(vertical bar), or any control characters (\u0000-\u001f
| \u007f-\u009f
). Also, it must not be the literal string arn
.
Trait Implementations§
Source§impl Clone for PollForActivityTaskInput
impl Clone for PollForActivityTaskInput
Source§fn clone(&self) -> PollForActivityTaskInput
fn clone(&self) -> PollForActivityTaskInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PollForActivityTaskInput
impl Debug for PollForActivityTaskInput
Source§impl Default for PollForActivityTaskInput
impl Default for PollForActivityTaskInput
Source§fn default() -> PollForActivityTaskInput
fn default() -> PollForActivityTaskInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PollForActivityTaskInput
impl PartialEq for PollForActivityTaskInput
Source§impl Serialize for PollForActivityTaskInput
impl Serialize for PollForActivityTaskInput
impl StructuralPartialEq for PollForActivityTaskInput
Auto Trait Implementations§
impl Freeze for PollForActivityTaskInput
impl RefUnwindSafe for PollForActivityTaskInput
impl Send for PollForActivityTaskInput
impl Sync for PollForActivityTaskInput
impl Unpin for PollForActivityTaskInput
impl UnwindSafe for PollForActivityTaskInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more