Configuration for accessing Amazon ListHsms service
Inheritance: Amazon.CloudHSM.Model.ListHsmsResult
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            ListHsmsResponse response = new ListHsmsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("HsmList", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<string, StringUnmarshaller>(StringUnmarshaller.Instance);
                    response.HsmList = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("NextToken", targetDepth))
                {
                    var unmarshaller = StringUnmarshaller.Instance;
                    response.NextToken = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }