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

The container for the completed multipart upload details.

See * Also:

AWS * API Reference

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

Array of CompletedPart data types.

*/ inline const Aws::Vector& GetParts() const{ return m_parts; } /** *

Array of CompletedPart data types.

*/ inline bool PartsHasBeenSet() const { return m_partsHasBeenSet; } /** *

Array of CompletedPart data types.

*/ inline void SetParts(const Aws::Vector& value) { m_partsHasBeenSet = true; m_parts = value; } /** *

Array of CompletedPart data types.

*/ inline void SetParts(Aws::Vector&& value) { m_partsHasBeenSet = true; m_parts = std::move(value); } /** *

Array of CompletedPart data types.

*/ inline CompletedMultipartUpload& WithParts(const Aws::Vector& value) { SetParts(value); return *this;} /** *

Array of CompletedPart data types.

*/ inline CompletedMultipartUpload& WithParts(Aws::Vector&& value) { SetParts(std::move(value)); return *this;} /** *

Array of CompletedPart data types.

*/ inline CompletedMultipartUpload& AddParts(const CompletedPart& value) { m_partsHasBeenSet = true; m_parts.push_back(value); return *this; } /** *

Array of CompletedPart data types.

*/ inline CompletedMultipartUpload& AddParts(CompletedPart&& value) { m_partsHasBeenSet = true; m_parts.push_back(std::move(value)); return *this; } private: Aws::Vector m_parts; bool m_partsHasBeenSet; }; } // namespace Model } // namespace S3 } // namespace Aws