/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace DynamoDB { namespace Model { /** */ class UpdateGlobalTableRequest : public DynamoDBRequest { public: AWS_DYNAMODB_API UpdateGlobalTableRequest(); // 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 "UpdateGlobalTable"; } AWS_DYNAMODB_API Aws::String SerializePayload() const override; AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The global table name.

*/ inline const Aws::String& GetGlobalTableName() const{ return m_globalTableName; } /** *

The global table name.

*/ inline bool GlobalTableNameHasBeenSet() const { return m_globalTableNameHasBeenSet; } /** *

The global table name.

*/ inline void SetGlobalTableName(const Aws::String& value) { m_globalTableNameHasBeenSet = true; m_globalTableName = value; } /** *

The global table name.

*/ inline void SetGlobalTableName(Aws::String&& value) { m_globalTableNameHasBeenSet = true; m_globalTableName = std::move(value); } /** *

The global table name.

*/ inline void SetGlobalTableName(const char* value) { m_globalTableNameHasBeenSet = true; m_globalTableName.assign(value); } /** *

The global table name.

*/ inline UpdateGlobalTableRequest& WithGlobalTableName(const Aws::String& value) { SetGlobalTableName(value); return *this;} /** *

The global table name.

*/ inline UpdateGlobalTableRequest& WithGlobalTableName(Aws::String&& value) { SetGlobalTableName(std::move(value)); return *this;} /** *

The global table name.

*/ inline UpdateGlobalTableRequest& WithGlobalTableName(const char* value) { SetGlobalTableName(value); return *this;} /** *

A list of Regions that should be added or removed from the global table.

*/ inline const Aws::Vector& GetReplicaUpdates() const{ return m_replicaUpdates; } /** *

A list of Regions that should be added or removed from the global table.

*/ inline bool ReplicaUpdatesHasBeenSet() const { return m_replicaUpdatesHasBeenSet; } /** *

A list of Regions that should be added or removed from the global table.

*/ inline void SetReplicaUpdates(const Aws::Vector& value) { m_replicaUpdatesHasBeenSet = true; m_replicaUpdates = value; } /** *

A list of Regions that should be added or removed from the global table.

*/ inline void SetReplicaUpdates(Aws::Vector&& value) { m_replicaUpdatesHasBeenSet = true; m_replicaUpdates = std::move(value); } /** *

A list of Regions that should be added or removed from the global table.

*/ inline UpdateGlobalTableRequest& WithReplicaUpdates(const Aws::Vector& value) { SetReplicaUpdates(value); return *this;} /** *

A list of Regions that should be added or removed from the global table.

*/ inline UpdateGlobalTableRequest& WithReplicaUpdates(Aws::Vector&& value) { SetReplicaUpdates(std::move(value)); return *this;} /** *

A list of Regions that should be added or removed from the global table.

*/ inline UpdateGlobalTableRequest& AddReplicaUpdates(const ReplicaUpdate& value) { m_replicaUpdatesHasBeenSet = true; m_replicaUpdates.push_back(value); return *this; } /** *

A list of Regions that should be added or removed from the global table.

*/ inline UpdateGlobalTableRequest& AddReplicaUpdates(ReplicaUpdate&& value) { m_replicaUpdatesHasBeenSet = true; m_replicaUpdates.push_back(std::move(value)); return *this; } private: Aws::String m_globalTableName; bool m_globalTableNameHasBeenSet = false; Aws::Vector m_replicaUpdates; bool m_replicaUpdatesHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws