Class: Aws::S3Control::Types::NoncurrentVersionTransition
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::NoncurrentVersionTransition
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass NoncurrentVersionTransition data as a hash:
{
noncurrent_days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
}
The container for the noncurrent version transition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#noncurrent_days ⇒ Integer
Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action.
-
#storage_class ⇒ String
The class of storage used to store the object.
Instance Attribute Details
#noncurrent_days ⇒ Integer
Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see How Amazon S3 Calculates How Long an Object Has Been Noncurrent in the Amazon S3 User Guide.
4293 4294 4295 4296 4297 4298 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4293 class NoncurrentVersionTransition < Struct.new( :noncurrent_days, :storage_class) SENSITIVE = [] include Aws::Structure end |
#storage_class ⇒ String
The class of storage used to store the object.
4293 4294 4295 4296 4297 4298 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 4293 class NoncurrentVersionTransition < Struct.new( :noncurrent_days, :storage_class) SENSITIVE = [] include Aws::Structure end |