/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes an import snapshot task.

See Also:

AWS * API Reference

*/ class ImportSnapshotTask { public: AWS_EC2_API ImportSnapshotTask(); AWS_EC2_API ImportSnapshotTask(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API ImportSnapshotTask& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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::Vector& GetTags() const{ return m_tags; } /** *

The 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::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

The tags for the import snapshot task.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

The tags for the import snapshot task.

*/ inline ImportSnapshotTask& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

The tags for the import snapshot task.

*/ inline ImportSnapshotTask& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

The 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 m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws