Class: Aws::Rest::Request::Body Private

Inherits:
Object
  • Object
show all
Includes:
Seahorse::Model::Shapes
Defined in:
lib/aws-sdk-core/rest/request/body.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Constructor Details

#initialize(serializer_class, rules) ⇒ Body

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Body.

Parameters:

  • serializer_class (Class)
  • rules (Seahorse::Model::ShapeRef)


10
11
12
13
# File 'lib/aws-sdk-core/rest/request/body.rb', line 10

def initialize(serializer_class, rules)
  @serializer_class = serializer_class
  @rules = rules
end

Instance Method Details

#apply(http_req, params) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:



17
18
19
# File 'lib/aws-sdk-core/rest/request/body.rb', line 17

def apply(http_req, params)
  http_req.body = build_body(params)
end