원클릭으로
aws-batch
Batch via AWS CLI v2 (`aws batch`). Jobs, job definitions, job queues, compute environments, scheduling policies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Batch via AWS CLI v2 (`aws batch`). Jobs, job definitions, job queues, compute environments, scheduling policies.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
IAM Access Analyzer via AWS CLI v2 (`aws accessanalyzer`). Analyzers, findings, archive rules, access previews, policy tools.
Private CA via AWS CLI v2 (`aws acm-pca`). Certificate authorities, certificates, audit reports, permissions, policies.
ACM via AWS CLI v2 (`aws acm`). Certificates, import/export, validation, tags, account configuration.
Managed Prometheus via AWS CLI v2 (`aws amp`). Workspaces, alert manager, rule groups, scrapers, logging, resource policies.
Amplify via AWS CLI v2 (`aws amplify`). Apps, branches, domain associations, jobs, deployments, webhooks.
API Gateway via AWS CLI v2 (`aws apigateway`). REST APIs, HTTP APIs, resources, methods, stages, authorizers, API keys, usage plans.
| name | aws-batch |
| description | Batch via AWS CLI v2 (`aws batch`). Jobs, job definitions, job queues, compute environments, scheduling policies. |
Complete reference for all aws batch subcommands in AWS CLI v2. Covers job submission and management, job definitions, job queues, compute environments, scheduling policies, consumable resources, service environments, and tagging.
aws batch create-compute-environment \
--compute-environment-name my-ce \
--type MANAGED \
--compute-resources type=EC2,minvCpus=0,maxvCpus=256,desiredvCpus=0,instanceTypes=optimal,subnets=subnet-abc123,securityGroupIds=sg-abc123,instanceRole=ecsInstanceRole
aws batch create-job-queue --job-queue-name my-queue \
--priority 1 \
--compute-environment-order order=1,computeEnvironment=my-ce
aws batch register-job-definition \
--job-definition-name my-job-def \
--type container \
--container-properties '{"image":"my-image:latest","vcpus":1,"memory":512}'
aws batch submit-job --job-name my-job \
--job-queue my-queue \
--job-definition my-job-def
aws batch list-jobs --job-queue my-queue --job-status RUNNING
aws batch describe-jobs --jobs job-id-1 job-id-2
aws batch cancel-job --job-id abc-123 --reason "No longer needed"
aws batch terminate-job --job-id abc-123 --reason "Timeout exceeded"
See index.md for the quick reference table and global options.
| Group | File | Commands |
|---|---|---|
| Jobs | jobs.md | submit-job, cancel-job, terminate-job, describe-jobs, list-jobs, get-job-queue-snapshot |
| Job Definitions | job-definitions.md | register-job-definition, deregister-job-definition, describe-job-definitions |
| Job Queues | job-queues.md | create-job-queue, update-job-queue, delete-job-queue, describe-job-queues |
| Compute Environments | compute-environments.md | create-compute-environment, update-compute-environment, delete-compute-environment, describe-compute-environments |
| Scheduling Policies | scheduling-policies.md | create-scheduling-policy, update-scheduling-policy, delete-scheduling-policy, describe-scheduling-policies, list-scheduling-policies |
| Consumable Resources | consumable-resources.md | create-consumable-resource, update-consumable-resource, delete-consumable-resource, describe-consumable-resource, list-consumable-resources, list-jobs-by-consumable-resource |
| Service Environments | service-environments.md | create-service-environment, update-service-environment, delete-service-environment, describe-service-environments, describe-service-job, submit-service-job, list-service-jobs, terminate-service-job |
| Tags | tags.md | tag-resource, untag-resource, list-tags-for-resource |