#[non_exhaustive]pub struct PollForThirdPartyJobsInput {
pub action_type_id: Option<ActionTypeId>,
pub max_batch_size: Option<i32>,
}
Expand description
Represents the input of a PollForThirdPartyJobs
action.
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.action_type_id: Option<ActionTypeId>
Represents information about an action type.
max_batch_size: Option<i32>
The maximum number of jobs to return in a poll for jobs call.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PollForThirdPartyJobs, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PollForThirdPartyJobs, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PollForThirdPartyJobs
>
Creates a new builder-style object to manufacture PollForThirdPartyJobsInput
Represents information about an action type.
The maximum number of jobs to return in a poll for jobs call.
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 PollForThirdPartyJobsInput
impl Send for PollForThirdPartyJobsInput
impl Sync for PollForThirdPartyJobsInput
impl Unpin for PollForThirdPartyJobsInput
impl UnwindSafe for PollForThirdPartyJobsInput
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