68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/dax/DAX_EXPORTS.h>
|
|
#include <aws/dax/model/SubnetGroup.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DAX
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_DAX_API UpdateSubnetGroupResult
|
|
{
|
|
public:
|
|
UpdateSubnetGroupResult();
|
|
UpdateSubnetGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateSubnetGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The subnet group that has been modified.</p>
|
|
*/
|
|
inline const SubnetGroup& GetSubnetGroup() const{ return m_subnetGroup; }
|
|
|
|
/**
|
|
* <p>The subnet group that has been modified.</p>
|
|
*/
|
|
inline void SetSubnetGroup(const SubnetGroup& value) { m_subnetGroup = value; }
|
|
|
|
/**
|
|
* <p>The subnet group that has been modified.</p>
|
|
*/
|
|
inline void SetSubnetGroup(SubnetGroup&& value) { m_subnetGroup = std::move(value); }
|
|
|
|
/**
|
|
* <p>The subnet group that has been modified.</p>
|
|
*/
|
|
inline UpdateSubnetGroupResult& WithSubnetGroup(const SubnetGroup& value) { SetSubnetGroup(value); return *this;}
|
|
|
|
/**
|
|
* <p>The subnet group that has been modified.</p>
|
|
*/
|
|
inline UpdateSubnetGroupResult& WithSubnetGroup(SubnetGroup&& value) { SetSubnetGroup(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
SubnetGroup m_subnetGroup;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DAX
|
|
} // namespace Aws
|