Amazon.DeviceFarm.AmazonDeviceFarmClient.GetDevicePoolAsync C# (CSharp) Метод

GetDevicePoolAsync() публичный Метод

Gets information about a device pool.
/// An invalid argument was specified. /// /// A limit was exceeded. /// /// The specified entity was not found. /// /// There was a problem with the service account. ///
public GetDevicePoolAsync ( string arn, System cancellationToken = default(CancellationToken) ) : Task
arn string The device pool's ARN.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetDevicePoolResponse> GetDevicePoolAsync(string arn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetDevicePoolRequest();
            request.Arn = arn;
            return GetDevicePoolAsync(request, cancellationToken);
        }

Same methods

AmazonDeviceFarmClient::GetDevicePoolAsync ( Amazon.DeviceFarm.Model.GetDevicePoolRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonDeviceFarmClient