#[non_exhaustive]pub struct PollForActivityTaskInput { /* private fields */ }
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
.
source§impl PollForActivityTaskInput
impl PollForActivityTaskInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PollForActivityTask, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<PollForActivityTask, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PollForActivityTask
>
Trait Implementations§
source§impl Clone for PollForActivityTaskInput
impl Clone for PollForActivityTaskInput
source§fn clone(&self) -> PollForActivityTaskInput
fn clone(&self) -> PollForActivityTaskInput
Returns a copy 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 PartialEq<PollForActivityTaskInput> for PollForActivityTaskInput
impl PartialEq<PollForActivityTaskInput> for PollForActivityTaskInput
source§fn eq(&self, other: &PollForActivityTaskInput) -> bool
fn eq(&self, other: &PollForActivityTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PollForActivityTaskInput
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§
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