/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace S3Crt { namespace Model { /** *

Container for specifying if periodic QueryProgress messages * should be sent.

See Also:

AWS * API Reference

*/ class RequestProgress { public: AWS_S3CRT_API RequestProgress(); AWS_S3CRT_API RequestProgress(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CRT_API RequestProgress& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3CRT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

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 = false; }; } // namespace Model } // namespace S3Crt } // namespace Aws