/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.cloudsearchdomain.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *

* Container for the parameters to the UploadDocuments request. *

*/ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UploadDocumentsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* A batch of documents formatted in JSON or HTML. *

*/ private java.io.InputStream documents; /** *

* The format of the batch you are uploading. Amazon CloudSearch supports two document batch formats: *

* */ private String contentType; private Long contentLength; /** *

* A batch of documents formatted in JSON or HTML. *

* * @param documents * A batch of documents formatted in JSON or HTML. */ public void setDocuments(java.io.InputStream documents) { this.documents = documents; } /** *

* A batch of documents formatted in JSON or HTML. *

* * @return A batch of documents formatted in JSON or HTML. */ public java.io.InputStream getDocuments() { return this.documents; } /** *

* A batch of documents formatted in JSON or HTML. *

* * @param documents * A batch of documents formatted in JSON or HTML. * @return Returns a reference to this object so that method calls can be chained together. */ public UploadDocumentsRequest withDocuments(java.io.InputStream documents) { setDocuments(documents); return this; } /** *

* The format of the batch you are uploading. Amazon CloudSearch supports two document batch formats: *

* * * @param contentType * The format of the batch you are uploading. Amazon CloudSearch supports two document batch formats:

*