/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A descriptor for a partition index in a table.See Also:
AWS
* API Reference
The name of the partition index.
*/ inline const Aws::String& GetIndexName() const{ return m_indexName; } /** *The name of the partition index.
*/ inline bool IndexNameHasBeenSet() const { return m_indexNameHasBeenSet; } /** *The name of the partition index.
*/ inline void SetIndexName(const Aws::String& value) { m_indexNameHasBeenSet = true; m_indexName = value; } /** *The name of the partition index.
*/ inline void SetIndexName(Aws::String&& value) { m_indexNameHasBeenSet = true; m_indexName = std::move(value); } /** *The name of the partition index.
*/ inline void SetIndexName(const char* value) { m_indexNameHasBeenSet = true; m_indexName.assign(value); } /** *The name of the partition index.
*/ inline PartitionIndexDescriptor& WithIndexName(const Aws::String& value) { SetIndexName(value); return *this;} /** *The name of the partition index.
*/ inline PartitionIndexDescriptor& WithIndexName(Aws::String&& value) { SetIndexName(std::move(value)); return *this;} /** *The name of the partition index.
*/ inline PartitionIndexDescriptor& WithIndexName(const char* value) { SetIndexName(value); return *this;} /** *A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
A list of one or more keys, as KeySchemaElement
structures, for
* the partition index.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
The status of the partition index.
The possible statuses are:
*CREATING: The index is being created. When an index is in a * CREATING state, the index or its table cannot be deleted.
ACTIVE: The index creation succeeds.
FAILED: The index * creation fails.
DELETING: The index is deleted from the list * of indexes.
A list of errors that can occur when registering partition indexes for an * existing table.
*/ inline const Aws::VectorA list of errors that can occur when registering partition indexes for an * existing table.
*/ inline bool BackfillErrorsHasBeenSet() const { return m_backfillErrorsHasBeenSet; } /** *A list of errors that can occur when registering partition indexes for an * existing table.
*/ inline void SetBackfillErrors(const Aws::VectorA list of errors that can occur when registering partition indexes for an * existing table.
*/ inline void SetBackfillErrors(Aws::VectorA list of errors that can occur when registering partition indexes for an * existing table.
*/ inline PartitionIndexDescriptor& WithBackfillErrors(const Aws::VectorA list of errors that can occur when registering partition indexes for an * existing table.
*/ inline PartitionIndexDescriptor& WithBackfillErrors(Aws::VectorA list of errors that can occur when registering partition indexes for an * existing table.
*/ inline PartitionIndexDescriptor& AddBackfillErrors(const BackfillError& value) { m_backfillErrorsHasBeenSet = true; m_backfillErrors.push_back(value); return *this; } /** *A list of errors that can occur when registering partition indexes for an * existing table.
*/ inline PartitionIndexDescriptor& AddBackfillErrors(BackfillError&& value) { m_backfillErrorsHasBeenSet = true; m_backfillErrors.push_back(std::move(value)); return *this; } private: Aws::String m_indexName; bool m_indexNameHasBeenSet = false; Aws::Vector