/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes an import snapshot task.See Also:
AWS
* API Reference
A description of the import snapshot task.
*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *A description of the import snapshot task.
*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *A description of the import snapshot task.
*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *A description of the import snapshot task.
*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *A description of the import snapshot task.
*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *A description of the import snapshot task.
*/ inline ImportSnapshotTask& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *A description of the import snapshot task.
*/ inline ImportSnapshotTask& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *A description of the import snapshot task.
*/ inline ImportSnapshotTask& WithDescription(const char* value) { SetDescription(value); return *this;} /** *The ID of the import snapshot task.
*/ inline const Aws::String& GetImportTaskId() const{ return m_importTaskId; } /** *The ID of the import snapshot task.
*/ inline bool ImportTaskIdHasBeenSet() const { return m_importTaskIdHasBeenSet; } /** *The ID of the import snapshot task.
*/ inline void SetImportTaskId(const Aws::String& value) { m_importTaskIdHasBeenSet = true; m_importTaskId = value; } /** *The ID of the import snapshot task.
*/ inline void SetImportTaskId(Aws::String&& value) { m_importTaskIdHasBeenSet = true; m_importTaskId = std::move(value); } /** *The ID of the import snapshot task.
*/ inline void SetImportTaskId(const char* value) { m_importTaskIdHasBeenSet = true; m_importTaskId.assign(value); } /** *The ID of the import snapshot task.
*/ inline ImportSnapshotTask& WithImportTaskId(const Aws::String& value) { SetImportTaskId(value); return *this;} /** *The ID of the import snapshot task.
*/ inline ImportSnapshotTask& WithImportTaskId(Aws::String&& value) { SetImportTaskId(std::move(value)); return *this;} /** *The ID of the import snapshot task.
*/ inline ImportSnapshotTask& WithImportTaskId(const char* value) { SetImportTaskId(value); return *this;} /** *Describes an import snapshot task.
*/ inline const SnapshotTaskDetail& GetSnapshotTaskDetail() const{ return m_snapshotTaskDetail; } /** *Describes an import snapshot task.
*/ inline bool SnapshotTaskDetailHasBeenSet() const { return m_snapshotTaskDetailHasBeenSet; } /** *Describes an import snapshot task.
*/ inline void SetSnapshotTaskDetail(const SnapshotTaskDetail& value) { m_snapshotTaskDetailHasBeenSet = true; m_snapshotTaskDetail = value; } /** *Describes an import snapshot task.
*/ inline void SetSnapshotTaskDetail(SnapshotTaskDetail&& value) { m_snapshotTaskDetailHasBeenSet = true; m_snapshotTaskDetail = std::move(value); } /** *Describes an import snapshot task.
*/ inline ImportSnapshotTask& WithSnapshotTaskDetail(const SnapshotTaskDetail& value) { SetSnapshotTaskDetail(value); return *this;} /** *Describes an import snapshot task.
*/ inline ImportSnapshotTask& WithSnapshotTaskDetail(SnapshotTaskDetail&& value) { SetSnapshotTaskDetail(std::move(value)); return *this;} /** *The tags for the import snapshot task.
*/ inline const Aws::VectorThe tags for the import snapshot task.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *The tags for the import snapshot task.
*/ inline void SetTags(const Aws::VectorThe tags for the import snapshot task.
*/ inline void SetTags(Aws::VectorThe tags for the import snapshot task.
*/ inline ImportSnapshotTask& WithTags(const Aws::VectorThe tags for the import snapshot task.
*/ inline ImportSnapshotTask& WithTags(Aws::VectorThe tags for the import snapshot task.
*/ inline ImportSnapshotTask& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *The tags for the import snapshot task.
*/ inline ImportSnapshotTask& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_description; bool m_descriptionHasBeenSet = false; Aws::String m_importTaskId; bool m_importTaskIdHasBeenSet = false; SnapshotTaskDetail m_snapshotTaskDetail; bool m_snapshotTaskDetailHasBeenSet = false; Aws::Vector