/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the auto scaling configuration for a global table.See
* Also:
AWS
* API Reference
The name of the table.
*/ inline const Aws::String& GetTableName() const{ return m_tableName; } /** *The name of the table.
*/ inline bool TableNameHasBeenSet() const { return m_tableNameHasBeenSet; } /** *The name of the table.
*/ inline void SetTableName(const Aws::String& value) { m_tableNameHasBeenSet = true; m_tableName = value; } /** *The name of the table.
*/ inline void SetTableName(Aws::String&& value) { m_tableNameHasBeenSet = true; m_tableName = std::move(value); } /** *The name of the table.
*/ inline void SetTableName(const char* value) { m_tableNameHasBeenSet = true; m_tableName.assign(value); } /** *The name of the table.
*/ inline TableAutoScalingDescription& WithTableName(const Aws::String& value) { SetTableName(value); return *this;} /** *The name of the table.
*/ inline TableAutoScalingDescription& WithTableName(Aws::String&& value) { SetTableName(std::move(value)); return *this;} /** *The name of the table.
*/ inline TableAutoScalingDescription& WithTableName(const char* value) { SetTableName(value); return *this;} /** *The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
The current state of the table:
CREATING
- The
* table is being created.
UPDATING
- The table is
* being updated.
DELETING
- The table is being
* deleted.
ACTIVE
- The table is ready for
* use.
Represents replicas of the global table.
*/ inline const Aws::VectorRepresents replicas of the global table.
*/ inline bool ReplicasHasBeenSet() const { return m_replicasHasBeenSet; } /** *Represents replicas of the global table.
*/ inline void SetReplicas(const Aws::VectorRepresents replicas of the global table.
*/ inline void SetReplicas(Aws::VectorRepresents replicas of the global table.
*/ inline TableAutoScalingDescription& WithReplicas(const Aws::VectorRepresents replicas of the global table.
*/ inline TableAutoScalingDescription& WithReplicas(Aws::VectorRepresents replicas of the global table.
*/ inline TableAutoScalingDescription& AddReplicas(const ReplicaAutoScalingDescription& value) { m_replicasHasBeenSet = true; m_replicas.push_back(value); return *this; } /** *Represents replicas of the global table.
*/ inline TableAutoScalingDescription& AddReplicas(ReplicaAutoScalingDescription&& value) { m_replicasHasBeenSet = true; m_replicas.push_back(std::move(value)); return *this; } private: Aws::String m_tableName; bool m_tableNameHasBeenSet = false; TableStatus m_tableStatus; bool m_tableStatusHasBeenSet = false; Aws::Vector