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 DataZone.
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).
21640 21641 21642 21643 21644 |
# File 'lib/aws-sdk-datazone/types.rb', line 21640 class TimeoutConfig < Struct.new( :run_timeout_in_minutes) SENSITIVE = [] include Aws::Structure end |