/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of BundleInstance.See Also:
AWS
* API Reference
Information about the bundle task.
*/ inline const BundleTask& GetBundleTask() const{ return m_bundleTask; } /** *Information about the bundle task.
*/ inline void SetBundleTask(const BundleTask& value) { m_bundleTask = value; } /** *Information about the bundle task.
*/ inline void SetBundleTask(BundleTask&& value) { m_bundleTask = std::move(value); } /** *Information about the bundle task.
*/ inline BundleInstanceResponse& WithBundleTask(const BundleTask& value) { SetBundleTask(value); return *this;} /** *Information about the bundle task.
*/ inline BundleInstanceResponse& WithBundleTask(BundleTask&& value) { SetBundleTask(std::move(value)); return *this;} inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline BundleInstanceResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline BundleInstanceResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: BundleTask m_bundleTask; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws