Class: Aws::SageMaker::Types::TtlDuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::TtlDuration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Time to live duration, where the record is hard deleted after the expiration time is reached; ExpiresAt = EventTime + TtlDuration. For information on HardDelete, see the [DeleteRecord] API in the Amazon SageMaker API Reference guide.
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_DeleteRecord.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unit ⇒ String
TtlDurationtime unit. -
#value ⇒ Integer
TtlDurationtime value.
Instance Attribute Details
#unit ⇒ String
TtlDuration time unit.
51996 51997 51998 51999 52000 52001 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 51996 class TtlDuration < Struct.new( :unit, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Integer
TtlDuration time value.
51996 51997 51998 51999 52000 52001 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 51996 class TtlDuration < Struct.new( :unit, :value) SENSITIVE = [] include Aws::Structure end |