/* * 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.mainframemodernization.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StartBatchJobRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The unique identifier of the application associated with this batch job. *
*/ private String applicationId; /** ** The unique identifier of the batch job. *
*/ private BatchJobIdentifier batchJobIdentifier; /** ** The collection of batch job parameters. For details about limits for keys and values, see Coding variables * in JCL. *
*/ private java.util.Map* The unique identifier of the application associated with this batch job. *
* * @param applicationId * The unique identifier of the application associated with this batch job. */ public void setApplicationId(String applicationId) { this.applicationId = applicationId; } /** ** The unique identifier of the application associated with this batch job. *
* * @return The unique identifier of the application associated with this batch job. */ public String getApplicationId() { return this.applicationId; } /** ** The unique identifier of the application associated with this batch job. *
* * @param applicationId * The unique identifier of the application associated with this batch job. * @return Returns a reference to this object so that method calls can be chained together. */ public StartBatchJobRequest withApplicationId(String applicationId) { setApplicationId(applicationId); return this; } /** ** The unique identifier of the batch job. *
* * @param batchJobIdentifier * The unique identifier of the batch job. */ public void setBatchJobIdentifier(BatchJobIdentifier batchJobIdentifier) { this.batchJobIdentifier = batchJobIdentifier; } /** ** The unique identifier of the batch job. *
* * @return The unique identifier of the batch job. */ public BatchJobIdentifier getBatchJobIdentifier() { return this.batchJobIdentifier; } /** ** The unique identifier of the batch job. *
* * @param batchJobIdentifier * The unique identifier of the batch job. * @return Returns a reference to this object so that method calls can be chained together. */ public StartBatchJobRequest withBatchJobIdentifier(BatchJobIdentifier batchJobIdentifier) { setBatchJobIdentifier(batchJobIdentifier); return this; } /** ** The collection of batch job parameters. For details about limits for keys and values, see Coding variables * in JCL. *
* * @return The collection of batch job parameters. For details about limits for keys and values, see Coding * variables in JCL. */ public java.util.Map* The collection of batch job parameters. For details about limits for keys and values, see Coding variables * in JCL. *
* * @param jobParams * The collection of batch job parameters. For details about limits for keys and values, see Coding * variables in JCL. */ public void setJobParams(java.util.Map* The collection of batch job parameters. For details about limits for keys and values, see Coding variables * in JCL. *
* * @param jobParams * The collection of batch job parameters. For details about limits for keys and values, see Coding * variables in JCL. * @return Returns a reference to this object so that method calls can be chained together. */ public StartBatchJobRequest withJobParams(java.util.Map