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.
1470 1471 1472 1473 1474 1475 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1470 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.
1470 1471 1472 1473 1474 1475 |
# File 'lib/aws-sdk-emrserverless/types.rb', line 1470 class RetryPolicy < Struct.new( :max_attempts, :max_failed_attempts_per_hour) SENSITIVE = [] include Aws::Structure end |