Package io.ebean.test.containers
Interface AwsSDKv1
public interface AwsSDKv1
AWS SDK v1 compatible helper API to provide clients like
AmazonDynamoDB, AmazonSNS, AmazonSQS, AmazonKinesis.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncom.amazonaws.auth.AWSStaticCredentialsProviderReturn SDK 1 AWSStaticCredentialsProvider.com.amazonaws.services.dynamodbv2.AmazonDynamoDBdynamoDB()Return the AmazonDynamoDB (V1 SDK) that can be used for this container.com.amazonaws.services.kinesis.AmazonKinesiskinesis()Return AmazonKinesis (V1 SDK) that can be used for this container.com.amazonaws.services.sns.AmazonSNSsns()Return the AmazonSNS (V1 SDK) client for this container.com.amazonaws.services.sqs.AmazonSQSsqs()Return the AmazonSQS (V1 SDK) client for this container.
-
Method Details
-
credentials
com.amazonaws.auth.AWSStaticCredentialsProvider credentials()Return SDK 1 AWSStaticCredentialsProvider. -
dynamoDB
com.amazonaws.services.dynamodbv2.AmazonDynamoDB dynamoDB()Return the AmazonDynamoDB (V1 SDK) that can be used for this container.This should be used AFTER the container is started.
-
kinesis
com.amazonaws.services.kinesis.AmazonKinesis kinesis()Return AmazonKinesis (V1 SDK) that can be used for this container.This should be used AFTER the container is started.
-
sns
com.amazonaws.services.sns.AmazonSNS sns()Return the AmazonSNS (V1 SDK) client for this container. -
sqs
com.amazonaws.services.sqs.AmazonSQS sqs()Return the AmazonSQS (V1 SDK) client for this container.
-