/* * 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.snowdevicemanagement.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 CreateTaskRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* A token ensuring that the action is called only once with the specified details. *
*/ private String clientToken; /** ** The task to be performed. Only one task is executed on a device at a time. *
*/ private Command command; /** ** A description of the task and its targets. *
*/ private String description; /** ** Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, * such as by purpose, owner, or environment. *
*/ private java.util.Map* A list of managed device IDs. *
*/ private java.util.List* A token ensuring that the action is called only once with the specified details. *
* * @param clientToken * A token ensuring that the action is called only once with the specified details. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** ** A token ensuring that the action is called only once with the specified details. *
* * @return A token ensuring that the action is called only once with the specified details. */ public String getClientToken() { return this.clientToken; } /** ** A token ensuring that the action is called only once with the specified details. *
* * @param clientToken * A token ensuring that the action is called only once with the specified details. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** ** The task to be performed. Only one task is executed on a device at a time. *
* * @param command * The task to be performed. Only one task is executed on a device at a time. */ public void setCommand(Command command) { this.command = command; } /** ** The task to be performed. Only one task is executed on a device at a time. *
* * @return The task to be performed. Only one task is executed on a device at a time. */ public Command getCommand() { return this.command; } /** ** The task to be performed. Only one task is executed on a device at a time. *
* * @param command * The task to be performed. Only one task is executed on a device at a time. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withCommand(Command command) { setCommand(command); return this; } /** ** A description of the task and its targets. *
* * @param description * A description of the task and its targets. */ public void setDescription(String description) { this.description = description; } /** ** A description of the task and its targets. *
* * @return A description of the task and its targets. */ public String getDescription() { return this.description; } /** ** A description of the task and its targets. *
* * @param description * A description of the task and its targets. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withDescription(String description) { setDescription(description); return this; } /** ** Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, * such as by purpose, owner, or environment. *
* * @return Optional metadata that you assign to a resource. You can use tags to categorize a resource in different * ways, such as by purpose, owner, or environment. */ public java.util.Map* Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, * such as by purpose, owner, or environment. *
* * @param tags * Optional metadata that you assign to a resource. You can use tags to categorize a resource in different * ways, such as by purpose, owner, or environment. */ public void setTags(java.util.Map* Optional metadata that you assign to a resource. You can use tags to categorize a resource in different ways, * such as by purpose, owner, or environment. *
* * @param tags * Optional metadata that you assign to a resource. You can use tags to categorize a resource in different * ways, such as by purpose, owner, or environment. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withTags(java.util.Map* A list of managed device IDs. *
* * @return A list of managed device IDs. */ public java.util.List* A list of managed device IDs. *
* * @param targets * A list of managed device IDs. */ public void setTargets(java.util.Collection* A list of managed device IDs. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTargets(java.util.Collection)} or {@link #withTargets(java.util.Collection)} if you want to override * the existing values. *
* * @param targets * A list of managed device IDs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withTargets(String... targets) { if (this.targets == null) { setTargets(new java.util.ArrayList* A list of managed device IDs. *
* * @param targets * A list of managed device IDs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateTaskRequest withTargets(java.util.Collection