public enum ApiTier extends Enum<ApiTier>
| Enum Constant and Description |
|---|
Bulk
Bulk retrievals are the lowest-cost retrieval option in S3 Glacier, enabling you to retrieve large amounts, even petabytes, of data inexpensively.
|
Expedited
Standard retrievals allow you to access any of your archived objects within several hours.
|
Standard
Expedited retrievals allow you to quickly access your data stored in the S3 Glacier storage class or S3 Intelligent-Tiering Archive tier when occasional urgent requests for a subset of archives are required.
|
| Modifier and Type | Method and Description |
|---|---|
static ApiTier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiTier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiTier Standard
public static final ApiTier Bulk
public static final ApiTier Expedited
public static ApiTier[] values()
for (ApiTier c : ApiTier.values()) System.out.println(c);
public static ApiTier valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 MuleSoft, Inc.. All rights reserved.