/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The output configuration parameters of a batch inference job.See
* Also:
AWS
* API Reference
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