All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.workspaces.model.TerminateWorkspacesRequest Maven / Gradle / Ivy

/*
 * Copyright 2010-2016 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.workspaces.model;

import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* Contains the inputs for the TerminateWorkspaces operation. *

*/ public class TerminateWorkspacesRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* An array of structures that specify the WorkSpaces to terminate. *

*/ private com.amazonaws.internal.SdkInternalList terminateWorkspaceRequests; /** *

* An array of structures that specify the WorkSpaces to terminate. *

* * @return An array of structures that specify the WorkSpaces to terminate. */ public java.util.List getTerminateWorkspaceRequests() { if (terminateWorkspaceRequests == null) { terminateWorkspaceRequests = new com.amazonaws.internal.SdkInternalList(); } return terminateWorkspaceRequests; } /** *

* An array of structures that specify the WorkSpaces to terminate. *

* * @param terminateWorkspaceRequests * An array of structures that specify the WorkSpaces to terminate. */ public void setTerminateWorkspaceRequests( java.util.Collection terminateWorkspaceRequests) { if (terminateWorkspaceRequests == null) { this.terminateWorkspaceRequests = null; return; } this.terminateWorkspaceRequests = new com.amazonaws.internal.SdkInternalList( terminateWorkspaceRequests); } /** *

* An array of structures that specify the WorkSpaces to terminate. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setTerminateWorkspaceRequests(java.util.Collection)} or * {@link #withTerminateWorkspaceRequests(java.util.Collection)} if you want * to override the existing values. *

* * @param terminateWorkspaceRequests * An array of structures that specify the WorkSpaces to terminate. * @return Returns a reference to this object so that method calls can be * chained together. */ public TerminateWorkspacesRequest withTerminateWorkspaceRequests( TerminateRequest... terminateWorkspaceRequests) { if (this.terminateWorkspaceRequests == null) { setTerminateWorkspaceRequests(new com.amazonaws.internal.SdkInternalList( terminateWorkspaceRequests.length)); } for (TerminateRequest ele : terminateWorkspaceRequests) { this.terminateWorkspaceRequests.add(ele); } return this; } /** *

* An array of structures that specify the WorkSpaces to terminate. *

* * @param terminateWorkspaceRequests * An array of structures that specify the WorkSpaces to terminate. * @return Returns a reference to this object so that method calls can be * chained together. */ public TerminateWorkspacesRequest withTerminateWorkspaceRequests( java.util.Collection terminateWorkspaceRequests) { setTerminateWorkspaceRequests(terminateWorkspaceRequests); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTerminateWorkspaceRequests() != null) sb.append("TerminateWorkspaceRequests: " + getTerminateWorkspaceRequests()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TerminateWorkspacesRequest == false) return false; TerminateWorkspacesRequest other = (TerminateWorkspacesRequest) obj; if (other.getTerminateWorkspaceRequests() == null ^ this.getTerminateWorkspaceRequests() == null) return false; if (other.getTerminateWorkspaceRequests() != null && other.getTerminateWorkspaceRequests().equals( this.getTerminateWorkspaceRequests()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTerminateWorkspaceRequests() == null) ? 0 : getTerminateWorkspaceRequests().hashCode()); return hashCode; } @Override public TerminateWorkspacesRequest clone() { return (TerminateWorkspacesRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy