Class: Fog::Parsers::Redshift::AWS::CreateClusterSecurityGroup

Inherits:
ClusterSecurityGroupParser show all
Defined in:
lib/fog/aws/parsers/redshift/create_cluster_security_group.rb

Instance Method Summary collapse

Methods inherited from ClusterSecurityGroupParser

#fresh_cluster_security_group

Instance Method Details

#end_element(name) ⇒ Object



19
20
21
22
23
24
25
# File 'lib/fog/aws/parsers/redshift/create_cluster_security_group.rb', line 19

def end_element(name)
  super
  case name
  when 'ClusterSecurityGroup'
    @response['ClusterSecurityGroup'] = @cluster_security_group
  end
end

#resetObject

:cluster_security_group



10
11
12
13
# File 'lib/fog/aws/parsers/redshift/create_cluster_security_group.rb', line 10

def reset
  super
  @response = {}
end

#start_element(name, attrs = []) ⇒ Object



15
16
17
# File 'lib/fog/aws/parsers/redshift/create_cluster_security_group.rb', line 15

def start_element(name, attrs = [])
  super
end