/** * 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 DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_DATABASEMIGRATIONSERVICE_API ModifyReplicationSubnetGroupResult { public: ModifyReplicationSubnetGroupResult(); ModifyReplicationSubnetGroupResult(const Aws::AmazonWebServiceResult& result); ModifyReplicationSubnetGroupResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The modified replication subnet group.

*/ inline const ReplicationSubnetGroup& GetReplicationSubnetGroup() const{ return m_replicationSubnetGroup; } /** *

The modified replication subnet group.

*/ inline void SetReplicationSubnetGroup(const ReplicationSubnetGroup& value) { m_replicationSubnetGroup = value; } /** *

The modified replication subnet group.

*/ inline void SetReplicationSubnetGroup(ReplicationSubnetGroup&& value) { m_replicationSubnetGroup = std::move(value); } /** *

The modified replication subnet group.

*/ inline ModifyReplicationSubnetGroupResult& WithReplicationSubnetGroup(const ReplicationSubnetGroup& value) { SetReplicationSubnetGroup(value); return *this;} /** *

The modified replication subnet group.

*/ inline ModifyReplicationSubnetGroupResult& WithReplicationSubnetGroup(ReplicationSubnetGroup&& value) { SetReplicationSubnetGroup(std::move(value)); return *this;} private: ReplicationSubnetGroup m_replicationSubnetGroup; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws