View source: R/crew_definition_aws_batch.R
| crew_definition_aws_batch | R Documentation |
Create an R6 object to manage a job definition for AWS
Batch jobs.
crew_definition_aws_batch(
job_queue,
job_definition = paste0("crew-aws-batch-job-definition-", crew::crew_random_name()),
log_group = "/aws/batch/job",
config = NULL,
credentials = NULL,
endpoint = NULL,
region = NULL
)
job_queue |
Character vector of names of AWS Batch job queues.
As of |
job_definition |
Character of length 1, name of the AWS Batch
job definition. The job definition might or might not exist
at the time |
log_group |
Character of length 1,
AWS Batch CloudWatch log group to get job logs.
The default log group is often |
config |
Optional named list, |
credentials |
Optional named list. |
endpoint |
Optional character of length 1. |
region |
Character of length 1. |
An R6 job definition object.
In order for the AWS Batch crew job definition class to function
properly, your IAM policy needs permission to perform the
RegisterJobDefinition, DeregisterJobDefinition, and
DescribeJobDefinitions AWS Batch API calls.
For more information on AWS policies and permissions, please visit
https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html.
Other definition:
crew_class_definition_aws_batch
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.