/** * 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 batch inference job.

See * Also:

AWS * API Reference

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

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline const S3DataConfig& GetS3DataDestination() const{ return m_s3DataDestination; } /** *

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline bool S3DataDestinationHasBeenSet() const { return m_s3DataDestinationHasBeenSet; } /** *

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline void SetS3DataDestination(const S3DataConfig& value) { m_s3DataDestinationHasBeenSet = true; m_s3DataDestination = value; } /** *

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline void SetS3DataDestination(S3DataConfig&& value) { m_s3DataDestinationHasBeenSet = true; m_s3DataDestination = std::move(value); } /** *

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline BatchInferenceJobOutput& WithS3DataDestination(const S3DataConfig& value) { SetS3DataDestination(value); return *this;} /** *

Information on the Amazon S3 bucket in which the batch inference job's output * is stored.

*/ inline BatchInferenceJobOutput& WithS3DataDestination(S3DataConfig&& value) { SetS3DataDestination(std::move(value)); return *this;} private: S3DataConfig m_s3DataDestination; bool m_s3DataDestinationHasBeenSet = false; }; } // namespace Model } // namespace Personalize } // namespace Aws