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

The output configuration parameters of a dataset export job.

See * Also:

AWS * API Reference

*/ class DatasetExportJobOutput { public: AWS_PERSONALIZE_API DatasetExportJobOutput(); AWS_PERSONALIZE_API DatasetExportJobOutput(Aws::Utils::Json::JsonView jsonValue); AWS_PERSONALIZE_API DatasetExportJobOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_PERSONALIZE_API Aws::Utils::Json::JsonValue Jsonize() const; inline const S3DataConfig& GetS3DataDestination() const{ return m_s3DataDestination; } inline bool S3DataDestinationHasBeenSet() const { return m_s3DataDestinationHasBeenSet; } inline void SetS3DataDestination(const S3DataConfig& value) { m_s3DataDestinationHasBeenSet = true; m_s3DataDestination = value; } inline void SetS3DataDestination(S3DataConfig&& value) { m_s3DataDestinationHasBeenSet = true; m_s3DataDestination = std::move(value); } inline DatasetExportJobOutput& WithS3DataDestination(const S3DataConfig& value) { SetS3DataDestination(value); return *this;} inline DatasetExportJobOutput& WithS3DataDestination(S3DataConfig&& value) { SetS3DataDestination(std::move(value)); return *this;} private: S3DataConfig m_s3DataDestination; bool m_s3DataDestinationHasBeenSet = false; }; } // namespace Model } // namespace Personalize } // namespace Aws