Class: Aws::DataZone::Types::TimeoutConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::TimeoutConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-datazone/types.rb
Overview
The timeout configuration for a notebook run in Amazon SageMaker Unified Studio.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#run_timeout_in_minutes ⇒ Integer
The timeout for the notebook run, in minutes.
Instance Attribute Details
#run_timeout_in_minutes ⇒ Integer
The timeout for the notebook run, in minutes. The minimum value is 60 minutes (1 hour), the maximum value is 1440 minutes (24 hours), and the default value is 720 minutes (12 hours).
23154 23155 23156 23157 23158 |
# File 'lib/aws-sdk-datazone/types.rb', line 23154 class TimeoutConfig < Struct.new( :run_timeout_in_minutes) SENSITIVE = [] include Aws::Structure end |