This is the response object from the DescribeResourceGroups operation.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeResourceGroupsResponse response = new DescribeResourceGroupsResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("failedItems", targetDepth))
                {
                    var unmarshaller = new DictionaryUnmarshaller<string, FailedItemDetails, StringUnmarshaller, FailedItemDetailsUnmarshaller>(StringUnmarshaller.Instance, FailedItemDetailsUnmarshaller.Instance);
                    response.FailedItems = unmarshaller.Unmarshall(context);
                    continue;
                }
                if (context.TestExpression("resourceGroups", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<ResourceGroup, ResourceGroupUnmarshaller>(ResourceGroupUnmarshaller.Instance);
                    response.ResourceGroups = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }