Interface AwsConnectionDetails

All Superinterfaces:
org.springframework.boot.autoconfigure.service.connection.ConnectionDetails

public interface AwsConnectionDetails extends org.springframework.boot.autoconfigure.service.connection.ConnectionDetails
Details required to establish a connection to a AWS.
Since:
3.2.0
Author:
Maciej Walkowiak
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    Credentials Access Key.
    default @Nullable URI
    AWS or Localstack endpoint.
    default @Nullable String
    AWS or Localstack region.
    default String
    Credentials Secret Key
  • Method Details

    • getEndpoint

      default @Nullable URI getEndpoint()
      AWS or Localstack endpoint.
      Returns:
      the AWS or Localstack endpoint or null
    • getRegion

      default @Nullable String getRegion()
      AWS or Localstack region.
      Returns:
      the AWS or Localstack region or null
    • getAccessKey

      default String getAccessKey()
      Credentials Access Key.
      Returns:
      the access key
    • getSecretKey

      default String getSecretKey()
      Credentials Secret Key
      Returns:
      the secret key