/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the data format when records are written to the destination. For
* more information, see Configuring
* Application Output. See Also:
AWS
* API Reference
Specifies the format of the records on the output stream.
*/ inline const RecordFormatType& GetRecordFormatType() const{ return m_recordFormatType; } /** *Specifies the format of the records on the output stream.
*/ inline bool RecordFormatTypeHasBeenSet() const { return m_recordFormatTypeHasBeenSet; } /** *Specifies the format of the records on the output stream.
*/ inline void SetRecordFormatType(const RecordFormatType& value) { m_recordFormatTypeHasBeenSet = true; m_recordFormatType = value; } /** *Specifies the format of the records on the output stream.
*/ inline void SetRecordFormatType(RecordFormatType&& value) { m_recordFormatTypeHasBeenSet = true; m_recordFormatType = std::move(value); } /** *Specifies the format of the records on the output stream.
*/ inline DestinationSchema& WithRecordFormatType(const RecordFormatType& value) { SetRecordFormatType(value); return *this;} /** *Specifies the format of the records on the output stream.
*/ inline DestinationSchema& WithRecordFormatType(RecordFormatType&& value) { SetRecordFormatType(std::move(value)); return *this;} private: RecordFormatType m_recordFormatType; bool m_recordFormatTypeHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws