Class: Aws::ElastiCache::Types::EventsMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElastiCache::Types::EventsMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticache/types.rb
Overview
Represents the output of a ‘DescribeEvents` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#events ⇒ Array<Types::Event>
A list of events.
-
#marker ⇒ String
Provides an identifier to allow retrieval of paginated results.
Instance Attribute Details
#events ⇒ Array<Types::Event>
A list of events. Each element in the list contains detailed information about one event.
5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-elasticache/types.rb', line 5082 class EventsMessage < Struct.new( :marker, :events) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Provides an identifier to allow retrieval of paginated results.
5082 5083 5084 5085 5086 5087 |
# File 'lib/aws-sdk-elasticache/types.rb', line 5082 class EventsMessage < Struct.new( :marker, :events) SENSITIVE = [] include Aws::Structure end |