Skip to main content

aws_esdk/deps/aws_cryptography_primitives/client/
aes_decrypt.rs

1// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3// Do not modify this file. This file is machine generated, and any changes to it will be overwritten.
4impl crate::deps::aws_cryptography_primitives::client::Client {
5    /// Constructs a fluent builder for the [`AESDecrypt`](crate::operation::aes_decrypt::builders::AesDecryptFluentBuilder) operation.
6    ///
7    /// - The fluent builder is configurable:
8    ///   - [`aad(impl Into<Option<::aws_smithy_types::Blob>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::aad) / [`set_aad(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_aad): (undocumented)<br>
9    ///   - [`auth_tag(impl Into<Option<::aws_smithy_types::Blob>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::auth_tag) / [`set_auth_tag(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_auth_tag): (undocumented)<br>
10    ///   - [`cipher_txt(impl Into<Option<::aws_smithy_types::Blob>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::cipher_txt) / [`set_cipher_txt(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_cipher_txt): (undocumented)<br>
11    ///   - [`enc_alg(impl Into<Option<crate::deps::aws_cryptography_primitives::types::AesGcm>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::enc_alg) / [`set_enc_alg(Option<crate::deps::aws_cryptography_primitives::types::AesGcm>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_enc_alg): (undocumented)<br>
12    ///   - [`iv(impl Into<Option<::aws_smithy_types::Blob>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::iv) / [`set_iv(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_iv): (undocumented)<br>
13    ///   - [`key(impl Into<Option<::aws_smithy_types::Blob>>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::key) / [`set_key(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::builders::AESDecryptFluentBuilder::set_key): (undocumented)<br>
14    /// - On success, responds with [`AesDecryptOutput`](crate::operation::aes_decrypt::AesDecryptOutput) with field(s):
15    ///   - [`plaintext(Option<::aws_smithy_types::Blob>)`](crate::operation::aes_decrypt::AESDecryptOutput::plaintext): (undocumented)
16    /// - On failure, responds with [`SdkError<AesDecryptError>`](crate::operation::aes_decrypt::AesDecryptError)
17    pub fn aes_decrypt(&self) -> crate::deps::aws_cryptography_primitives::operation::aes_decrypt::builders::AesDecryptFluentBuilder{
18        crate::deps::aws_cryptography_primitives::operation::aes_decrypt::builders::AesDecryptFluentBuilder::new(self.clone())
19    }
20}