public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
{
CreateConstraintResponse response = new CreateConstraintResponse();
context.Read();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("ConstraintDetail", targetDepth))
{
var unmarshaller = ConstraintDetailUnmarshaller.Instance;
response.ConstraintDetail = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("ConstraintParameters", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.ConstraintParameters = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("Status", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
response.Status = unmarshaller.Unmarshall(context);
continue;
}
}
return response;
}