73 lines
2.0 KiB
C
73 lines
2.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/appmesh/AppMesh_EXPORTS.h>
|
|||
|
|
#include <aws/appmesh/model/VirtualServiceData.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
class AmazonWebServiceResult;
|
|||
|
|
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace AppMesh
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
/**
|
|||
|
|
* <p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualServiceOutput">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_APPMESH_API UpdateVirtualServiceResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateVirtualServiceResult();
|
|||
|
|
UpdateVirtualServiceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateVirtualServiceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the virtual service that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline const VirtualServiceData& GetVirtualService() const{ return m_virtualService; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the virtual service that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVirtualService(const VirtualServiceData& value) { m_virtualService = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the virtual service that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetVirtualService(VirtualServiceData&& value) { m_virtualService = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the virtual service that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateVirtualServiceResult& WithVirtualService(const VirtualServiceData& value) { SetVirtualService(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the virtual service that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateVirtualServiceResult& WithVirtualService(VirtualServiceData&& value) { SetVirtualService(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
VirtualServiceData m_virtualService;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace AppMesh
|
|||
|
|
} // namespace Aws
|