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).
22594 22595 22596 22597 22598 |
# File 'lib/aws-sdk-datazone/types.rb', line 22594 class TimeoutConfig < Struct.new( :run_timeout_in_minutes) SENSITIVE = [] include Aws::Structure end |