/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the CSV dataset format used when running a monitoring
* job.See Also:
AWS
* API Reference
Indicates if the CSV data has a header.
*/ inline bool GetHeader() const{ return m_header; } /** *Indicates if the CSV data has a header.
*/ inline bool HeaderHasBeenSet() const { return m_headerHasBeenSet; } /** *Indicates if the CSV data has a header.
*/ inline void SetHeader(bool value) { m_headerHasBeenSet = true; m_header = value; } /** *Indicates if the CSV data has a header.
*/ inline MonitoringCsvDatasetFormat& WithHeader(bool value) { SetHeader(value); return *this;} private: bool m_header; bool m_headerHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws