/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline const Aws::String& GetClusterIdentifier() const{ return m_clusterIdentifier; } /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; } /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline void SetClusterIdentifier(const Aws::String& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = value; } /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline void SetClusterIdentifier(Aws::String&& value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier = std::move(value); } /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline void SetClusterIdentifier(const char* value) { m_clusterIdentifierHasBeenSet = true; m_clusterIdentifier.assign(value); } /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithClusterIdentifier(const Aws::String& value) { SetClusterIdentifier(value); return *this;} /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithClusterIdentifier(Aws::String&& value) { SetClusterIdentifier(std::move(value)); return *this;} /** *The identifier of the Amazon Redshift cluster to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithClusterIdentifier(const char* value) { SetClusterIdentifier(value); return *this;} /** *The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The identifier of the snapshot to restore the table from. This snapshot must
* have been created from the Amazon Redshift cluster specified by the
* ClusterIdentifier
parameter.
The name of the source database that contains the table to restore from.
*/ inline const Aws::String& GetSourceDatabaseName() const{ return m_sourceDatabaseName; } /** *The name of the source database that contains the table to restore from.
*/ inline bool SourceDatabaseNameHasBeenSet() const { return m_sourceDatabaseNameHasBeenSet; } /** *The name of the source database that contains the table to restore from.
*/ inline void SetSourceDatabaseName(const Aws::String& value) { m_sourceDatabaseNameHasBeenSet = true; m_sourceDatabaseName = value; } /** *The name of the source database that contains the table to restore from.
*/ inline void SetSourceDatabaseName(Aws::String&& value) { m_sourceDatabaseNameHasBeenSet = true; m_sourceDatabaseName = std::move(value); } /** *The name of the source database that contains the table to restore from.
*/ inline void SetSourceDatabaseName(const char* value) { m_sourceDatabaseNameHasBeenSet = true; m_sourceDatabaseName.assign(value); } /** *The name of the source database that contains the table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceDatabaseName(const Aws::String& value) { SetSourceDatabaseName(value); return *this;} /** *The name of the source database that contains the table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceDatabaseName(Aws::String&& value) { SetSourceDatabaseName(std::move(value)); return *this;} /** *The name of the source database that contains the table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceDatabaseName(const char* value) { SetSourceDatabaseName(value); return *this;} /** *The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source schema that contains the table to restore from. If you
* do not specify a SourceSchemaName
value, the default is
* public
.
The name of the source table to restore from.
*/ inline const Aws::String& GetSourceTableName() const{ return m_sourceTableName; } /** *The name of the source table to restore from.
*/ inline bool SourceTableNameHasBeenSet() const { return m_sourceTableNameHasBeenSet; } /** *The name of the source table to restore from.
*/ inline void SetSourceTableName(const Aws::String& value) { m_sourceTableNameHasBeenSet = true; m_sourceTableName = value; } /** *The name of the source table to restore from.
*/ inline void SetSourceTableName(Aws::String&& value) { m_sourceTableNameHasBeenSet = true; m_sourceTableName = std::move(value); } /** *The name of the source table to restore from.
*/ inline void SetSourceTableName(const char* value) { m_sourceTableNameHasBeenSet = true; m_sourceTableName.assign(value); } /** *The name of the source table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceTableName(const Aws::String& value) { SetSourceTableName(value); return *this;} /** *The name of the source table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceTableName(Aws::String&& value) { SetSourceTableName(std::move(value)); return *this;} /** *The name of the source table to restore from.
*/ inline RestoreTableFromClusterSnapshotRequest& WithSourceTableName(const char* value) { SetSourceTableName(value); return *this;} /** *The name of the database to restore the table to.
*/ inline const Aws::String& GetTargetDatabaseName() const{ return m_targetDatabaseName; } /** *The name of the database to restore the table to.
*/ inline bool TargetDatabaseNameHasBeenSet() const { return m_targetDatabaseNameHasBeenSet; } /** *The name of the database to restore the table to.
*/ inline void SetTargetDatabaseName(const Aws::String& value) { m_targetDatabaseNameHasBeenSet = true; m_targetDatabaseName = value; } /** *The name of the database to restore the table to.
*/ inline void SetTargetDatabaseName(Aws::String&& value) { m_targetDatabaseNameHasBeenSet = true; m_targetDatabaseName = std::move(value); } /** *The name of the database to restore the table to.
*/ inline void SetTargetDatabaseName(const char* value) { m_targetDatabaseNameHasBeenSet = true; m_targetDatabaseName.assign(value); } /** *The name of the database to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetDatabaseName(const Aws::String& value) { SetTargetDatabaseName(value); return *this;} /** *The name of the database to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetDatabaseName(Aws::String&& value) { SetTargetDatabaseName(std::move(value)); return *this;} /** *The name of the database to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetDatabaseName(const char* value) { SetTargetDatabaseName(value); return *this;} /** *The name of the schema to restore the table to.
*/ inline const Aws::String& GetTargetSchemaName() const{ return m_targetSchemaName; } /** *The name of the schema to restore the table to.
*/ inline bool TargetSchemaNameHasBeenSet() const { return m_targetSchemaNameHasBeenSet; } /** *The name of the schema to restore the table to.
*/ inline void SetTargetSchemaName(const Aws::String& value) { m_targetSchemaNameHasBeenSet = true; m_targetSchemaName = value; } /** *The name of the schema to restore the table to.
*/ inline void SetTargetSchemaName(Aws::String&& value) { m_targetSchemaNameHasBeenSet = true; m_targetSchemaName = std::move(value); } /** *The name of the schema to restore the table to.
*/ inline void SetTargetSchemaName(const char* value) { m_targetSchemaNameHasBeenSet = true; m_targetSchemaName.assign(value); } /** *The name of the schema to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetSchemaName(const Aws::String& value) { SetTargetSchemaName(value); return *this;} /** *The name of the schema to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetSchemaName(Aws::String&& value) { SetTargetSchemaName(std::move(value)); return *this;} /** *The name of the schema to restore the table to.
*/ inline RestoreTableFromClusterSnapshotRequest& WithTargetSchemaName(const char* value) { SetTargetSchemaName(value); return *this;} /** *The name of the table to create as a result of the current request.
*/ inline const Aws::String& GetNewTableName() const{ return m_newTableName; } /** *The name of the table to create as a result of the current request.
*/ inline bool NewTableNameHasBeenSet() const { return m_newTableNameHasBeenSet; } /** *The name of the table to create as a result of the current request.
*/ inline void SetNewTableName(const Aws::String& value) { m_newTableNameHasBeenSet = true; m_newTableName = value; } /** *The name of the table to create as a result of the current request.
*/ inline void SetNewTableName(Aws::String&& value) { m_newTableNameHasBeenSet = true; m_newTableName = std::move(value); } /** *The name of the table to create as a result of the current request.
*/ inline void SetNewTableName(const char* value) { m_newTableNameHasBeenSet = true; m_newTableName.assign(value); } /** *The name of the table to create as a result of the current request.
*/ inline RestoreTableFromClusterSnapshotRequest& WithNewTableName(const Aws::String& value) { SetNewTableName(value); return *this;} /** *The name of the table to create as a result of the current request.
*/ inline RestoreTableFromClusterSnapshotRequest& WithNewTableName(Aws::String&& value) { SetNewTableName(std::move(value)); return *this;} /** *The name of the table to create as a result of the current request.
*/ inline RestoreTableFromClusterSnapshotRequest& WithNewTableName(const char* value) { SetNewTableName(value); return *this;} /** *Indicates whether name identifiers for database, schema, and table are case
* sensitive. If true
, the names are case sensitive. If
* false
(default), the names are not case sensitive.
Indicates whether name identifiers for database, schema, and table are case
* sensitive. If true
, the names are case sensitive. If
* false
(default), the names are not case sensitive.
Indicates whether name identifiers for database, schema, and table are case
* sensitive. If true
, the names are case sensitive. If
* false
(default), the names are not case sensitive.
Indicates whether name identifiers for database, schema, and table are case
* sensitive. If true
, the names are case sensitive. If
* false
(default), the names are not case sensitive.