Class: Aws::SecurityHub::Types::AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails
- 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
-
#date ⇒ String
A date on which to transition objects to the specified storage class.
-
#days ⇒ Integer
The number of days after which to transition the object to the specified storage class.
-
#storage_class ⇒ String
The storage class to transition the object to.
Instance Attribute Details
#date ⇒ String
A date on which to transition objects to the specified storage
class. If you provide Date, you cannot provide Days.
For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.
18193 18194 18195 18196 18197 18198 18199 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18193 class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new( :date, :days, :storage_class) SENSITIVE = [] include Aws::Structure end |
#days ⇒ Integer
The number of days after which to transition the object to the
specified storage class. If you provide Days, you cannot provide
Date.
18193 18194 18195 18196 18197 18198 18199 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18193 class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new( :date, :days, :storage_class) SENSITIVE = [] include Aws::Structure end |
#storage_class ⇒ String
The storage class to transition the object to. Valid values are as follows:
DEEP_ARCHIVEGLACIERINTELLIGENT_TIERINGONEZONE_IASTANDARD_IA
18193 18194 18195 18196 18197 18198 18199 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18193 class AwsS3BucketBucketLifecycleConfigurationRulesTransitionsDetails < Struct.new( :date, :days, :storage_class) SENSITIVE = [] include Aws::Structure end |