Class: Aws::S3::Encryption::EncryptHandler Private
- Inherits:
-
Seahorse::Client::Handler
- Object
- Seahorse::Client::Handler
- Aws::S3::Encryption::EncryptHandler
- Defined in:
- lib/aws-sdk-s3/encryption/encrypt_handler.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
- #call(context) ⇒ Object private
Instance Method Details
#call(context) ⇒ 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.
11 12 13 14 15 16 17 |
# File 'lib/aws-sdk-s3/encryption/encrypt_handler.rb', line 11 def call(context) envelope, cipher = context[:encryption][:cipher_provider].encryption_cipher apply_encryption_envelope(context, envelope, cipher) apply_encryption_cipher(context, cipher) apply_cse_user_agent(context) @handler.call(context) end |