Java com.amazonaws.services.dynamodbv2 AmazonDynamoDBClient fields, constructors, methods, implement or subclass

Example usage for Java com.amazonaws.services.dynamodbv2 AmazonDynamoDBClient fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.amazonaws.services.dynamodbv2 AmazonDynamoDBClient.

The text is from its open source code.

Constructor

AmazonDynamoDBClient(ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB.
AmazonDynamoDBClient(AWSCredentials awsCredentials)
Constructs a new client to invoke service methods on DynamoDB using the specified AWS account credentials.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider)
Constructs a new client to invoke service methods on DynamoDB using the specified AWS account credentials provider.
AmazonDynamoDBClient(AwsSyncClientParams clientParams)
Constructs a new client to invoke service methods on DynamoDB using the specified parameters.
AmazonDynamoDBClient()
Constructs a new client to invoke service methods on DynamoDB.
AmazonDynamoDBClient(AWSCredentials awsCredentials, ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB using the specified AWS account credentials and client configuration options.
AmazonDynamoDBClient(AWSCredentialsProvider awsCredentialsProvider, ClientConfiguration clientConfiguration)
Constructs a new client to invoke service methods on DynamoDB using the specified AWS account credentials provider and client configuration options.
AmazonDynamoDBClient(AwsSyncClientParams clientParams, boolean endpointDiscoveryEnabled)
Constructs a new client to invoke service methods on DynamoDB using the specified parameters.

Method

AmazonDynamoDBClientBuilderbuilder()
voidconfigureRegion(Regions region)
Convenient method for setting region.
CreateTableResultcreateTable(CreateTableRequest request)

The CreateTable operation adds a new table to your account.

DeleteItemResultdeleteItem(String tableName, java.util.Map key)
DeleteTableResultdeleteTable(DeleteTableRequest request)

The DeleteTable operation deletes a table and all of its items.

DeleteTableResultdeleteTable(String tableName)
DescribeTableResultdescribeTable(DescribeTableRequest request)

Returns information about the table, including the current status of the table, when it was created, the primary key schema, and any indexes on the table.

DescribeTableResultdescribeTable(String tableName)
ListTablesResultlistTables()
ListTablesResultlistTables(ListTablesRequest request)

Returns an array of table names associated with the current account and endpoint.

ListTablesResultlistTables(String exclusiveStartTableName)
ListTablesResultlistTables(Integer limit)
PutItemResultputItem(String tableName, java.util.Map item)
PutItemResultputItem(PutItemRequest request)

Creates a new item, or replaces an old item with a new item.

QueryResultquery(QueryRequest request)

The Query operation finds items based on primary key values.

ScanResultscan(ScanRequest request)

The Scan operation returns one or more items and item attributes by accessing every item in a table or a secondary index.

voidsetEndpoint(String endpoint)
Overrides the default endpoint for this client.
voidsetRegion(Region region)
An alternative to AmazonWebServiceClient#setEndpoint(String) , sets the regional endpoint for this client's service calls.
voidshutdown()
UpdateItemResultupdateItem(String tableName, java.util.Map key, java.util.Map attributeUpdates)
UpdateItemResultupdateItem(UpdateItemRequest request)

Edits an existing item's attributes, or adds a new item to the table if it does not already exist.

UpdateTableResultupdateTable(String tableName, ProvisionedThroughput provisionedThroughput)