/**
* 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 Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline const Aws::String& GetEndpointArn() const{ return m_endpointArn; } /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline bool EndpointArnHasBeenSet() const { return m_endpointArnHasBeenSet; } /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline void SetEndpointArn(const Aws::String& value) { m_endpointArnHasBeenSet = true; m_endpointArn = value; } /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline void SetEndpointArn(Aws::String&& value) { m_endpointArnHasBeenSet = true; m_endpointArn = std::move(value); } /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline void SetEndpointArn(const char* value) { m_endpointArnHasBeenSet = true; m_endpointArn.assign(value); } /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline RefreshSchemasRequest& WithEndpointArn(const Aws::String& value) { SetEndpointArn(value); return *this;} /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline RefreshSchemasRequest& WithEndpointArn(Aws::String&& value) { SetEndpointArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline RefreshSchemasRequest& WithEndpointArn(const char* value) { SetEndpointArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline const Aws::String& GetReplicationInstanceArn() const{ return m_replicationInstanceArn; } /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline bool ReplicationInstanceArnHasBeenSet() const { return m_replicationInstanceArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline void SetReplicationInstanceArn(const Aws::String& value) { m_replicationInstanceArnHasBeenSet = true; m_replicationInstanceArn = value; } /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline void SetReplicationInstanceArn(Aws::String&& value) { m_replicationInstanceArnHasBeenSet = true; m_replicationInstanceArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline void SetReplicationInstanceArn(const char* value) { m_replicationInstanceArnHasBeenSet = true; m_replicationInstanceArn.assign(value); } /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline RefreshSchemasRequest& WithReplicationInstanceArn(const Aws::String& value) { SetReplicationInstanceArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline RefreshSchemasRequest& WithReplicationInstanceArn(Aws::String&& value) { SetReplicationInstanceArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the replication instance.
*/ inline RefreshSchemasRequest& WithReplicationInstanceArn(const char* value) { SetReplicationInstanceArn(value); return *this;} private: Aws::String m_endpointArn; bool m_endpointArnHasBeenSet = false; Aws::String m_replicationInstanceArn; bool m_replicationInstanceArnHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws