/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DynamoDB { namespace Model { /** *

Represents the properties of a global table.

See Also:

AWS * API Reference

*/ class GlobalTable { public: AWS_DYNAMODB_API GlobalTable(); AWS_DYNAMODB_API GlobalTable(Aws::Utils::Json::JsonView jsonValue); AWS_DYNAMODB_API GlobalTable& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DYNAMODB_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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 GlobalTable& WithGlobalTableName(const Aws::String& value) { SetGlobalTableName(value); return *this;} /** *

The global table name.

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

The global table name.

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

The Regions where the global table has replicas.

*/ inline const Aws::Vector& GetReplicationGroup() const{ return m_replicationGroup; } /** *

The Regions where the global table has replicas.

*/ inline bool ReplicationGroupHasBeenSet() const { return m_replicationGroupHasBeenSet; } /** *

The Regions where the global table has replicas.

*/ inline void SetReplicationGroup(const Aws::Vector& value) { m_replicationGroupHasBeenSet = true; m_replicationGroup = value; } /** *

The Regions where the global table has replicas.

*/ inline void SetReplicationGroup(Aws::Vector&& value) { m_replicationGroupHasBeenSet = true; m_replicationGroup = std::move(value); } /** *

The Regions where the global table has replicas.

*/ inline GlobalTable& WithReplicationGroup(const Aws::Vector& value) { SetReplicationGroup(value); return *this;} /** *

The Regions where the global table has replicas.

*/ inline GlobalTable& WithReplicationGroup(Aws::Vector&& value) { SetReplicationGroup(std::move(value)); return *this;} /** *

The Regions where the global table has replicas.

*/ inline GlobalTable& AddReplicationGroup(const Replica& value) { m_replicationGroupHasBeenSet = true; m_replicationGroup.push_back(value); return *this; } /** *

The Regions where the global table has replicas.

*/ inline GlobalTable& AddReplicationGroup(Replica&& value) { m_replicationGroupHasBeenSet = true; m_replicationGroup.push_back(std::move(value)); return *this; } private: Aws::String m_globalTableName; bool m_globalTableNameHasBeenSet = false; Aws::Vector m_replicationGroup; bool m_replicationGroupHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws