Interface AwsCredentialsIdentity

    • Method Detail

      • accessKeyId

        String accessKeyId()
        Retrieve the AWS access key, used to identify the user interacting with services.
      • secretAccessKey

        String secretAccessKey()
        Retrieve the AWS secret access key, used to authenticate the user interacting with services.
      • accountId

        default Optional<String> accountId()
        Retrieve the AWS account id associated with this credentials identity, if found.
      • create

        static AwsCredentialsIdentity create​(String accessKeyId,
                                             String secretAccessKey)
        Constructs a new credentials object, with the specified AWS access key and AWS secret key.
        Parameters:
        accessKeyId - The AWS access key, used to identify the user interacting with services.
        secretAccessKey - The AWS secret access key, used to authenticate the user interacting with services.