Amazon CodePipeline · Schema
PollForJobsInput
Represents the input of a PollForJobs action.
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation
Properties
| Name | Type | Description |
|---|---|---|
| actionTypeId | object | |
| maxBatchSize | object | |
| queryParam | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-poll-for-jobs-input-schema.json",
"title": "PollForJobsInput",
"description": "Represents the input of a <code>PollForJobs</code> action.",
"type": "object",
"properties": {
"actionTypeId": {
"allOf": [
{
"$ref": "#/components/schemas/ActionTypeId"
},
{
"description": "Represents information about an action type."
}
]
},
"maxBatchSize": {
"allOf": [
{
"$ref": "#/components/schemas/MaxBatchSize"
},
{
"description": "The maximum number of jobs to return in a poll for jobs call."
}
]
},
"queryParam": {
"allOf": [
{
"$ref": "#/components/schemas/QueryParamMap"
},
{
"description": "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."
}
]
}
},
"required": [
"actionTypeId"
]
}