/** * 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 GlueDataBrew { namespace Model { /** *

Represents the JSON-specific options that define how input is to be * interpreted by Glue DataBrew.

See Also:

AWS * API Reference

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

A value that specifies whether JSON input contains embedded new line * characters.

*/ inline bool GetMultiLine() const{ return m_multiLine; } /** *

A value that specifies whether JSON input contains embedded new line * characters.

*/ inline bool MultiLineHasBeenSet() const { return m_multiLineHasBeenSet; } /** *

A value that specifies whether JSON input contains embedded new line * characters.

*/ inline void SetMultiLine(bool value) { m_multiLineHasBeenSet = true; m_multiLine = value; } /** *

A value that specifies whether JSON input contains embedded new line * characters.

*/ inline JsonOptions& WithMultiLine(bool value) { SetMultiLine(value); return *this;} private: bool m_multiLine; bool m_multiLineHasBeenSet = false; }; } // namespace Model } // namespace GlueDataBrew } // namespace Aws