Class: Amazon::AWS::Help

Inherits:
Operation show all
Defined in:
lib/ruby-paa/aws.rb

Overview

This class of operation aids in finding out about AWS operations and response groups.

Constant Summary

Constants inherited from Operation

Operation::OPERATIONS

Instance Attribute Summary

Attributes inherited from Operation

#kind, #params, #response_group

Instance Method Summary collapse

Methods inherited from Operation

#batch, #query_parameters, #response_group_orig=

Constructor Details

#initialize(help_type, about, parameters = {}) ⇒ Help

Return information on AWS operations and response groups.

For operations, required and optional parameters are returned, along with information about which response groups the operation can use.

For response groups, The list of operations that can use that group is returned, as well as the list of response tags returned by the group.

help_type is the type of object for which help is being sought, such as Operation or ResponseGroup. about is the name of the operation or response group you need help with, and parameters is an optional hash of parameters that further refine the request for help.



857
858
859
# File 'lib/ruby-paa/aws.rb', line 857

def initialize(help_type, about, parameters={})
 super( { 'HelpType' => help_type, 'About'    => about  }.merge( parameters ) )
end