You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::RestoreTableFromClusterSnapshotMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RestoreTableFromClusterSnapshotMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  cluster_identifier: "String", # required
  snapshot_identifier: "String", # required
  source_database_name: "String", # required
  source_schema_name: "String",
  source_table_name: "String", # required
  target_database_name: "String",
  target_schema_name: "String",
  new_table_name: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_identifierString

The identifier of the Amazon Redshift cluster to restore the table to.

Returns:

  • (String)

    The identifier of the Amazon Redshift cluster to restore the table to.

#new_table_nameString

The name of the table to create as a result of the current request.

Returns:

  • (String)

    The name of the table to create as a result of the current request.

#snapshot_identifierString

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.

Returns:

  • (String)

    The identifier of the snapshot to restore the table from.

#source_database_nameString

The name of the source database that contains the table to restore from.

Returns:

  • (String)

    The name of the source database that contains the table to restore from.

#source_schema_nameString

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.

Returns:

  • (String)

    The name of the source schema that contains the table to restore from.

#source_table_nameString

The name of the source table to restore from.

Returns:

  • (String)

    The name of the source table to restore from.

#target_database_nameString

The name of the database to restore the table to.

Returns:

  • (String)

    The name of the database to restore the table to.

#target_schema_nameString

The name of the schema to restore the table to.

Returns:

  • (String)

    The name of the schema to restore the table to.