class Fog::Parsers::Redshift::AWS::DescribeClusterSnapshots
Public Instance Methods
Source
# File lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb, line 23 def end_element(name) super case name when 'Marker' @response[name] = value when 'Snapshot' @response['Snapshots'] << @snapshot @snapshot = fresh_snapshot end end
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterSnapshotParser#end_element
Source
# File lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb, line 11 def reset @response = { 'Snapshots' => [] } end
:marker - (String) :snapshots - (Array)
Source
# File lib/fog/aws/parsers/redshift/describe_cluster_snapshots.rb, line 15 def start_element(name, attrs = []) super case name when 'Snapshots' @snapshot = fresh_snapshot end end
Calls superclass method
Fog::Parsers::Redshift::AWS::ClusterSnapshotParser#start_element