com.amazonaws.services.dynamodbv2.model.DescribeLimitsResult Java Examples

The following examples show how to use com.amazonaws.services.dynamodbv2.model.DescribeLimitsResult. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PostgresDynamoDB.java    From podyn with Apache License 2.0 4 votes vote down vote up
@Override
public DescribeLimitsResult describeLimits(DescribeLimitsRequest describeLimitsRequest) {
	
	throw new UnsupportedOperationException();
}
 
Example #2
Source File: AmazonDynamoDBStubTest.java    From aws-java-sdk-stubs with Apache License 2.0 4 votes vote down vote up
@Test
public void test_describeLimits() throws Exception {
  DescribeLimitsResult result = dynamoDb.describeLimits(new DescribeLimitsRequest());

  assertThat(result, notNullValue());
}
 
Example #3
Source File: ThreadLocalDynamoDBFacade.java    From dynamodb-transactions with Apache License 2.0 4 votes vote down vote up
@Override
public DescribeLimitsResult describeLimits(DescribeLimitsRequest request) {
	return getBackend().describeLimits(request);
}
 
Example #4
Source File: TransactionDynamoDBFacade.java    From dynamodb-transactions with Apache License 2.0 4 votes vote down vote up
@Override
public DescribeLimitsResult describeLimits(DescribeLimitsRequest request) {
	throw new UnsupportedOperationException("Use the underlying client instance instead");
}