/** Marshall the given parameter object, and output to a JSONWriter */
  public void marshall(BootstrapActionDetail bootstrapActionDetail, JSONWriter jsonWriter) {
    if (bootstrapActionDetail == null) {
      throw new AmazonClientException("Invalid argument passed to marshall(...)");
    }

    try {
      jsonWriter.object();

      if (bootstrapActionDetail.getBootstrapActionConfig() != null) {
        jsonWriter.key("BootstrapActionConfig");
        BootstrapActionConfigJsonMarshaller.getInstance()
            .marshall(bootstrapActionDetail.getBootstrapActionConfig(), jsonWriter);
      }

      jsonWriter.endObject();
    } catch (Throwable t) {
      throw new AmazonClientException("Unable to marshall request to JSON: " + t.getMessage(), t);
    }
  }
  public Request<ListInstanceGroupsRequest> marshall(
      ListInstanceGroupsRequest listInstanceGroupsRequest) {

    if (listInstanceGroupsRequest == null) {
      throw new AmazonClientException("Invalid argument passed to marshall(...)");
    }

    Request<ListInstanceGroupsRequest> request =
        new DefaultRequest<ListInstanceGroupsRequest>(
            listInstanceGroupsRequest, "AmazonElasticMapReduce");
    request.addHeader("X-Amz-Target", "ElasticMapReduce.ListInstanceGroups");

    request.setHttpMethod(HttpMethodName.POST);

    request.setResourcePath("");

    try {
      StringWriter stringWriter = new StringWriter();
      JSONWriter jsonWriter = new JSONWriter(stringWriter);

      jsonWriter.object();

      if (listInstanceGroupsRequest.getClusterId() != null) {
        jsonWriter.key("ClusterId").value(listInstanceGroupsRequest.getClusterId());
      }

      if (listInstanceGroupsRequest.getMarker() != null) {
        jsonWriter.key("Marker").value(listInstanceGroupsRequest.getMarker());
      }

      jsonWriter.endObject();

      String snippet = stringWriter.toString();
      byte[] content = snippet.getBytes(UTF8);
      request.setContent(new StringInputStream(snippet));
      request.addHeader("Content-Length", Integer.toString(content.length));
      request.addHeader("Content-Type", "application/x-amz-json-1.1");
    } catch (Throwable t) {
      throw new AmazonClientException("Unable to marshall request to JSON: " + t.getMessage(), t);
    }

    return request;
  }
  /** Marshall the given parameter object, and output to a JSONWriter */
  public void marshall(StepStateChangeReason stepStateChangeReason, JSONWriter jsonWriter) {
    if (stepStateChangeReason == null) {
      throw new AmazonClientException("Invalid argument passed to marshall(...)");
    }

    try {
      jsonWriter.object();

      if (stepStateChangeReason.getCode() != null) {
        jsonWriter.key("Code").value(stepStateChangeReason.getCode());
      }

      if (stepStateChangeReason.getMessage() != null) {
        jsonWriter.key("Message").value(stepStateChangeReason.getMessage());
      }

      jsonWriter.endObject();
    } catch (Throwable t) {
      throw new AmazonClientException("Unable to marshall request to JSON: " + t.getMessage(), t);
    }
  }
  public Request<SetTerminationProtectionRequest> marshall(
      SetTerminationProtectionRequest setTerminationProtectionRequest) {
    if (setTerminationProtectionRequest == null) {
      throw new AmazonClientException("Invalid argument passed to marshall(...)");
    }

    Request<SetTerminationProtectionRequest> request =
        new DefaultRequest<SetTerminationProtectionRequest>(
            setTerminationProtectionRequest, "AmazonElasticMapReduce");
    String target = "ElasticMapReduce.SetTerminationProtection";
    request.addHeader("X-Amz-Target", target);
    request.addHeader("Content-Type", "application/x-amz-json-1.1");

    request.setHttpMethod(HttpMethodName.POST);

    String uriResourcePath = "";

    uriResourcePath = uriResourcePath.replaceAll("//", "/");

    if (uriResourcePath.contains("?")) {
      String queryString = uriResourcePath.substring(uriResourcePath.indexOf("?") + 1);
      uriResourcePath = uriResourcePath.substring(0, uriResourcePath.indexOf("?"));

      for (String s : queryString.split("[;&]")) {
        String[] nameValuePair = s.split("=");
        if (nameValuePair.length == 2) {
          request.addParameter(nameValuePair[0], nameValuePair[1]);
        } else {
          request.addParameter(s, null);
        }
      }
    }

    request.setResourcePath(uriResourcePath);

    try {
      StringWriter stringWriter = new StringWriter();
      JSONWriter jsonWriter = new JSONWriter(stringWriter);

      jsonWriter.object();

      com.amazonaws.internal.ListWithAutoConstructFlag<String> jobFlowIdsList =
          (com.amazonaws.internal.ListWithAutoConstructFlag<String>)
              (setTerminationProtectionRequest.getJobFlowIds());
      if (jobFlowIdsList != null
          && !(jobFlowIdsList.isAutoConstruct() && jobFlowIdsList.isEmpty())) {

        jsonWriter.key("JobFlowIds");
        jsonWriter.array();

        for (String jobFlowIdsListValue : jobFlowIdsList) {
          if (jobFlowIdsListValue != null) {
            jsonWriter.value(jobFlowIdsListValue);
          }
        }
        jsonWriter.endArray();
      }
      if (setTerminationProtectionRequest.isTerminationProtected() != null) {
        jsonWriter
            .key("TerminationProtected")
            .value(setTerminationProtectionRequest.isTerminationProtected());
      }

      jsonWriter.endObject();

      String snippet = stringWriter.toString();
      byte[] content = snippet.getBytes("UTF-8");
      request.setContent(new StringInputStream(snippet));
      request.addHeader("Content-Length", Integer.toString(content.length));
    } catch (Throwable t) {
      throw new AmazonClientException("Unable to marshall request to JSON: " + t.getMessage(), t);
    }

    return request;
  }