/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the JSON-specific options that define how input is to be
* interpreted by Glue DataBrew.See Also:
AWS
* API Reference
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