aws: update Korean translation; aws-{batch, cloud9},subcommand-mention: add Korean translation (#10756)
* aws: update Korean translation * aws-batch: add Korean translation * aws-cloud9: add Korean translation * subcommand-mention: add Korean translation --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
28
pages.ko/common/aws-batch.md
Normal file
28
pages.ko/common/aws-batch.md
Normal file
@@ -0,0 +1,28 @@
|
||||
# aws batch
|
||||
|
||||
> AWS Batch를 통해 배치 컴퓨팅 워크로드를 실행합니다.
|
||||
> 더 많은 정보: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/batch/index.html>.
|
||||
|
||||
- 실행 중인 배치 작업 목록:
|
||||
|
||||
`aws batch list-jobs --job-queue {{queue_name}}`
|
||||
|
||||
- 컴퓨팅 환경 생성:
|
||||
|
||||
`aws batch create-compute-environment --compute-environment-name {{compute_environment_name}} --type {{type}}`
|
||||
|
||||
- 배치 작업 큐 생성:
|
||||
|
||||
`aws batch create-job-queue --job-queue-name {{queue_name}} --priority {{priority}} --compute-environment-order {{compute_environment}}`
|
||||
|
||||
- 작업 제출:
|
||||
|
||||
`aws batch submit-job --job-name {{job_name}} --job-queue {{job_queue}} --job-definition {{job_definition}}`
|
||||
|
||||
- 배치 작업 목록 설명:
|
||||
|
||||
`aws batch describe-jobs --jobs {{jobs}}`
|
||||
|
||||
- 작업 취소:
|
||||
|
||||
`aws batch cancel-job --job-id {{job_id}} --reason {{reason}}`
|
Reference in New Issue
Block a user