/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for specifying if periodic QueryProgress
messages
* should be sent.See Also:
AWS
* API Reference
Specifies whether periodic QueryProgress frames should be sent. Valid values: * TRUE, FALSE. Default value: FALSE.
*/ inline bool GetEnabled() const{ return m_enabled; } /** *Specifies whether periodic QueryProgress frames should be sent. Valid values: * TRUE, FALSE. Default value: FALSE.
*/ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *Specifies whether periodic QueryProgress frames should be sent. Valid values: * TRUE, FALSE. Default value: FALSE.
*/ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *Specifies whether periodic QueryProgress frames should be sent. Valid values: * TRUE, FALSE. Default value: FALSE.
*/ inline RequestProgress& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws