/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SageMaker { namespace Model { /** *

Represents the CSV dataset format used when running a monitoring * job.

See Also:

AWS * API Reference

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

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