use aws_smithy_types::error::operation::BuildError;
#[derive(::std::clone::Clone, ::std::fmt::Debug, ::std::cmp::PartialEq)]
#[allow(missing_docs)]
pub struct Client {
pub(crate) dafny_client: ::dafny_runtime::Object<dyn crate::r#software::amazon::cryptography::keystore::internaldafny::types::IKeyStoreClient>
}
impl Client {
#[track_caller]
pub fn from_conf(
input: crate::deps::aws_cryptography_keyStore::types::key_store_config::KeyStoreConfig,
) -> Result<Self, crate::deps::aws_cryptography_keyStore::types::error::Error> {
crate::deps::aws_cryptography_keyStore::validation::validate_aws_Pcryptography_PkeyStore_HKeyStoreConfig(&input)
.map_err(crate::deps::aws_cryptography_keyStore::types::error::Error::wrap_validation_err)?;
let inner =
crate::software::amazon::cryptography::keystore::internaldafny::_default::KeyStore(
&crate::deps::aws_cryptography_keyStore::conversions::key_store_config::_key_store_config::to_dafny(input),
);
if matches!(
inner.as_ref(),
crate::_Wrappers_Compile::Result::Failure { .. }
) {
return Err(
crate::deps::aws_cryptography_keyStore::conversions::error::from_dafny(
inner.as_ref().error().clone(),
),
);
}
Ok(Self {
dafny_client: ::dafny_runtime::upcast_object()(inner.Extract()),
})
}
}
mod get_key_store_info;
mod create_key_store;
mod create_key;
mod version_key;
mod get_active_branch_key;
mod get_branch_key_version;
mod get_beacon_key;