Container for the parameters to the DescribeCertificate operation. Returns a list of the fields contained in the specified ACM Certificate. For example, this action returns the certificate status, a flag that indicates whether the certificate is associated with any other AWS service, and the date at which the certificate request was created. You specify the ACM Certificate on input by its Amazon Resource Name (ARN).
Inheritance: AmazonCertificateManagerRequest
        public object Execute(ExecutorContext context)
        {
            var cmdletContext = context as CmdletContext;
            // create request
            var request = new Amazon.CertificateManager.Model.DescribeCertificateRequest();

            if (cmdletContext.CertificateArn != null)
            {
                request.CertificateArn = cmdletContext.CertificateArn;
            }

            CmdletOutput output;

            // issue call
            var client = Client ?? CreateClient(_CurrentCredentials, _RegionEndpoint);

            try
            {
                var    response       = CallAWSServiceOperation(client, request);
                object pipelineOutput = null;
                pipelineOutput = cmdletContext.Select(response, this);
                output         = new CmdletOutput
                {
                    PipelineOutput  = pipelineOutput,
                    ServiceResponse = response
                };
            }
            catch (Exception e)
            {
                output = new CmdletOutput {
                    ErrorResponse = e
                };
            }

            return(output);
        }
 private Amazon.CertificateManager.Model.DescribeCertificateResponse CallAWSServiceOperation(IAmazonCertificateManager client, Amazon.CertificateManager.Model.DescribeCertificateRequest request)
 {
     Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Certificate Manager", "DescribeCertificate");
     try
     {
         #if DESKTOP
         return(client.DescribeCertificate(request));
         #elif CORECLR
         return(client.DescribeCertificateAsync(request).GetAwaiter().GetResult());
         #else
                 #error "Unknown build edition"
         #endif
     }
     catch (AmazonServiceException exc)
     {
         var webException = exc.InnerException as System.Net.WebException;
         if (webException != null)
         {
             throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException);
         }
         throw;
     }
 }
        /// <summary>
        /// Initiates the asynchronous execution of the DescribeCertificate operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeCertificate operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        public Task<DescribeCertificateResponse> DescribeCertificateAsync(DescribeCertificateRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new DescribeCertificateRequestMarshaller();
            var unmarshaller = DescribeCertificateResponseUnmarshaller.Instance;

            return InvokeAsync<DescribeCertificateRequest,DescribeCertificateResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }
 /// <summary>
 /// Returns a list of the fields contained in the specified certificate. For example,
 /// this function returns the certificate status, a flag that indicates whether the certificate
 /// is associated with any other AWS service, and the date at which the certificate request
 /// was created. The certificate is specified on input by its Amazon Resource Name (ARN).
 /// </summary>
 /// <param name="certificateArn"> String that contains a certificate ARN. The ARN must be of the form:   <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>   For more information about ARNs, see <a href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>. </param>
 /// <param name="cancellationToken">
 ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
 /// </param>
 /// 
 /// <returns>The response from the DescribeCertificate service method, as returned by CertificateManager.</returns>
 /// <exception cref="Amazon.CertificateManager.Model.InvalidArnException">
 /// The requested Amazon Resource Name (ARN) does not refer to an existing resource.
 /// </exception>
 /// <exception cref="Amazon.CertificateManager.Model.ResourceNotFoundException">
 /// The specified certificate cannot be found in the caller's account, or the caller's
 /// account cannot be found.
 /// </exception>
 public Task<DescribeCertificateResponse> DescribeCertificateAsync(string certificateArn, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new DescribeCertificateRequest();
     request.CertificateArn = certificateArn;
     return DescribeCertificateAsync(request, cancellationToken);
 }
        /// <summary>
        /// Returns a list of the fields contained in the specified certificate. For example,
        /// this function returns the certificate status, a flag that indicates whether the certificate
        /// is associated with any other AWS service, and the date at which the certificate request
        /// was created. The certificate is specified on input by its Amazon Resource Name (ARN).
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the DescribeCertificate service method.</param>
        /// 
        /// <returns>The response from the DescribeCertificate service method, as returned by CertificateManager.</returns>
        /// <exception cref="Amazon.CertificateManager.Model.InvalidArnException">
        /// The requested Amazon Resource Name (ARN) does not refer to an existing resource.
        /// </exception>
        /// <exception cref="Amazon.CertificateManager.Model.ResourceNotFoundException">
        /// The specified certificate cannot be found in the caller's account, or the caller's
        /// account cannot be found.
        /// </exception>
        public DescribeCertificateResponse DescribeCertificate(DescribeCertificateRequest request)
        {
            var marshaller = new DescribeCertificateRequestMarshaller();
            var unmarshaller = DescribeCertificateResponseUnmarshaller.Instance;

            return Invoke<DescribeCertificateRequest,DescribeCertificateResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// Returns a list of the fields contained in the specified certificate. For example,
 /// this function returns the certificate status, a flag that indicates whether the certificate
 /// is associated with any other AWS service, and the date at which the certificate request
 /// was created. The certificate is specified on input by its Amazon Resource Name (ARN).
 /// </summary>
 /// <param name="certificateArn"> String that contains a certificate ARN. The ARN must be of the form:   <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>   For more information about ARNs, see <a href="http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs) and AWS Service Namespaces</a>. </param>
 /// 
 /// <returns>The response from the DescribeCertificate service method, as returned by CertificateManager.</returns>
 /// <exception cref="Amazon.CertificateManager.Model.InvalidArnException">
 /// The requested Amazon Resource Name (ARN) does not refer to an existing resource.
 /// </exception>
 /// <exception cref="Amazon.CertificateManager.Model.ResourceNotFoundException">
 /// The specified certificate cannot be found in the caller's account, or the caller's
 /// account cannot be found.
 /// </exception>
 public DescribeCertificateResponse DescribeCertificate(string certificateArn)
 {
     var request = new DescribeCertificateRequest();
     request.CertificateArn = certificateArn;
     return DescribeCertificate(request);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the DescribeCertificate operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the DescribeCertificate operation on AmazonCertificateManagerClient.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndDescribeCertificate
        ///         operation.</returns>
        public IAsyncResult BeginDescribeCertificate(DescribeCertificateRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DescribeCertificateRequestMarshaller();
            var unmarshaller = DescribeCertificateResponseUnmarshaller.Instance;

            return BeginInvoke<DescribeCertificateRequest>(request, marshaller, unmarshaller,
                callback, state);
        }