Class: Aws::Rest::Request::Body Private
- Inherits:
-
Object
- Object
- Aws::Rest::Request::Body
- 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
- #apply(http_req, params) ⇒ Object private
-
#initialize(serializer_class, rules) ⇒ Body
constructor
private
A new instance of Body.
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.
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.
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 |