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

Specifies configuration information for the input data for the inference, * including timestamp format and delimiter.

See Also:

AWS * API Reference

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

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline const Aws::String& GetTimestampFormat() const{ return m_timestampFormat; } /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline bool TimestampFormatHasBeenSet() const { return m_timestampFormatHasBeenSet; } /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline void SetTimestampFormat(const Aws::String& value) { m_timestampFormatHasBeenSet = true; m_timestampFormat = value; } /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline void SetTimestampFormat(Aws::String&& value) { m_timestampFormatHasBeenSet = true; m_timestampFormat = std::move(value); } /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline void SetTimestampFormat(const char* value) { m_timestampFormatHasBeenSet = true; m_timestampFormat.assign(value); } /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline InferenceInputNameConfiguration& WithTimestampFormat(const Aws::String& value) { SetTimestampFormat(value); return *this;} /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline InferenceInputNameConfiguration& WithTimestampFormat(Aws::String&& value) { SetTimestampFormat(std::move(value)); return *this;} /** *

The format of the timestamp, whether Epoch time, or standard, with or without * hyphens (-).

*/ inline InferenceInputNameConfiguration& WithTimestampFormat(const char* value) { SetTimestampFormat(value); return *this;} /** *

Indicates the delimiter character used between items in the data.

*/ inline const Aws::String& GetComponentTimestampDelimiter() const{ return m_componentTimestampDelimiter; } /** *

Indicates the delimiter character used between items in the data.

*/ inline bool ComponentTimestampDelimiterHasBeenSet() const { return m_componentTimestampDelimiterHasBeenSet; } /** *

Indicates the delimiter character used between items in the data.

*/ inline void SetComponentTimestampDelimiter(const Aws::String& value) { m_componentTimestampDelimiterHasBeenSet = true; m_componentTimestampDelimiter = value; } /** *

Indicates the delimiter character used between items in the data.

*/ inline void SetComponentTimestampDelimiter(Aws::String&& value) { m_componentTimestampDelimiterHasBeenSet = true; m_componentTimestampDelimiter = std::move(value); } /** *

Indicates the delimiter character used between items in the data.

*/ inline void SetComponentTimestampDelimiter(const char* value) { m_componentTimestampDelimiterHasBeenSet = true; m_componentTimestampDelimiter.assign(value); } /** *

Indicates the delimiter character used between items in the data.

*/ inline InferenceInputNameConfiguration& WithComponentTimestampDelimiter(const Aws::String& value) { SetComponentTimestampDelimiter(value); return *this;} /** *

Indicates the delimiter character used between items in the data.

*/ inline InferenceInputNameConfiguration& WithComponentTimestampDelimiter(Aws::String&& value) { SetComponentTimestampDelimiter(std::move(value)); return *this;} /** *

Indicates the delimiter character used between items in the data.

*/ inline InferenceInputNameConfiguration& WithComponentTimestampDelimiter(const char* value) { SetComponentTimestampDelimiter(value); return *this;} private: Aws::String m_timestampFormat; bool m_timestampFormatHasBeenSet = false; Aws::String m_componentTimestampDelimiter; bool m_componentTimestampDelimiterHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws