Class: Aws::EMRServerless::Types::RetryPolicy
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRServerless::Types::RetryPolicy
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emrserverless/types.rb
Overview
The retry policy to use for a job run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_attempts ⇒ Integer
Maximum number of attempts for the job run.
-
#max_failed_attempts_per_hour ⇒ Integer
Maximum number of failed attempts per hour.
Instance Attribute Details
#max_attempts ⇒ Integer
Maximum number of attempts for the job run. This parameter is only applicable for ‘BATCH` mode.
1821 1822 1823 1824 1825 1826 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1821 class RetryPolicy < Struct.new( :max_attempts, :max_failed_attempts_per_hour) SENSITIVE = [] include Aws::Structure end |
#max_failed_attempts_per_hour ⇒ Integer
Maximum number of failed attempts per hour. This [arameter is only applicable for ‘STREAMING` mode.
1821 1822 1823 1824 1825 1826 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1821 class RetryPolicy < Struct.new( :max_attempts, :max_failed_attempts_per_hour) SENSITIVE = [] include Aws::Structure end |