Amazon.IoT.AmazonIoTClient.DescribeCertificateAsync C# (CSharp) Метод

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

Gets information about the specified certificate.
/// An unexpected error has occurred. /// /// The request is not valid. /// /// The specified resource does not exist. /// /// The service is temporarily unavailable. /// /// The rate exceeds the limit. /// /// You are not authorized to perform this operation. ///
public DescribeCertificateAsync ( string certificateId, System cancellationToken = default(CancellationToken) ) : Task
certificateId string The ID of the certificate.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<DescribeCertificateResponse> DescribeCertificateAsync(string certificateId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new DescribeCertificateRequest();
            request.CertificateId = certificateId;
            return DescribeCertificateAsync(request, cancellationToken);
        }

Same methods

AmazonIoTClient::DescribeCertificateAsync ( DescribeCertificateRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonIoTClient