Class: Aws::Kinesis::Types::S3TablesDestinationUpdateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kinesis::Types::S3TablesDestinationUpdateInput
- Defined in:
- gems/aws-sdk-kinesis/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).
2895 2896 2897 2898 2899 |
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2895 class S3TablesDestinationUpdateInput < Struct.new( :data_freshness_in_seconds) SENSITIVE = [] include Aws::Structure end |