示例#1
0
        public void DeviceFarmDeleteDevicePool()
        {
            #region deletedevicepool-example-1470866975494

            var client   = new AmazonDeviceFarmClient();
            var response = client.DeleteDevicePool(new DeleteDevicePoolRequest
            {
                Arn = "arn:aws:devicefarm:us-west-2::devicepool:123-456-EXAMPLE-GUID" // You can get the device pool ARN by using the list-device-pools CLI command.
            });


            #endregion
        }