Class: Aws::Firehose::Types::RetryOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::RetryOptions
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Note:
When making an API call, you may pass RetryOptions data as a hash:
{
duration_in_seconds: 1,
}
The retry behavior in case Kinesis Data Firehose is unable to deliver data to an Amazon S3 prefix.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration_in_seconds ⇒ Integer
The period of time during which Kinesis Data Firehose retries to deliver data to the specified Amazon S3 prefix.
Instance Attribute Details
#duration_in_seconds ⇒ Integer
The period of time during which Kinesis Data Firehose retries to deliver data to the specified Amazon S3 prefix.
4633 4634 4635 4636 4637 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 4633 class RetryOptions < Struct.new( :duration_in_seconds) SENSITIVE = [] include Aws::Structure end |