/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The S3 location where Amazon Lookout for Vision saves model training
* files.See Also:
AWS
* API Reference
The S3 location for the output.
*/ inline const S3Location& GetS3Location() const{ return m_s3Location; } /** *The S3 location for the output.
*/ inline bool S3LocationHasBeenSet() const { return m_s3LocationHasBeenSet; } /** *The S3 location for the output.
*/ inline void SetS3Location(const S3Location& value) { m_s3LocationHasBeenSet = true; m_s3Location = value; } /** *The S3 location for the output.
*/ inline void SetS3Location(S3Location&& value) { m_s3LocationHasBeenSet = true; m_s3Location = std::move(value); } /** *The S3 location for the output.
*/ inline OutputConfig& WithS3Location(const S3Location& value) { SetS3Location(value); return *this;} /** *The S3 location for the output.
*/ inline OutputConfig& WithS3Location(S3Location&& value) { SetS3Location(std::move(value)); return *this;} private: S3Location m_s3Location; bool m_s3LocationHasBeenSet = false; }; } // namespace Model } // namespace LookoutforVision } // namespace Aws