Class: Aws::Kinesis::Types::S3TablesDestinationUpdateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::S3TablesDestinationUpdateInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesis/types.rb
Overview
The updated configuration for a streaming table destination. Used in
UpdateChannel. Only DataFreshnessInSeconds can be updated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_freshness_in_seconds ⇒ Integer
The maximum age, in seconds, of undelivered data.
Instance Attribute Details
#data_freshness_in_seconds ⇒ Integer
The maximum age, in seconds, of undelivered data. Valid range is 300 to 900 seconds (5 to 15 minutes).
2854 2855 2856 2857 2858 |
# File 'lib/aws-sdk-kinesis/types.rb', line 2854 class S3TablesDestinationUpdateInput < Struct.new( :data_freshness_in_seconds) SENSITIVE = [] include Aws::Structure end |