You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodePipeline::Types::PollForJobsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PollForJobsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  action_type_id: { # required
    category: "Source", # required, accepts Source, Build, Deploy, Test, Invoke, Approval
    owner: "AWS", # required, accepts AWS, ThirdParty, Custom
    provider: "ActionProvider", # required
    version: "Version", # required
  },
  max_batch_size: 1,
  query_param: {
    "ActionConfigurationKey" => "ActionConfigurationQueryableValue",
  },
}

Represents the input of a PollForJobs action.

Instance Attribute Summary collapse

Instance Attribute Details

#action_type_idTypes::ActionTypeId

Represents information about an action type.

Returns:

#max_batch_sizeInteger

The maximum number of jobs to return in a poll for jobs call.

Returns:

  • (Integer)

    The maximum number of jobs to return in a poll for jobs call.

#query_paramHash<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.

Returns:

  • (Hash<String,String>)

    A map of property names and values.