/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Neptune { namespace Model { /** */ class RemoveFromGlobalClusterRequest : public NeptuneRequest { public: AWS_NEPTUNE_API RemoveFromGlobalClusterRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "RemoveFromGlobalCluster"; } AWS_NEPTUNE_API Aws::String SerializePayload() const override; protected: AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline const Aws::String& GetGlobalClusterIdentifier() const{ return m_globalClusterIdentifier; } /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline bool GlobalClusterIdentifierHasBeenSet() const { return m_globalClusterIdentifierHasBeenSet; } /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline void SetGlobalClusterIdentifier(const Aws::String& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = value; } /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline void SetGlobalClusterIdentifier(Aws::String&& value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier = std::move(value); } /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline void SetGlobalClusterIdentifier(const char* value) { m_globalClusterIdentifierHasBeenSet = true; m_globalClusterIdentifier.assign(value); } /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(const Aws::String& value) { SetGlobalClusterIdentifier(value); return *this;} /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(Aws::String&& value) { SetGlobalClusterIdentifier(std::move(value)); return *this;} /** *

The identifier of the Neptune global database from which to detach the * specified Neptune DB cluster.

*/ inline RemoveFromGlobalClusterRequest& WithGlobalClusterIdentifier(const char* value) { SetGlobalClusterIdentifier(value); return *this;} /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline const Aws::String& GetDbClusterIdentifier() const{ return m_dbClusterIdentifier; } /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline bool DbClusterIdentifierHasBeenSet() const { return m_dbClusterIdentifierHasBeenSet; } /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline void SetDbClusterIdentifier(const Aws::String& value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier = value; } /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline void SetDbClusterIdentifier(Aws::String&& value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier = std::move(value); } /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline void SetDbClusterIdentifier(const char* value) { m_dbClusterIdentifierHasBeenSet = true; m_dbClusterIdentifier.assign(value); } /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(const Aws::String& value) { SetDbClusterIdentifier(value); return *this;} /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(Aws::String&& value) { SetDbClusterIdentifier(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) identifying the cluster to be detached from * the Neptune global database cluster.

*/ inline RemoveFromGlobalClusterRequest& WithDbClusterIdentifier(const char* value) { SetDbClusterIdentifier(value); return *this;} private: Aws::String m_globalClusterIdentifier; bool m_globalClusterIdentifierHasBeenSet = false; Aws::String m_dbClusterIdentifier; bool m_dbClusterIdentifierHasBeenSet = false; }; } // namespace Model } // namespace Neptune } // namespace Aws