Class: Aws::S3Control::Types::NoncurrentVersionTransition

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3control/types.rb

Overview

The container for the noncurrent version transition.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#noncurrent_daysInteger

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*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations

Returns:

  • (Integer)


5689
5690
5691
5692
5693
5694
# File 'lib/aws-sdk-s3control/types.rb', line 5689

class NoncurrentVersionTransition < Struct.new(
  :noncurrent_days,
  :storage_class)
  SENSITIVE = []
  include Aws::Structure
end

#storage_classString

The class of storage used to store the object.

Returns:

  • (String)


5689
5690
5691
5692
5693
5694
# File 'lib/aws-sdk-s3control/types.rb', line 5689

class NoncurrentVersionTransition < Struct.new(
  :noncurrent_days,
  :storage_class)
  SENSITIVE = []
  include Aws::Structure
end