/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A complex type that contains the ChangeInfo
* element.See Also:
AWS
* API Reference
A complex type that contains information about the specified change * batch.
*/ inline const ChangeInfo& GetChangeInfo() const{ return m_changeInfo; } /** *A complex type that contains information about the specified change * batch.
*/ inline void SetChangeInfo(const ChangeInfo& value) { m_changeInfo = value; } /** *A complex type that contains information about the specified change * batch.
*/ inline void SetChangeInfo(ChangeInfo&& value) { m_changeInfo = std::move(value); } /** *A complex type that contains information about the specified change * batch.
*/ inline GetChangeResult& WithChangeInfo(const ChangeInfo& value) { SetChangeInfo(value); return *this;} /** *A complex type that contains information about the specified change * batch.
*/ inline GetChangeResult& WithChangeInfo(ChangeInfo&& value) { SetChangeInfo(std::move(value)); return *this;} private: ChangeInfo m_changeInfo; }; } // namespace Model } // namespace Route53 } // namespace Aws