Class: Aws::Kinesis::Types::S3DestinationUpdateInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb

Overview

The updated configuration for a general purpose Amazon S3 destination. Used in UpdateChannel. Only DataFreshnessInSeconds can be updated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#data_freshness_in_secondsInteger

The maximum age, in seconds, of undelivered data. Valid range is 300 to 900 seconds (5 to 15 minutes).

Returns:

  • (Integer)


2731
2732
2733
2734
2735
# File 'gems/aws-sdk-kinesis/lib/aws-sdk-kinesis/types.rb', line 2731

class S3DestinationUpdateInput < Struct.new(
  :data_freshness_in_seconds)
  SENSITIVE = []
  include Aws::Structure
end