Enum Class S3Endpoint

java.lang.Object
java.lang.Enum<S3Endpoint>
com.kazurayam.materialstore.core.S3Endpoint
All Implemented Interfaces:
Serializable, Comparable<S3Endpoint>, Constable

public enum S3Endpoint extends Enum<S3Endpoint>
AWS S3 Service Endpoints as listed in https://docs.aws.amazon.com/general/latest/gr/s3.html
  • Enum Constant Details

    • AF_SOUTH_1

      public static final S3Endpoint AF_SOUTH_1
    • AP_EAST_1

      public static final S3Endpoint AP_EAST_1
    • AP_NORTHEAST_1

      public static final S3Endpoint AP_NORTHEAST_1
    • AP_NORTHEAST_2

      public static final S3Endpoint AP_NORTHEAST_2
    • AP_NORTHEAST_3

      public static final S3Endpoint AP_NORTHEAST_3
    • AP_SOUTH_1

      public static final S3Endpoint AP_SOUTH_1
    • AP_SOUTH_2

      public static final S3Endpoint AP_SOUTH_2
    • AP_SOUTHEAST_1

      public static final S3Endpoint AP_SOUTHEAST_1
    • AP_SOUTHEAST_2

      public static final S3Endpoint AP_SOUTHEAST_2
    • AP_SOUTHEAST_3

      public static final S3Endpoint AP_SOUTHEAST_3
    • CA_CENTRAL_1

      public static final S3Endpoint CA_CENTRAL_1
    • CN_NORTH_1

      public static final S3Endpoint CN_NORTH_1
    • CN_NORTHEAST_1

      public static final S3Endpoint CN_NORTHEAST_1
    • EU_CENTRAL_1

      public static final S3Endpoint EU_CENTRAL_1
    • EU_CENTRAL_2

      public static final S3Endpoint EU_CENTRAL_2
    • EU_NORTH_1

      public static final S3Endpoint EU_NORTH_1
    • EU_SOUTH_1

      public static final S3Endpoint EU_SOUTH_1
    • EU_SOUTH_2

      public static final S3Endpoint EU_SOUTH_2
    • EU_WEST_1

      public static final S3Endpoint EU_WEST_1
    • EU_WEST_2

      public static final S3Endpoint EU_WEST_2
    • EU_WEST_3

      public static final S3Endpoint EU_WEST_3
    • ME_CENTRAL_1

      public static final S3Endpoint ME_CENTRAL_1
    • ME_SOUTH_1

      public static final S3Endpoint ME_SOUTH_1
    • SA_EAST_1

      public static final S3Endpoint SA_EAST_1
    • US_EAST_1

      public static final S3Endpoint US_EAST_1
    • US_EAST_2

      public static final S3Endpoint US_EAST_2
    • US_WEST_1

      public static final S3Endpoint US_WEST_1
    • US_WEST_2

      public static final S3Endpoint US_WEST_2
  • Method Details

    • values

      public static S3Endpoint[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static S3Endpoint valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getURI

      public URI getURI()
    • getRegion

      public String getRegion()
    • getName

      public String getName()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<S3Endpoint>