# File lib/fog/aws/requests/elasticache/describe_events.rb, line 23 def describe_events(options = {}) request( 'Action' => 'DescribeEvents', 'StartTime' => options[:sart_time], 'EndTime' => options[:end_time], 'Duration' => options[:duration], 'Marker' => options[:marker], 'MaxRecords' => options[:max_records], 'SourceIdentifier' => options[:source_identifier], 'SourceType' => options[:source_type], :parser => Fog::Parsers::AWS::Elasticache::EventListParser.new ) end