1 2 3 4 5 6 7 8 9
// Copyright 2021 TiKV Project Authors. Licensed under Apache-2.0. mod kms; pub use kms::{AwsKms, ENCRYPTION_VENDOR_NAME_AWS_KMS}; mod s3; pub use s3::{Config, S3Storage, STORAGE_VENDOR_NAME_AWS}; mod util;
1 2 3 4 5 6 7 8 9
// Copyright 2021 TiKV Project Authors. Licensed under Apache-2.0. mod kms; pub use kms::{AwsKms, ENCRYPTION_VENDOR_NAME_AWS_KMS}; mod s3; pub use s3::{Config, S3Storage, STORAGE_VENDOR_NAME_AWS}; mod util;