class Fog::Parsers::AWS::ElasticBeanstalk::DescribeEvents

Public Class Methods

new() click to toggle source
# File lib/fog/aws/parsers/beanstalk/describe_events.rb, line 7
def initialize
  super("DescribeEventsResult")
  tag 'Events', :object, :list
  tag 'ApplicationName', :string
  tag 'EnvironmentName', :string
  tag 'EventDate', :datetime
  tag 'Message', :string
  tag 'RequestId', :string
  tag 'Severity', :string
  tag 'TemplateName', :string
  tag 'VersionLabel', :string
  tag 'NextToken', :string
end