List Jobs By Consumable Resource
batch_list_jobs_by_consumable_resource | R Documentation |
Returns a list of Batch jobs that require a specific consumable resource¶
Description¶
Returns a list of Batch jobs that require a specific consumable resource.
Usage¶
batch_list_jobs_by_consumable_resource(consumableResource, filters,
maxResults, nextToken)
Arguments¶
consumableResource |
[required] The name or ARN of the consumable resource. |
filters |
The filters to apply to the job list query. If used, only those
jobs requiring the specified consumable resource
(
|
maxResults |
The maximum number of results returned by
|
nextToken |
The Treat this token as an opaque identifier that's only used to retrieve the next items in a list and not for other programmatic purposes. |
Value¶
A list with the following syntax:
list(
jobs = list(
list(
jobArn = "string",
jobQueueArn = "string",
jobName = "string",
jobDefinitionArn = "string",
shareIdentifier = "string",
jobStatus = "string",
quantity = 123,
statusReason = "string",
startedAt = 123,
createdAt = 123,
consumableResourceProperties = list(
consumableResourceList = list(
list(
consumableResource = "string",
quantity = 123
)
)
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_jobs_by_consumable_resource(
consumableResource = "string",
filters = list(
list(
name = "string",
values = list(
"string"
)
)
),
maxResults = 123,
nextToken = "string"
)