/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #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 information on the generated snapshot file * groups.

See Also:

AWS * API Reference

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

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

A list of SnapshotFile objects.

*/ inline SnapshotJobResultFileGroup& AddFiles(SnapshotFile&& value) { m_filesHasBeenSet = true; m_files.push_back(std::move(value)); return *this; } /** *

A list of SnapshotJobS3Result objects.

*/ inline const Aws::Vector& GetS3Results() const{ return m_s3Results; } /** *

A list of SnapshotJobS3Result objects.

*/ inline bool S3ResultsHasBeenSet() const { return m_s3ResultsHasBeenSet; } /** *

A list of SnapshotJobS3Result objects.

*/ inline void SetS3Results(const Aws::Vector& value) { m_s3ResultsHasBeenSet = true; m_s3Results = value; } /** *

A list of SnapshotJobS3Result objects.

*/ inline void SetS3Results(Aws::Vector&& value) { m_s3ResultsHasBeenSet = true; m_s3Results = std::move(value); } /** *

A list of SnapshotJobS3Result objects.

*/ inline SnapshotJobResultFileGroup& WithS3Results(const Aws::Vector& value) { SetS3Results(value); return *this;} /** *

A list of SnapshotJobS3Result objects.

*/ inline SnapshotJobResultFileGroup& WithS3Results(Aws::Vector&& value) { SetS3Results(std::move(value)); return *this;} /** *

A list of SnapshotJobS3Result objects.

*/ inline SnapshotJobResultFileGroup& AddS3Results(const SnapshotJobS3Result& value) { m_s3ResultsHasBeenSet = true; m_s3Results.push_back(value); return *this; } /** *

A list of SnapshotJobS3Result objects.

*/ inline SnapshotJobResultFileGroup& AddS3Results(SnapshotJobS3Result&& value) { m_s3ResultsHasBeenSet = true; m_s3Results.push_back(std::move(value)); return *this; } private: Aws::Vector m_files; bool m_filesHasBeenSet = false; Aws::Vector m_s3Results; bool m_s3ResultsHasBeenSet = false; }; } // namespace Model } // namespace QuickSight } // namespace Aws