public static ImportCertificateResponse Unmarshall(UnmarshallerContext _ctx)
        {
            ImportCertificateResponse importCertificateResponse = new ImportCertificateResponse();

            importCertificateResponse.HttpResponse  = _ctx.HttpResponse;
            importCertificateResponse.RequestId     = _ctx.StringValue("ImportCertificate.RequestId");
            importCertificateResponse.CertificateId = _ctx.StringValue("ImportCertificate.CertificateId");
            importCertificateResponse.Arn           = _ctx.StringValue("ImportCertificate.Arn");

            return(importCertificateResponse);
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ImportCertificateResponse response = new ImportCertificateResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("Certificate", targetDepth))
                {
                    var unmarshaller = CertificateUnmarshaller.Instance;
                    response.Certificate = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }