/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the response parameters to the DeletePackage
* operation.See Also:
AWS
* API Reference
Information about the deleted package.
*/ inline const PackageDetails& GetPackageDetails() const{ return m_packageDetails; } /** *Information about the deleted package.
*/ inline void SetPackageDetails(const PackageDetails& value) { m_packageDetails = value; } /** *Information about the deleted package.
*/ inline void SetPackageDetails(PackageDetails&& value) { m_packageDetails = std::move(value); } /** *Information about the deleted package.
*/ inline DeletePackageResult& WithPackageDetails(const PackageDetails& value) { SetPackageDetails(value); return *this;} /** *Information about the deleted package.
*/ inline DeletePackageResult& WithPackageDetails(PackageDetails&& value) { SetPackageDetails(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DeletePackageResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DeletePackageResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DeletePackageResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: PackageDetails m_packageDetails; Aws::String m_requestId; }; } // namespace Model } // namespace OpenSearchService } // namespace Aws