/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template 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& result); UpdateSubnetGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The subnet group that has been modified.

*/ inline const SubnetGroup& GetSubnetGroup() const{ return m_subnetGroup; } /** *

The subnet group that has been modified.

*/ inline void SetSubnetGroup(const SubnetGroup& value) { m_subnetGroup = value; } /** *

The subnet group that has been modified.

*/ inline void SetSubnetGroup(SubnetGroup&& value) { m_subnetGroup = std::move(value); } /** *

The subnet group that has been modified.

*/ inline UpdateSubnetGroupResult& WithSubnetGroup(const SubnetGroup& value) { SetSubnetGroup(value); return *this;} /** *

The subnet group that has been modified.

*/ inline UpdateSubnetGroupResult& WithSubnetGroup(SubnetGroup&& value) { SetSubnetGroup(std::move(value)); return *this;} private: SubnetGroup m_subnetGroup; }; } // namespace Model } // namespace DAX } // namespace Aws