Struct aws_sdk_swf::input::PollForActivityTaskInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PollForActivityTask, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PollForActivityTask, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PollForActivityTask
>
Creates a new builder-style object to manufacture PollForActivityTaskInput
The name of the domain that contains the task lists being polled.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for PollForActivityTaskInput
impl Send for PollForActivityTaskInput
impl Sync for PollForActivityTaskInput
impl Unpin for PollForActivityTaskInput
impl UnwindSafe for PollForActivityTaskInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more