Struct aws_sdk_swf::input::PollForActivityTaskInput
source · [−]#[non_exhaustive]pub struct PollForActivityTaskInput { /* private fields */ }
Implementations
sourceimpl 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PollForActivityTaskInput
.
sourceimpl 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
.
Trait Implementations
sourceimpl Clone for PollForActivityTaskInput
impl Clone for PollForActivityTaskInput
sourcefn clone(&self) -> PollForActivityTaskInput
fn clone(&self) -> PollForActivityTaskInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for PollForActivityTaskInput
impl Debug for PollForActivityTaskInput
sourceimpl PartialEq<PollForActivityTaskInput> for PollForActivityTaskInput
impl PartialEq<PollForActivityTaskInput> for PollForActivityTaskInput
sourcefn eq(&self, other: &PollForActivityTaskInput) -> bool
fn eq(&self, other: &PollForActivityTaskInput) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more