Amazon.CertificateManager.AmazonCertificateManagerClient.GetCertificate C# (CSharp) Метод

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

Retrieves an ACM Certificate and certificate chain for the certificate specified by an ARN. The chain is an ordered list of certificates that contains the root certificate, intermediate certificates of subordinate CAs, and the ACM Certificate. The certificate and certificate chain are base64 encoded. If you want to decode the certificate chain to see the individual certificate fields, you can use OpenSSL.

Currently, ACM Certificates can be used only with Elastic Load Balancing and Amazon CloudFront.

/// The requested Amazon Resource Name (ARN) does not refer to an existing resource. /// /// The certificate request is in process and the certificate in your account has not /// yet been issued. /// /// The specified certificate cannot be found in the caller's account, or the caller's /// account cannot be found. ///
public GetCertificate ( string certificateArn ) : GetCertificateResponse
certificateArn string String that contains a certificate ARN in the following format: arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces.
Результат Amazon.CertificateManager.Model.GetCertificateResponse
        public GetCertificateResponse GetCertificate(string certificateArn)
        {
            var request = new GetCertificateRequest();
            request.CertificateArn = certificateArn;
            return GetCertificate(request);
        }

Same methods

AmazonCertificateManagerClient::GetCertificate ( GetCertificateRequest request ) : GetCertificateResponse