pub struct GetActivityTaskInput {
pub activity_arn: String,
pub worker_name: Option<String>,
}Fields§
§activity_arn: StringThe Amazon Resource Name (ARN) of the activity to retrieve tasks from (assigned when you create the task using CreateActivity.)
worker_name: Option<String>You can provide an arbitrary name in order to identify the worker that the task is assigned to. This name is used when it is logged in the execution history.
Trait Implementations§
Source§impl Clone for GetActivityTaskInput
impl Clone for GetActivityTaskInput
Source§fn clone(&self) -> GetActivityTaskInput
fn clone(&self) -> GetActivityTaskInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetActivityTaskInput
impl Debug for GetActivityTaskInput
Source§impl Default for GetActivityTaskInput
impl Default for GetActivityTaskInput
Source§fn default() -> GetActivityTaskInput
fn default() -> GetActivityTaskInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetActivityTaskInput
impl PartialEq for GetActivityTaskInput
Source§fn eq(&self, other: &GetActivityTaskInput) -> bool
fn eq(&self, other: &GetActivityTaskInput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetActivityTaskInput
impl Serialize for GetActivityTaskInput
impl StructuralPartialEq for GetActivityTaskInput
Auto Trait Implementations§
impl Freeze for GetActivityTaskInput
impl RefUnwindSafe for GetActivityTaskInput
impl Send for GetActivityTaskInput
impl Sync for GetActivityTaskInput
impl Unpin for GetActivityTaskInput
impl UnsafeUnpin for GetActivityTaskInput
impl UnwindSafe for GetActivityTaskInput
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