Class: Aws::SecurityHub::Types::AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb

Overview

A rule for when objects transition to specific storage classes.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dateString

A date on which to transition objects to the specified storage class. If you provide Date, you cannot provide Days.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

Returns:

  • (String)


17989
17990
17991
17992
17993
17994
17995
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17989

class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new(
  :date,
  :days,
  :storage_class)
  SENSITIVE = []
  include Aws::Structure
end

#daysInteger

The number of days after which to transition the object to the specified storage class. If you provide Days, you cannot provide Date.

Returns:

  • (Integer)


17989
17990
17991
17992
17993
17994
17995
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17989

class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new(
  :date,
  :days,
  :storage_class)
  SENSITIVE = []
  include Aws::Structure
end

#storage_classString

The storage class to transition the object to. Valid values are as follows:

  • DEEP_ARCHIVE

  • GLACIER

  • INTELLIGENT_TIERING

  • ONEZONE_IA

  • STANDARD_IA

Returns:

  • (String)


17989
17990
17991
17992
17993
17994
17995
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 17989

class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new(
  :date,
  :days,
  :storage_class)
  SENSITIVE = []
  include Aws::Structure
end