예제 #1
0
        public void DeviceFarmGetTest()
        {
            #region to-get-information-about-a-specific-test-1471025744238

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

            Test test = response.Test;

            #endregion
        }