예제 #1
0
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DeleteSecretResponse response = new DeleteSecretResponse();

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

            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("ARN", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.ARN = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("DeletionDate", targetDepth))
                {
                    var unmarshaller = DateTimeUnmarshaller.Instance;
                    response.DeletionDate = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("Name", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.Name = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return(response);
        }
예제 #2
0
        public static DeleteSecretResponse Unmarshall(UnmarshallerContext _ctx)
        {
            DeleteSecretResponse deleteSecretResponse = new DeleteSecretResponse();

            deleteSecretResponse.HttpResponse      = _ctx.HttpResponse;
            deleteSecretResponse.RequestId         = _ctx.StringValue("DeleteSecret.RequestId");
            deleteSecretResponse.SecretName        = _ctx.StringValue("DeleteSecret.SecretName");
            deleteSecretResponse.PlannedDeleteTime = _ctx.StringValue("DeleteSecret.PlannedDeleteTime");

            return(deleteSecretResponse);
        }