Interface CfnBucket.TieringProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucket.TieringProperty.Jsii$Proxy
- Enclosing class:
CfnBucket
@Stability(Stable)
public static interface CfnBucket.TieringProperty
extends software.amazon.jsii.JsiiSerializable
The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.s3.*; TieringProperty tieringProperty = TieringProperty.builder() .accessTier("accessTier") .days(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBucket.TieringProperty
static final class
An implementation forCfnBucket.TieringProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessTier
S3 Intelligent-Tiering access tier.See Storage class for automatically optimizing frequently and infrequently accessed objects for a list of access tiers in the S3 Intelligent-Tiering storage class.
- See Also:
-
getDays
The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier.The minimum number of days specified for Archive Access tier must be at least 90 days and Deep Archive Access tier must be at least 180 days. The maximum can be up to 2 years (730 days).
- See Also:
-
builder
- Returns:
- a
CfnBucket.TieringProperty.Builder
ofCfnBucket.TieringProperty
-