Class: Aws::Firehose::Types::RedshiftRetryOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::RedshiftRetryOptions
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Configures retry behavior in case Firehose is unable to deliver documents to Amazon Redshift.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_seconds ⇒ Integer
The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt.
Instance Attribute Details
#duration_in_seconds ⇒ Integer
The length of time during which Firehose retries delivery after a
failure, starting from the initial request and including the first
attempt. The default value is 3600 seconds (60 minutes). Firehose
does not retry if the value of DurationInSeconds
is 0 (zero) or if
the first delivery attempt takes longer than the current value.
3827 3828 3829 3830 3831 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 3827 class RedshiftRetryOptions < Struct.new( :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |