/** * 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 S3 { namespace Model { /** *

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

See Also:

AWS * API Reference

*/ class AWS_S3_API RequestProgress { public: RequestProgress(); RequestProgress(const Aws::Utils::Xml::XmlNode& xmlNode); RequestProgress& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); 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; }; } // namespace Model } // namespace S3 } // namespace Aws