Constructor and Description |
---|
DdbConfiguration() |
Modifier and Type | Method and Description |
---|---|
DdbConfiguration |
copy() |
String |
getAccessKey() |
com.amazonaws.services.dynamodbv2.AmazonDynamoDB |
getAmazonDDBClient() |
String |
getKeyAttributeName() |
String |
getKeyAttributeType() |
DdbOperations |
getOperation() |
String |
getProxyHost() |
Integer |
getProxyPort() |
Long |
getReadCapacity() |
String |
getRegion() |
String |
getSecretKey() |
String |
getTableName() |
Long |
getWriteCapacity() |
boolean |
isConsistentRead() |
void |
setAccessKey(String accessKey)
Amazon AWS Access Key
|
void |
setAmazonDDBClient(com.amazonaws.services.dynamodbv2.AmazonDynamoDB amazonDDBClient)
To use the AmazonDynamoDB as the client
|
void |
setConsistentRead(boolean consistentRead)
Determines whether or not strong consistency should be enforced when data is read.
|
void |
setKeyAttributeName(String keyAttributeName)
Attribute name when creating table
|
void |
setKeyAttributeType(String keyAttributeType)
Attribute type when creating table
|
void |
setOperation(DdbOperations operation)
What operation to perform
|
void |
setProxyHost(String proxyHost)
To define a proxy host when instantiating the DDB client
|
void |
setProxyPort(Integer proxyPort)
To define a proxy port when instantiating the DDB client
|
void |
setReadCapacity(Long readCapacity)
The provisioned throughput to reserve for reading resources from your table
|
void |
setRegion(String region)
The region in which DDB client needs to work
|
void |
setSecretKey(String secretKey)
Amazon AWS Secret Key
|
void |
setTableName(String tableName)
The name of the table currently worked with.
|
void |
setWriteCapacity(Long writeCapacity)
The provisioned throughput to reserved for writing resources to your table
|
public String getAccessKey()
public void setAccessKey(String accessKey)
public String getSecretKey()
public void setSecretKey(String secretKey)
public com.amazonaws.services.dynamodbv2.AmazonDynamoDB getAmazonDDBClient()
public void setAmazonDDBClient(com.amazonaws.services.dynamodbv2.AmazonDynamoDB amazonDDBClient)
public String getTableName()
public void setTableName(String tableName)
public DdbOperations getOperation()
public void setOperation(DdbOperations operation)
public boolean isConsistentRead()
public void setConsistentRead(boolean consistentRead)
public Long getReadCapacity()
public void setReadCapacity(Long readCapacity)
public Long getWriteCapacity()
public void setWriteCapacity(Long writeCapacity)
public String getKeyAttributeName()
public void setKeyAttributeName(String keyAttributeName)
public String getKeyAttributeType()
public void setKeyAttributeType(String keyAttributeType)
public String getProxyHost()
public void setProxyHost(String proxyHost)
public Integer getProxyPort()
public void setProxyPort(Integer proxyPort)
public String getRegion()
public void setRegion(String region)
public DdbConfiguration copy()
Apache Camel