pub struct PollForJobsInput {
pub action_type_id: ActionTypeId,
pub max_batch_size: Option<i64>,
pub query_param: Option<HashMap<String, String>>,
}
Expand description
Represents the input of a PollForJobs
action.
Fields§
§action_type_id: ActionTypeId
Represents information about an action type.
max_batch_size: Option<i64>
The maximum number of jobs to return in a poll for jobs call.
query_param: Option<HashMap<String, String>>
A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value are returned.
Trait Implementations§
Source§impl Clone for PollForJobsInput
impl Clone for PollForJobsInput
Source§fn clone(&self) -> PollForJobsInput
fn clone(&self) -> PollForJobsInput
Returns a duplicate 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 PollForJobsInput
impl Debug for PollForJobsInput
Source§impl Default for PollForJobsInput
impl Default for PollForJobsInput
Source§fn default() -> PollForJobsInput
fn default() -> PollForJobsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PollForJobsInput
impl PartialEq for PollForJobsInput
Source§impl Serialize for PollForJobsInput
impl Serialize for PollForJobsInput
impl StructuralPartialEq for PollForJobsInput
Auto Trait Implementations§
impl Freeze for PollForJobsInput
impl RefUnwindSafe for PollForJobsInput
impl Send for PollForJobsInput
impl Sync for PollForJobsInput
impl Unpin for PollForJobsInput
impl UnwindSafe for PollForJobsInput
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