/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes whether snapshots are enabled for a Flink-based Kinesis Data
* Analytics application.See Also:
AWS
* API Reference
Describes whether snapshots are enabled for a Flink-based Kinesis Data * Analytics application.
*/ inline bool GetSnapshotsEnabled() const{ return m_snapshotsEnabled; } /** *Describes whether snapshots are enabled for a Flink-based Kinesis Data * Analytics application.
*/ inline bool SnapshotsEnabledHasBeenSet() const { return m_snapshotsEnabledHasBeenSet; } /** *Describes whether snapshots are enabled for a Flink-based Kinesis Data * Analytics application.
*/ inline void SetSnapshotsEnabled(bool value) { m_snapshotsEnabledHasBeenSet = true; m_snapshotsEnabled = value; } /** *Describes whether snapshots are enabled for a Flink-based Kinesis Data * Analytics application.
*/ inline ApplicationSnapshotConfiguration& WithSnapshotsEnabled(bool value) { SetSnapshotsEnabled(value); return *this;} private: bool m_snapshotsEnabled; bool m_snapshotsEnabledHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws