Exemplo n.º 1
0
        public void BatchSubmitJob()
        {
            #region to-submit-a-job-to-a-queue-1481154481673

            var client   = new AmazonBatchClient();
            var response = client.SubmitJob(new SubmitJobRequest
            {
                JobDefinition = "sleep60",
                JobName       = "example",
                JobQueue      = "HighPriority"
            });

            string jobId   = response.JobId;
            string jobName = response.JobName;

            #endregion
        }