@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AbstractAmazonKeyspacesAsync extends AbstractAmazonKeyspaces implements AmazonKeyspacesAsync
AmazonKeyspacesAsync. Convenient method forms pass through to the corresponding
overload that takes a request object and an AsyncHandler, which throws an
UnsupportedOperationException.ENDPOINT_PREFIX| Modifier and Type | Method and Description |
|---|---|
Future<CreateKeyspaceResult> |
createKeyspaceAsync(CreateKeyspaceRequest request)
The
CreateKeyspace operation adds a new keyspace to your account. |
Future<CreateKeyspaceResult> |
createKeyspaceAsync(CreateKeyspaceRequest request,
AsyncHandler<CreateKeyspaceRequest,CreateKeyspaceResult> asyncHandler)
The
CreateKeyspace operation adds a new keyspace to your account. |
Future<CreateTableResult> |
createTableAsync(CreateTableRequest request)
The
CreateTable operation adds a new table to the specified keyspace. |
Future<CreateTableResult> |
createTableAsync(CreateTableRequest request,
AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
The
CreateTable operation adds a new table to the specified keyspace. |
Future<DeleteKeyspaceResult> |
deleteKeyspaceAsync(DeleteKeyspaceRequest request)
The
DeleteKeyspace operation deletes a keyspace and all of its tables. |
Future<DeleteKeyspaceResult> |
deleteKeyspaceAsync(DeleteKeyspaceRequest request,
AsyncHandler<DeleteKeyspaceRequest,DeleteKeyspaceResult> asyncHandler)
The
DeleteKeyspace operation deletes a keyspace and all of its tables. |
Future<DeleteTableResult> |
deleteTableAsync(DeleteTableRequest request)
The
DeleteTable operation deletes a table and all of its data. |
Future<DeleteTableResult> |
deleteTableAsync(DeleteTableRequest request,
AsyncHandler<DeleteTableRequest,DeleteTableResult> asyncHandler)
The
DeleteTable operation deletes a table and all of its data. |
Future<GetKeyspaceResult> |
getKeyspaceAsync(GetKeyspaceRequest request)
Returns the name and the Amazon Resource Name (ARN) of the specified table.
|
Future<GetKeyspaceResult> |
getKeyspaceAsync(GetKeyspaceRequest request,
AsyncHandler<GetKeyspaceRequest,GetKeyspaceResult> asyncHandler)
Returns the name and the Amazon Resource Name (ARN) of the specified table.
|
Future<GetTableResult> |
getTableAsync(GetTableRequest request)
Returns information about the table, including the table's name and current status, the keyspace name,
configuration settings, and metadata.
|
Future<GetTableResult> |
getTableAsync(GetTableRequest request,
AsyncHandler<GetTableRequest,GetTableResult> asyncHandler)
Returns information about the table, including the table's name and current status, the keyspace name,
configuration settings, and metadata.
|
Future<ListKeyspacesResult> |
listKeyspacesAsync(ListKeyspacesRequest request)
Returns a list of keyspaces.
|
Future<ListKeyspacesResult> |
listKeyspacesAsync(ListKeyspacesRequest request,
AsyncHandler<ListKeyspacesRequest,ListKeyspacesResult> asyncHandler)
Returns a list of keyspaces.
|
Future<ListTablesResult> |
listTablesAsync(ListTablesRequest request)
Returns a list of tables for a specified keyspace.
|
Future<ListTablesResult> |
listTablesAsync(ListTablesRequest request,
AsyncHandler<ListTablesRequest,ListTablesResult> asyncHandler)
Returns a list of tables for a specified keyspace.
|
Future<ListTagsForResourceResult> |
listTagsForResourceAsync(ListTagsForResourceRequest request)
Returns a list of all tags associated with the specified Amazon Keyspaces resource.
|
Future<ListTagsForResourceResult> |
listTagsForResourceAsync(ListTagsForResourceRequest request,
AsyncHandler<ListTagsForResourceRequest,ListTagsForResourceResult> asyncHandler)
Returns a list of all tags associated with the specified Amazon Keyspaces resource.
|
Future<RestoreTableResult> |
restoreTableAsync(RestoreTableRequest request)
Restores the specified table to the specified point in time within the
earliest_restorable_timestamp
and the current time. |
Future<RestoreTableResult> |
restoreTableAsync(RestoreTableRequest request,
AsyncHandler<RestoreTableRequest,RestoreTableResult> asyncHandler)
Restores the specified table to the specified point in time within the
earliest_restorable_timestamp
and the current time. |
Future<TagResourceResult> |
tagResourceAsync(TagResourceRequest request)
Associates a set of tags with a Amazon Keyspaces resource.
|
Future<TagResourceResult> |
tagResourceAsync(TagResourceRequest request,
AsyncHandler<TagResourceRequest,TagResourceResult> asyncHandler)
Associates a set of tags with a Amazon Keyspaces resource.
|
Future<UntagResourceResult> |
untagResourceAsync(UntagResourceRequest request)
Removes the association of tags from a Amazon Keyspaces resource.
|
Future<UntagResourceResult> |
untagResourceAsync(UntagResourceRequest request,
AsyncHandler<UntagResourceRequest,UntagResourceResult> asyncHandler)
Removes the association of tags from a Amazon Keyspaces resource.
|
Future<UpdateTableResult> |
updateTableAsync(UpdateTableRequest request)
Adds new columns to the table or updates one of the table's settings, for example capacity mode, encryption,
point-in-time recovery, or ttl settings.
|
Future<UpdateTableResult> |
updateTableAsync(UpdateTableRequest request,
AsyncHandler<UpdateTableRequest,UpdateTableResult> asyncHandler)
Adds new columns to the table or updates one of the table's settings, for example capacity mode, encryption,
point-in-time recovery, or ttl settings.
|
createKeyspace, createTable, deleteKeyspace, deleteTable, getCachedResponseMetadata, getKeyspace, getTable, listKeyspaces, listTables, listTagsForResource, restoreTable, shutdown, tagResource, untagResource, updateTableequals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcreateKeyspace, createTable, deleteKeyspace, deleteTable, getCachedResponseMetadata, getKeyspace, getTable, listKeyspaces, listTables, listTagsForResource, restoreTable, shutdown, tagResource, untagResource, updateTablepublic Future<CreateKeyspaceResult> createKeyspaceAsync(CreateKeyspaceRequest request)
AmazonKeyspacesAsync
The CreateKeyspace operation adds a new keyspace to your account. In an Amazon Web Services account,
keyspace names must be unique within each Region.
CreateKeyspace is an asynchronous operation. You can monitor the creation status of the new keyspace
by using the GetKeyspace operation.
For more information, see Creating keyspaces in the Amazon Keyspaces Developer Guide.
createKeyspaceAsync in interface AmazonKeyspacesAsyncpublic Future<CreateKeyspaceResult> createKeyspaceAsync(CreateKeyspaceRequest request, AsyncHandler<CreateKeyspaceRequest,CreateKeyspaceResult> asyncHandler)
AmazonKeyspacesAsync
The CreateKeyspace operation adds a new keyspace to your account. In an Amazon Web Services account,
keyspace names must be unique within each Region.
CreateKeyspace is an asynchronous operation. You can monitor the creation status of the new keyspace
by using the GetKeyspace operation.
For more information, see Creating keyspaces in the Amazon Keyspaces Developer Guide.
createKeyspaceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<CreateTableResult> createTableAsync(CreateTableRequest request)
AmazonKeyspacesAsync
The CreateTable operation adds a new table to the specified keyspace. Within a keyspace, table names
must be unique.
CreateTable is an asynchronous operation. When the request is received, the status of the table is
set to CREATING. You can monitor the creation status of the new table by using the
GetTable operation, which returns the current status of the table. You can start using
a table when the status is ACTIVE.
For more information, see Creating tables in the Amazon Keyspaces Developer Guide.
createTableAsync in interface AmazonKeyspacesAsyncpublic Future<CreateTableResult> createTableAsync(CreateTableRequest request, AsyncHandler<CreateTableRequest,CreateTableResult> asyncHandler)
AmazonKeyspacesAsync
The CreateTable operation adds a new table to the specified keyspace. Within a keyspace, table names
must be unique.
CreateTable is an asynchronous operation. When the request is received, the status of the table is
set to CREATING. You can monitor the creation status of the new table by using the
GetTable operation, which returns the current status of the table. You can start using
a table when the status is ACTIVE.
For more information, see Creating tables in the Amazon Keyspaces Developer Guide.
createTableAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteKeyspaceResult> deleteKeyspaceAsync(DeleteKeyspaceRequest request)
AmazonKeyspacesAsync
The DeleteKeyspace operation deletes a keyspace and all of its tables.
deleteKeyspaceAsync in interface AmazonKeyspacesAsyncpublic Future<DeleteKeyspaceResult> deleteKeyspaceAsync(DeleteKeyspaceRequest request, AsyncHandler<DeleteKeyspaceRequest,DeleteKeyspaceResult> asyncHandler)
AmazonKeyspacesAsync
The DeleteKeyspace operation deletes a keyspace and all of its tables.
deleteKeyspaceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<DeleteTableResult> deleteTableAsync(DeleteTableRequest request)
AmazonKeyspacesAsync
The DeleteTable operation deletes a table and all of its data. After a DeleteTable
request is received, the specified table is in the DELETING state until Amazon Keyspaces completes
the deletion. If the table is in the ACTIVE state, you can delete it. If a table is either in the
CREATING or UPDATING states, then Amazon Keyspaces returns a
ResourceInUseException. If the specified table does not exist, Amazon Keyspaces returns a
ResourceNotFoundException. If the table is already in the DELETING state, no error is
returned.
deleteTableAsync in interface AmazonKeyspacesAsyncpublic Future<DeleteTableResult> deleteTableAsync(DeleteTableRequest request, AsyncHandler<DeleteTableRequest,DeleteTableResult> asyncHandler)
AmazonKeyspacesAsync
The DeleteTable operation deletes a table and all of its data. After a DeleteTable
request is received, the specified table is in the DELETING state until Amazon Keyspaces completes
the deletion. If the table is in the ACTIVE state, you can delete it. If a table is either in the
CREATING or UPDATING states, then Amazon Keyspaces returns a
ResourceInUseException. If the specified table does not exist, Amazon Keyspaces returns a
ResourceNotFoundException. If the table is already in the DELETING state, no error is
returned.
deleteTableAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<GetKeyspaceResult> getKeyspaceAsync(GetKeyspaceRequest request)
AmazonKeyspacesAsyncReturns the name and the Amazon Resource Name (ARN) of the specified table.
getKeyspaceAsync in interface AmazonKeyspacesAsyncpublic Future<GetKeyspaceResult> getKeyspaceAsync(GetKeyspaceRequest request, AsyncHandler<GetKeyspaceRequest,GetKeyspaceResult> asyncHandler)
AmazonKeyspacesAsyncReturns the name and the Amazon Resource Name (ARN) of the specified table.
getKeyspaceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<GetTableResult> getTableAsync(GetTableRequest request)
AmazonKeyspacesAsyncReturns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata.
To read table metadata using GetTable, Select action permissions for the table and
system tables are required to complete the operation.
getTableAsync in interface AmazonKeyspacesAsyncpublic Future<GetTableResult> getTableAsync(GetTableRequest request, AsyncHandler<GetTableRequest,GetTableResult> asyncHandler)
AmazonKeyspacesAsyncReturns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata.
To read table metadata using GetTable, Select action permissions for the table and
system tables are required to complete the operation.
getTableAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListKeyspacesResult> listKeyspacesAsync(ListKeyspacesRequest request)
AmazonKeyspacesAsyncReturns a list of keyspaces.
listKeyspacesAsync in interface AmazonKeyspacesAsyncpublic Future<ListKeyspacesResult> listKeyspacesAsync(ListKeyspacesRequest request, AsyncHandler<ListKeyspacesRequest,ListKeyspacesResult> asyncHandler)
AmazonKeyspacesAsyncReturns a list of keyspaces.
listKeyspacesAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListTablesResult> listTablesAsync(ListTablesRequest request)
AmazonKeyspacesAsyncReturns a list of tables for a specified keyspace.
listTablesAsync in interface AmazonKeyspacesAsyncpublic Future<ListTablesResult> listTablesAsync(ListTablesRequest request, AsyncHandler<ListTablesRequest,ListTablesResult> asyncHandler)
AmazonKeyspacesAsyncReturns a list of tables for a specified keyspace.
listTablesAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request)
AmazonKeyspacesAsyncReturns a list of all tags associated with the specified Amazon Keyspaces resource.
listTagsForResourceAsync in interface AmazonKeyspacesAsyncpublic Future<ListTagsForResourceResult> listTagsForResourceAsync(ListTagsForResourceRequest request, AsyncHandler<ListTagsForResourceRequest,ListTagsForResourceResult> asyncHandler)
AmazonKeyspacesAsyncReturns a list of all tags associated with the specified Amazon Keyspaces resource.
listTagsForResourceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<RestoreTableResult> restoreTableAsync(RestoreTableRequest request)
AmazonKeyspacesAsync
Restores the specified table to the specified point in time within the earliest_restorable_timestamp
and the current time. For more information about restore points, see Time window for PITR continuous backups in the Amazon Keyspaces Developer Guide.
Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account.
When you restore using point in time recovery, Amazon Keyspaces restores your source table's schema and data to
the state based on the selected timestamp (day:hour:minute:second) to a new table. The Time to Live
(TTL) settings are also restored to the state based on the selected timestamp.
In addition to the table's schema, data, and TTL settings, RestoreTable restores the capacity mode,
encryption, and point-in-time recovery settings from the source table. Unlike the table's schema data and TTL
settings, which are restored based on the selected timestamp, these settings are always restored based on the
table's settings as of the current time or when the table was deleted.
You can also overwrite these settings during restore:
• Read/write capacity mode
• Provisioned throughput capacity settings
• Point-in-time (PITR) settings
• Tags
For more information, see PITR restore settings in the Amazon Keyspaces Developer Guide.
Note that the following settings are not restored, and you must configure them manually for the new table:
• Automatic scaling policies (for tables that use provisioned capacity mode)
• Identity and Access Management (IAM) policies
• Amazon CloudWatch metrics and alarms
restoreTableAsync in interface AmazonKeyspacesAsyncpublic Future<RestoreTableResult> restoreTableAsync(RestoreTableRequest request, AsyncHandler<RestoreTableRequest,RestoreTableResult> asyncHandler)
AmazonKeyspacesAsync
Restores the specified table to the specified point in time within the earliest_restorable_timestamp
and the current time. For more information about restore points, see Time window for PITR continuous backups in the Amazon Keyspaces Developer Guide.
Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account.
When you restore using point in time recovery, Amazon Keyspaces restores your source table's schema and data to
the state based on the selected timestamp (day:hour:minute:second) to a new table. The Time to Live
(TTL) settings are also restored to the state based on the selected timestamp.
In addition to the table's schema, data, and TTL settings, RestoreTable restores the capacity mode,
encryption, and point-in-time recovery settings from the source table. Unlike the table's schema data and TTL
settings, which are restored based on the selected timestamp, these settings are always restored based on the
table's settings as of the current time or when the table was deleted.
You can also overwrite these settings during restore:
• Read/write capacity mode
• Provisioned throughput capacity settings
• Point-in-time (PITR) settings
• Tags
For more information, see PITR restore settings in the Amazon Keyspaces Developer Guide.
Note that the following settings are not restored, and you must configure them manually for the new table:
• Automatic scaling policies (for tables that use provisioned capacity mode)
• Identity and Access Management (IAM) policies
• Amazon CloudWatch metrics and alarms
restoreTableAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<TagResourceResult> tagResourceAsync(TagResourceRequest request)
AmazonKeyspacesAsyncAssociates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
For IAM policy examples that show how to control access to Amazon Keyspaces resources based on tags, see Amazon Keyspaces resource access based on tags in the Amazon Keyspaces Developer Guide.
tagResourceAsync in interface AmazonKeyspacesAsyncpublic Future<TagResourceResult> tagResourceAsync(TagResourceRequest request, AsyncHandler<TagResourceRequest,TagResourceResult> asyncHandler)
AmazonKeyspacesAsyncAssociates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
For IAM policy examples that show how to control access to Amazon Keyspaces resources based on tags, see Amazon Keyspaces resource access based on tags in the Amazon Keyspaces Developer Guide.
tagResourceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request)
AmazonKeyspacesAsyncRemoves the association of tags from a Amazon Keyspaces resource.
untagResourceAsync in interface AmazonKeyspacesAsyncpublic Future<UntagResourceResult> untagResourceAsync(UntagResourceRequest request, AsyncHandler<UntagResourceRequest,UntagResourceResult> asyncHandler)
AmazonKeyspacesAsyncRemoves the association of tags from a Amazon Keyspaces resource.
untagResourceAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.public Future<UpdateTableResult> updateTableAsync(UpdateTableRequest request)
AmazonKeyspacesAsyncAdds new columns to the table or updates one of the table's settings, for example capacity mode, encryption, point-in-time recovery, or ttl settings. Note that you can only update one specific table setting per update operation.
updateTableAsync in interface AmazonKeyspacesAsyncpublic Future<UpdateTableResult> updateTableAsync(UpdateTableRequest request, AsyncHandler<UpdateTableRequest,UpdateTableResult> asyncHandler)
AmazonKeyspacesAsyncAdds new columns to the table or updates one of the table's settings, for example capacity mode, encryption, point-in-time recovery, or ttl settings. Note that you can only update one specific table setting per update operation.
updateTableAsync in interface AmazonKeyspacesAsyncasyncHandler - Asynchronous callback handler for events in the lifecycle of the request. Users can provide an
implementation of the callback methods in this interface to receive notification of successful or
unsuccessful completion of the operation.