/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Glue { namespace Model { class AWS_GLUE_API GetPartitionResult { public: GetPartitionResult(); GetPartitionResult(const Aws::AmazonWebServiceResult& result); GetPartitionResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The requested information, in the form of a Partition * object.

*/ inline const Partition& GetPartition() const{ return m_partition; } /** *

The requested information, in the form of a Partition * object.

*/ inline void SetPartition(const Partition& value) { m_partition = value; } /** *

The requested information, in the form of a Partition * object.

*/ inline void SetPartition(Partition&& value) { m_partition = std::move(value); } /** *

The requested information, in the form of a Partition * object.

*/ inline GetPartitionResult& WithPartition(const Partition& value) { SetPartition(value); return *this;} /** *

The requested information, in the form of a Partition * object.

*/ inline GetPartitionResult& WithPartition(Partition&& value) { SetPartition(std::move(value)); return *this;} private: Partition m_partition; }; } // namespace Model } // namespace Glue } // namespace Aws