Class: Aws::EventBridgeV2::Types::StorageConfigurationOutput

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

Overview

Event storage configuration of an event bus, as returned on reads.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#retention_period_in_days ⇒ Integer

Number of days events are retained on the event bus.

Returns:

  • (Integer)


2621
2622
2623
2624
2625
2626
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 2621

class StorageConfigurationOutput < Struct.new(
  :retention_period_in_days,
  :retention_window_start_time)
  SENSITIVE = []
  include Aws::Structure
end

#retention_window_start_time ⇒ Time

The earliest point in time from which stored events are available. Events older than this have expired from retention.

Returns:

  • (Time)


2621
2622
2623
2624
2625
2626
# File 'gems/aws-sdk-eventbridgev2/lib/aws-sdk-eventbridgev2/types.rb', line 2621

class StorageConfigurationOutput < Struct.new(
  :retention_period_in_days,
  :retention_window_start_time)
  SENSITIVE = []
  include Aws::Structure
end