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

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

Creates a 2048-bit RSA key pair and issues an X.509 certificate using the issued public key.

Note This is the only time AWS IoT issues the private key for this certificate, so it is important to keep it in a secure location.

/// An unexpected error has occurred. /// /// The request is not valid. /// /// The service is temporarily unavailable. /// /// The rate exceeds the limit. /// /// You are not authorized to perform this operation. ///
public CreateKeysAndCertificateAsync ( System cancellationToken = default(CancellationToken) ) : Task
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<CreateKeysAndCertificateResponse> CreateKeysAndCertificateAsync(System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new CreateKeysAndCertificateRequest();
            return CreateKeysAndCertificateAsync(request, cancellationToken);
        }

Same methods

AmazonIoTClient::CreateKeysAndCertificateAsync ( CreateKeysAndCertificateRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonIoTClient::CreateKeysAndCertificateAsync ( bool setAsActive, System cancellationToken = default(CancellationToken) ) : Task
AmazonIoTClient