pub use crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::_decrypt_structure_output::DecryptStructureOutputBuilder;
pub use crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::_decrypt_structure_input::DecryptStructureInputBuilder;
impl DecryptStructureInputBuilder {
pub async fn send_with(
self,
client: &crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::client::Client,
) -> ::std::result::Result<
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::DecryptStructureOutput,
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::error::Error,
>{
let mut fluent_builder = client.decrypt_structure();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct DecryptStructureFluentBuilder {
client: crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::client::Client,
pub(crate) inner: crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::builders::DecryptStructureInputBuilder,
}
impl DecryptStructureFluentBuilder {
pub(crate) fn new(
client: crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::client::Client,
) -> Self {
Self {
client,
inner: ::std::default::Default::default(),
}
}
pub fn as_input(&self) -> &crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::builders::DecryptStructureInputBuilder{
&self.inner
}
pub async fn send(
self,
) -> ::std::result::Result<
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::DecryptStructureOutput,
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::error::Error,
>{
let input = self
.inner
.build()
.map_err(|mut e| {
let msg = format!("{:?}", e);
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::error::Error::OpaqueWithText {
obj: ::dafny_runtime::Object::from_ref(&mut e as &mut ::dafny_runtime::DynAny),
objMessage: msg
}})?;
crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::operation::decrypt_structure::DecryptStructure::send(&self.client, input).await
}
#[allow(missing_docs)]
pub fn authenticate_schema(
mut self,
input: impl ::std::convert::Into<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::AuthenticateAction>>,
) -> Self {
self.inner = self.inner.authenticate_schema(input.into());
self
}
#[allow(missing_docs)]
pub fn set_authenticate_schema(
mut self,
input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::AuthenticateAction>>,
) -> Self {
self.inner = self.inner.set_authenticate_schema(input);
self
}
#[allow(missing_docs)]
pub fn get_authenticate_schema(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::AuthenticateAction>>{
self.inner.get_authenticate_schema()
}
#[allow(missing_docs)]
pub fn cmm(
mut self,
input: impl ::std::convert::Into<crate::deps::aws_cryptography_materialProviders::types::cryptographic_materials_manager::CryptographicMaterialsManagerRef>,
) -> Self {
self.inner = self.inner.cmm(input.into());
self
}
#[allow(missing_docs)]
pub fn set_cmm(
mut self,
input: ::std::option::Option<crate::deps::aws_cryptography_materialProviders::types::cryptographic_materials_manager::CryptographicMaterialsManagerRef>,
) -> Self {
self.inner = self.inner.set_cmm(input);
self
}
#[allow(missing_docs)]
pub fn get_cmm(&self) -> &::std::option::Option<crate::deps::aws_cryptography_materialProviders::types::cryptographic_materials_manager::CryptographicMaterialsManagerRef>{
self.inner.get_cmm()
}
#[allow(missing_docs)]
pub fn encrypted_structure(
mut self,
input: impl ::std::convert::Into<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::StructuredDataTerminal>>,
) -> Self {
self.inner = self.inner.encrypted_structure(input.into());
self
}
#[allow(missing_docs)]
pub fn set_encrypted_structure(
mut self,
input: ::std::option::Option<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::StructuredDataTerminal>>,
) -> Self {
self.inner = self.inner.set_encrypted_structure(input);
self
}
#[allow(missing_docs)]
pub fn get_encrypted_structure(&self) -> &::std::option::Option<::std::collections::HashMap<::std::string::String, crate::deps::aws_cryptography_dbEncryptionSdk_structuredEncryption::types::StructuredDataTerminal>>{
self.inner.get_encrypted_structure()
}
#[allow(missing_docs)]
pub fn encryption_context(
mut self,
input: impl ::std::convert::Into<
::std::collections::HashMap<::std::string::String, ::std::string::String>,
>,
) -> Self {
self.inner = self.inner.encryption_context(input.into());
self
}
#[allow(missing_docs)]
pub fn set_encryption_context(
mut self,
input: ::std::option::Option<
::std::collections::HashMap<::std::string::String, ::std::string::String>,
>,
) -> Self {
self.inner = self.inner.set_encryption_context(input);
self
}
#[allow(missing_docs)]
pub fn get_encryption_context(
&self,
) -> &::std::option::Option<
::std::collections::HashMap<::std::string::String, ::std::string::String>,
> {
self.inner.get_encryption_context()
}
#[allow(missing_docs)]
pub fn table_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.table_name(input.into());
self
}
#[allow(missing_docs)]
pub fn set_table_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_table_name(input);
self
}
#[allow(missing_docs)]
pub fn get_table_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_table_name()
}
}