/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the JSON dataset format used when running a monitoring
* job.See Also:
AWS
* API Reference
Indicates if the file should be read as a json object per line.
*/ inline bool GetLine() const{ return m_line; } /** *Indicates if the file should be read as a json object per line.
*/ inline bool LineHasBeenSet() const { return m_lineHasBeenSet; } /** *Indicates if the file should be read as a json object per line.
*/ inline void SetLine(bool value) { m_lineHasBeenSet = true; m_line = value; } /** *Indicates if the file should be read as a json object per line.
*/ inline MonitoringJsonDatasetFormat& WithLine(bool value) { SetLine(value); return *this;} private: bool m_line; bool m_lineHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws