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

A structure that contains the information on the snapshot * files.

See Also:

AWS * API Reference

*/ class SnapshotFileGroup { public: AWS_QUICKSIGHT_API SnapshotFileGroup(); AWS_QUICKSIGHT_API SnapshotFileGroup(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API SnapshotFileGroup& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_QUICKSIGHT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline const Aws::Vector& GetFiles() const{ return m_files; } /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline bool FilesHasBeenSet() const { return m_filesHasBeenSet; } /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline void SetFiles(const Aws::Vector& value) { m_filesHasBeenSet = true; m_files = value; } /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline void SetFiles(Aws::Vector&& value) { m_filesHasBeenSet = true; m_files = std::move(value); } /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline SnapshotFileGroup& WithFiles(const Aws::Vector& value) { SetFiles(value); return *this;} /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline SnapshotFileGroup& WithFiles(Aws::Vector&& value) { SetFiles(std::move(value)); return *this;} /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline SnapshotFileGroup& AddFiles(const SnapshotFile& value) { m_filesHasBeenSet = true; m_files.push_back(value); return *this; } /** *

A list of SnapshotFile objects that contain the information on * the snapshot files that need to be generated. This structure can hold 1 * configuration at a time.

*/ inline SnapshotFileGroup& AddFiles(SnapshotFile&& value) { m_filesHasBeenSet = true; m_files.push_back(std::move(value)); return *this; } private: Aws::Vector m_files; bool m_filesHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws