示例#1
0
        public void DeviceFarmGetDevicePool()
        {
            #region getdevicepool-example-1470870873136

            var client   = new AmazonDeviceFarmClient();
            var response = client.GetDevicePool(new GetDevicePoolRequest
            {
                Arn = "arn:aws:devicefarm:us-west-2:123456789101:project:EXAMPLE-GUID-123-456" // You can obtain the project ARN by using the list-projects CLI command.
            });

            DevicePool devicePool = response.DevicePool;

            #endregion
        }