Package io.ebean.test.containers
Interface AwsSDKv2
public interface AwsSDKv2
AWS SDK v1 compatible helper API to provide clients like
DynamoDbClient, SnsClient, SqsClient, KinesisClient.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionsoftware.amazon.awssdk.auth.credentials.AwsBasicCredentialsReturn the basic credentials that can be used for this container.software.amazon.awssdk.auth.credentials.AwsCredentialsProviderReturn SDK 2 AwsCredentialsProvider.software.amazon.awssdk.services.dynamodb.DynamoDbClientReturn the DynamoDbClient (V2 SDK) that can be used for this container.software.amazon.awssdk.services.kinesis.KinesisClientReturn KinesisClient (V2 SDK) that can be used for this container.software.amazon.awssdk.regions.Regionregion()Return SDK 2 Region.software.amazon.awssdk.services.s3.S3Clients3Client()Return the S3Client (V2 SDK) for this container.software.amazon.awssdk.services.sns.SnsClientReturn the SnsClient (V2 SDK) client for this container.software.amazon.awssdk.services.sqs.SqsClientReturn the SnsClient (V2 SDK) client for this container.
-
Method Details
-
dynamoDBClient
software.amazon.awssdk.services.dynamodb.DynamoDbClient dynamoDBClient()Return the DynamoDbClient (V2 SDK) that can be used for this container.This should be used AFTER the container is started.
-
kinesisClient
software.amazon.awssdk.services.kinesis.KinesisClient kinesisClient()Return KinesisClient (V2 SDK) that can be used for this container.This should be used AFTER the container is started.
-
snsClient
software.amazon.awssdk.services.sns.SnsClient snsClient()Return the SnsClient (V2 SDK) client for this container. -
sqsClient
software.amazon.awssdk.services.sqs.SqsClient sqsClient()Return the SnsClient (V2 SDK) client for this container. -
s3Client
software.amazon.awssdk.services.s3.S3Client s3Client()Return the S3Client (V2 SDK) for this container. -
region
software.amazon.awssdk.regions.Region region()Return SDK 2 Region. -
credentialsProvider
software.amazon.awssdk.auth.credentials.AwsCredentialsProvider credentialsProvider()Return SDK 2 AwsCredentialsProvider. -
basicCredentials
software.amazon.awssdk.auth.credentials.AwsBasicCredentials basicCredentials()Return the basic credentials that can be used for this container.
-