Class: Fog::Parsers::AWS::ElasticBeanstalk::DescribeConfigurationOptions

Inherits:
BaseParser
  • Object
show all
Defined in:
lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from BaseParser

#end_element, #get_parent, #reset, #set_value, #start_element, #tag

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #reset, #start_element, #start_element_namespace, #value

Constructor Details

#initializeDescribeConfigurationOptions

Returns a new instance of DescribeConfigurationOptions.



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/fog/aws/parsers/beanstalk/describe_configuration_options.rb', line 9

def initialize
  super("DescribeConfigurationOptionsResult")
  tag 'SolutionStackName', :string
  tag 'Options', :object, :list
  tag 'ChangeSeverity', :string
  tag 'DefaultValue', :string
  tag 'MaxLength', :integer
  tag 'MaxValue', :integer
  tag 'MinValue', :integer
  tag 'Name', :string
  tag 'Namespace', :string
  tag 'Regex', :object
  tag 'Label', :string
  tag 'Pattern', :string
  tag 'UserDefined', :boolean
  tag 'ValueOptions', :string, :list
  tag 'ValueType', :string
end