列挙型 S3Endpoint

  • すべての実装されたインタフェース:
    java.io.Serializable, java.lang.Comparable<S3Endpoint>

    public enum S3Endpoint
    extends java.lang.Enum<S3Endpoint>
    AWS S3 Service Endpoints as listed in https://docs.aws.amazon.com/general/latest/gr/s3.html
    • 列挙型定数の詳細

      • 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
    • メソッドの詳細

      • values

        public static S3Endpoint[] values()
        この列挙型の定数を含む配列を宣言されている順序で返します。 このメソッドは次のようにして定数を反復するために 使用できます:
        for (S3Endpoint c : S3Endpoint.values())
            System.out.println(c);
        
        戻り値:
        この列挙型の定数を含む、宣言されている順序での配列
      • valueOf

        public static S3Endpoint valueOf​(java.lang.String name)
        指定した名前を持つこの型の列挙型定数を返します。 文字列は、この型の列挙型定数を宣言するのに使用した識別子と正確に 一致している必要があります。(余分な空白文字を含めることは できません。)
        パラメータ:
        name - 返される列挙型定数の名前。
        戻り値:
        指定した名前の列挙型定数
        例外:
        java.lang.IllegalArgumentException - この列挙型に、指定した名前の定数がない場合
        java.lang.NullPointerException - 引数がnullの場合
      • getURI

        public java.net.URI getURI()
      • getRegion

        public java.lang.String getRegion()
      • getName

        public java.lang.String getName()
      • toString

        public java.lang.String toString()
        オーバーライド:
        toString クラス内 java.lang.Enum<S3Endpoint>