/** * 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 CompletedMultipartUpload { public: AWS_S3_API CompletedMultipartUpload(); AWS_S3_API CompletedMultipartUpload(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API CompletedMultipartUpload& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_S3_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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

Array of CompletedPart data types.

If you do not supply a valid * Part with your request, the service sends back an HTTP 400 * response.

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