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