/* * 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.ec2.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* Describes an import snapshot task. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ImportSnapshotTask implements Serializable, Cloneable { /** ** A description of the import snapshot task. *
*/ private String description; /** ** The ID of the import snapshot task. *
*/ private String importTaskId; /** ** Describes an import snapshot task. *
*/ private SnapshotTaskDetail snapshotTaskDetail; /** ** The tags for the import snapshot task. *
*/ private com.amazonaws.internal.SdkInternalList* A description of the import snapshot task. *
* * @param description * A description of the import snapshot task. */ public void setDescription(String description) { this.description = description; } /** ** A description of the import snapshot task. *
* * @return A description of the import snapshot task. */ public String getDescription() { return this.description; } /** ** A description of the import snapshot task. *
* * @param description * A description of the import snapshot task. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportSnapshotTask withDescription(String description) { setDescription(description); return this; } /** ** The ID of the import snapshot task. *
* * @param importTaskId * The ID of the import snapshot task. */ public void setImportTaskId(String importTaskId) { this.importTaskId = importTaskId; } /** ** The ID of the import snapshot task. *
* * @return The ID of the import snapshot task. */ public String getImportTaskId() { return this.importTaskId; } /** ** The ID of the import snapshot task. *
* * @param importTaskId * The ID of the import snapshot task. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportSnapshotTask withImportTaskId(String importTaskId) { setImportTaskId(importTaskId); return this; } /** ** Describes an import snapshot task. *
* * @param snapshotTaskDetail * Describes an import snapshot task. */ public void setSnapshotTaskDetail(SnapshotTaskDetail snapshotTaskDetail) { this.snapshotTaskDetail = snapshotTaskDetail; } /** ** Describes an import snapshot task. *
* * @return Describes an import snapshot task. */ public SnapshotTaskDetail getSnapshotTaskDetail() { return this.snapshotTaskDetail; } /** ** Describes an import snapshot task. *
* * @param snapshotTaskDetail * Describes an import snapshot task. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportSnapshotTask withSnapshotTaskDetail(SnapshotTaskDetail snapshotTaskDetail) { setSnapshotTaskDetail(snapshotTaskDetail); return this; } /** ** The tags for the import snapshot task. *
* * @return The tags for the import snapshot task. */ public java.util.List* The tags for the import snapshot task. *
* * @param tags * The tags for the import snapshot task. */ public void setTags(java.util.Collection* The tags for the import snapshot task. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The tags for the import snapshot task. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportSnapshotTask withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* The tags for the import snapshot task. *
* * @param tags * The tags for the import snapshot task. * @return Returns a reference to this object so that method calls can be chained together. */ public ImportSnapshotTask withTags(java.util.Collection