예제 #1
0
        public void DeviceFarmGetJob()
        {
            #region getjob-example-1470928294268

            var client   = new AmazonDeviceFarmClient();
            var response = client.GetJob(new GetJobRequest
            {
                Arn = "arn:aws:devicefarm:us-west-2::job:123-456-EXAMPLE-GUID" // You can get the job ARN by using the list-jobs CLI command.
            });

            Job job = response.Job;

            #endregion
        }