#[non_exhaustive]pub struct PollForActivityTaskInput {
pub domain: Option<String>,
pub task_list: Option<TaskList>,
pub identity: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain: Option<String>
The name of the domain that contains the task lists being polled.
task_list: Option<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
.
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.
Implementations§
source§impl PollForActivityTaskInput
impl PollForActivityTaskInput
sourcepub fn domain(&self) -> Option<&str>
pub fn domain(&self) -> Option<&str>
The name of the domain that contains the task lists being polled.
sourcepub fn task_list(&self) -> Option<&TaskList>
pub fn task_list(&self) -> Option<&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
.
source§impl PollForActivityTaskInput
impl PollForActivityTaskInput
sourcepub fn builder() -> PollForActivityTaskInputBuilder
pub fn builder() -> PollForActivityTaskInputBuilder
Creates a new builder-style object to manufacture PollForActivityTaskInput
.
Trait Implementations§
source§impl Clone for PollForActivityTaskInput
impl Clone for PollForActivityTaskInput
source§fn clone(&self) -> PollForActivityTaskInput
fn clone(&self) -> PollForActivityTaskInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PollForActivityTaskInput
impl Debug for PollForActivityTaskInput
source§impl PartialEq for PollForActivityTaskInput
impl PartialEq for PollForActivityTaskInput
source§fn eq(&self, other: &PollForActivityTaskInput) -> bool
fn eq(&self, other: &PollForActivityTaskInput) -> bool
self
and other
values to be equal, and is used
by ==
.