Class: Aws::Firehose::Types::RedshiftRetryOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-firehose/types.rb

Overview

Note:

When making an API call, you may pass RedshiftRetryOptions data as a hash:

{
  duration_in_seconds: 1,
}

Configures retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift.

Instance Attribute Summary collapse

Instance Attribute Details

#duration_in_secondsInteger

The length of time during which Kinesis Data Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Kinesis Data Firehose does not retry if the value of ‘DurationInSeconds` is 0 (zero) or if the first delivery attempt takes longer than the current value.

Returns:

  • (Integer)


3090
3091
3092
3093
# File 'lib/aws-sdk-firehose/types.rb', line 3090

class RedshiftRetryOptions < Struct.new(
  :duration_in_seconds)
  include Aws::Structure
end