72 lines
2.1 KiB
C++
72 lines
2.1 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/kinesisanalyticsv2/KinesisAnalyticsV2_EXPORTS.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
class JsonView;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace KinesisAnalyticsV2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Describes whether snapshots are enabled for a Java-based Kinesis Data
|
|
* Analytics application.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalyticsv2-2018-05-23/ApplicationSnapshotConfigurationDescription">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_KINESISANALYTICSV2_API ApplicationSnapshotConfigurationDescription
|
|
{
|
|
public:
|
|
ApplicationSnapshotConfigurationDescription();
|
|
ApplicationSnapshotConfigurationDescription(Aws::Utils::Json::JsonView jsonValue);
|
|
ApplicationSnapshotConfigurationDescription& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|
|
|
|
|
/**
|
|
* <p>Describes whether snapshots are enabled for a Java-based Kinesis Data
|
|
* Analytics application.</p>
|
|
*/
|
|
inline bool GetSnapshotsEnabled() const{ return m_snapshotsEnabled; }
|
|
|
|
/**
|
|
* <p>Describes whether snapshots are enabled for a Java-based Kinesis Data
|
|
* Analytics application.</p>
|
|
*/
|
|
inline bool SnapshotsEnabledHasBeenSet() const { return m_snapshotsEnabledHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Describes whether snapshots are enabled for a Java-based Kinesis Data
|
|
* Analytics application.</p>
|
|
*/
|
|
inline void SetSnapshotsEnabled(bool value) { m_snapshotsEnabledHasBeenSet = true; m_snapshotsEnabled = value; }
|
|
|
|
/**
|
|
* <p>Describes whether snapshots are enabled for a Java-based Kinesis Data
|
|
* Analytics application.</p>
|
|
*/
|
|
inline ApplicationSnapshotConfigurationDescription& WithSnapshotsEnabled(bool value) { SetSnapshotsEnabled(value); return *this;}
|
|
|
|
private:
|
|
|
|
bool m_snapshotsEnabled;
|
|
bool m_snapshotsEnabledHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace KinesisAnalyticsV2
|
|
} // namespace Aws
|