/**
* 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 DescribeRefreshSchemasStatusRequest& WithEndpointArn(const Aws::String& value) { SetEndpointArn(value); return *this;} /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline DescribeRefreshSchemasStatusRequest& WithEndpointArn(Aws::String&& value) { SetEndpointArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) string that uniquely identifies the * endpoint.
*/ inline DescribeRefreshSchemasStatusRequest& WithEndpointArn(const char* value) { SetEndpointArn(value); return *this;} private: Aws::String m_endpointArn; bool m_endpointArnHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws