/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The replication subnet group that was created.
*/ inline const ReplicationSubnetGroup& GetReplicationSubnetGroup() const{ return m_replicationSubnetGroup; } /** *The replication subnet group that was created.
*/ inline void SetReplicationSubnetGroup(const ReplicationSubnetGroup& value) { m_replicationSubnetGroup = value; } /** *The replication subnet group that was created.
*/ inline void SetReplicationSubnetGroup(ReplicationSubnetGroup&& value) { m_replicationSubnetGroup = std::move(value); } /** *The replication subnet group that was created.
*/ inline CreateReplicationSubnetGroupResult& WithReplicationSubnetGroup(const ReplicationSubnetGroup& value) { SetReplicationSubnetGroup(value); return *this;} /** *The replication subnet group that was created.
*/ inline CreateReplicationSubnetGroupResult& WithReplicationSubnetGroup(ReplicationSubnetGroup&& value) { SetReplicationSubnetGroup(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateReplicationSubnetGroupResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateReplicationSubnetGroupResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateReplicationSubnetGroupResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ReplicationSubnetGroup m_replicationSubnetGroup; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws