aws_sdk_kms/lib.rs
1#![allow(deprecated)]
2#![allow(unknown_lints)]
3#![allow(clippy::module_inception)]
4#![allow(clippy::upper_case_acronyms)]
5#![allow(clippy::large_enum_variant)]
6#![allow(clippy::wrong_self_convention)]
7#![allow(clippy::should_implement_trait)]
8#![allow(clippy::disallowed_names)]
9#![allow(clippy::vec_init_then_push)]
10#![allow(clippy::type_complexity)]
11#![allow(clippy::needless_return)]
12#![allow(clippy::derive_partial_eq_without_eq)]
13#![allow(clippy::result_large_err)]
14#![allow(clippy::unnecessary_map_on_constructor)]
15#![allow(rustdoc::bare_urls)]
16#![allow(rustdoc::redundant_explicit_links)]
17#![allow(rustdoc::invalid_html_tags)]
18#![forbid(unsafe_code)]
19#![warn(missing_docs)]
20#![cfg_attr(docsrs, feature(doc_auto_cfg))]
21//! Key Management Service (KMS) is an encryption and key management web service. This guide describes the KMS operations that you can call programmatically. For general information about KMS, see the [_Key Management Service Developer Guide_](https://docs.aws.amazon.com/kms/latest/developerguide/).
22//!
23//! We recommend that you use the Amazon Web Services SDKs to make programmatic API calls to KMS.
24//!
25//! If you need to use FIPS 140-2 validated cryptographic modules when communicating with Amazon Web Services, use one of the FIPS endpoints in your preferred Amazon Web Services Region. If you need communicate over IPv6, use the dual-stack endpoint in your preferred Amazon Web Services Region. For more information see [Service endpoints](https://docs.aws.amazon.com/general/latest/gr/kms.html#kms_region) in the Key Management Service topic of the _Amazon Web Services General Reference_ and [Dual-stack endpoint support](https://docs.aws.amazon.com/kms/latest/developerguide/ipv6-kms.html) in the KMS Developer Guide.
26//!
27//! All KMS API calls must be signed and be transmitted using Transport Layer Security (TLS). KMS recommends you always use the latest supported TLS version. Clients must also support cipher suites with Perfect Forward Secrecy (PFS) such as Ephemeral Diffie-Hellman (DHE) or Elliptic Curve Ephemeral Diffie-Hellman (ECDHE). Most modern systems such as Java 7 and later support these modes.
28//!
29//! __Signing Requests__
30//!
31//! Requests must be signed using an access key ID and a secret access key. We strongly recommend that you do not use your Amazon Web Services account root access key ID and secret access key for everyday work. You can use the access key ID and secret access key for an IAM user or you can use the Security Token Service (STS) to generate temporary security credentials and use those to sign requests.
32//!
33//! All KMS requests must be signed with [Signature Version 4](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html).
34//!
35//! __Logging API Requests__
36//!
37//! KMS supports CloudTrail, a service that logs Amazon Web Services API calls and related events for your Amazon Web Services account and delivers them to an Amazon S3 bucket that you specify. By using the information collected by CloudTrail, you can determine what requests were made to KMS, who made the request, when it was made, and so on. To learn more about CloudTrail, including how to turn it on and find your log files, see the [CloudTrail User Guide](https://docs.aws.amazon.com/awscloudtrail/latest/userguide/).
38//!
39//! __Additional Resources__
40//!
41//! For more information about credentials and request signing, see the following:
42//! - [Amazon Web Services Security Credentials](https://docs.aws.amazon.com/general/latest/gr/aws-security-credentials.html) - This topic provides general information about the types of credentials used to access Amazon Web Services.
43//! - [Temporary Security Credentials](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp.html) - This section of the _IAM User Guide_ describes how to create and use temporary security credentials.
44//! - [Signature Version 4 Signing Process](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html) - This set of topics walks you through the process of signing a request using an access key ID and a secret access key.
45//!
46//! __Commonly Used API Operations__
47//!
48//! Of the API operations discussed in this guide, the following will prove the most useful for most applications. You will likely perform operations other than these, such as creating keys and assigning policies, by using the console.
49//! - Encrypt
50//! - Decrypt
51//! - GenerateDataKey
52//! - GenerateDataKeyWithoutPlaintext
53//!
54//! ## Getting Started
55//!
56//! > Examples are available for many services and operations, check out the
57//! > [examples folder in GitHub](https://github.com/awslabs/aws-sdk-rust/tree/main/examples).
58//!
59//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
60//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-kms` to
61//! your project, add the following to your **Cargo.toml** file:
62//!
63//! ```toml
64//! [dependencies]
65//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
66//! aws-sdk-kms = "1.77.0"
67//! tokio = { version = "1", features = ["full"] }
68//! ```
69//!
70//! Then in code, a client can be created with the following:
71//!
72//! ```rust,no_run
73//! use aws_sdk_kms as kms;
74//!
75//! #[::tokio::main]
76//! async fn main() -> Result<(), kms::Error> {
77//! let config = aws_config::load_from_env().await;
78//! let client = aws_sdk_kms::Client::new(&config);
79//!
80//! // ... make some calls with the client
81//!
82//! Ok(())
83//! }
84//! ```
85//!
86//! See the [client documentation](https://docs.rs/aws-sdk-kms/latest/aws_sdk_kms/client/struct.Client.html)
87//! for information on what calls can be made, and the inputs and outputs for each of those calls.
88//!
89//! ## Using the SDK
90//!
91//! Until the SDK is released, we will be adding information about using the SDK to the
92//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
93//! additional sections for the guide by opening an issue and describing what you are trying to do.
94//!
95//! ## Getting Help
96//!
97//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
98//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
99//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
100//! * [Usage examples](https://github.com/awslabs/aws-sdk-rust/tree/main/examples)
101//!
102//!
103//! # Crate Organization
104//!
105//! The entry point for most customers will be [`Client`], which exposes one method for each API
106//! offered by AWS Key Management Service. The return value of each of these methods is a "fluent builder",
107//! where the different inputs for that API are added by builder-style function call chaining,
108//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
109//! either a successful output or a [`SdkError`](crate::error::SdkError).
110//!
111//! Some of these API inputs may be structs or enums to provide more complex structured information.
112//! These structs and enums live in [`types`](crate::types). There are some simpler types for
113//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
114//!
115//! All types required to configure a client via the [`Config`](crate::Config) struct live
116//! in [`config`](crate::config).
117//!
118//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
119//! is the input, output, and error type for that API, as well as builders to construct each of those.
120//!
121//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
122//! client can return. Any other error type can be converted to this `Error` type via the
123//! [`From`](std::convert::From) trait.
124//!
125//! The other modules within this crate are not required for normal usage.
126
127// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
128pub use error_meta::Error;
129
130#[doc(inline)]
131pub use config::Config;
132
133/// Client for calling AWS Key Management Service.
134/// ## Constructing a `Client`
135///
136/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
137/// crate should be used to automatically resolve this config using
138/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
139/// across multiple different AWS SDK clients. This config resolution process can be customized
140/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
141/// the [builder pattern] to customize the default config.
142///
143/// In the simplest case, creating a client looks as follows:
144/// ```rust,no_run
145/// # async fn wrapper() {
146/// let config = aws_config::load_from_env().await;
147/// let client = aws_sdk_kms::Client::new(&config);
148/// # }
149/// ```
150///
151/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
152/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
153/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
154/// done as follows:
155///
156/// ```rust,no_run
157/// # async fn wrapper() {
158/// let sdk_config = ::aws_config::load_from_env().await;
159/// let config = aws_sdk_kms::config::Builder::from(&sdk_config)
160/// # /*
161/// .some_service_specific_setting("value")
162/// # */
163/// .build();
164/// # }
165/// ```
166///
167/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
168///
169/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
170/// be done once at application start-up.
171///
172/// [`Config`]: crate::Config
173/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
174/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
175/// [`aws-config` docs]: https://docs.rs/aws-config/*
176/// [`aws-config`]: https://crates.io/crates/aws-config
177/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
178/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
179/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
180/// # Using the `Client`
181///
182/// A client has a function for every operation that can be performed by the service.
183/// For example, the [`CancelKeyDeletion`](crate::operation::cancel_key_deletion) operation has
184/// a [`Client::cancel_key_deletion`], function which returns a builder for that operation.
185/// The fluent builder ultimately has a `send()` function that returns an async future that
186/// returns a result, as illustrated below:
187///
188/// ```rust,ignore
189/// let result = client.cancel_key_deletion()
190/// .key_id("example")
191/// .send()
192/// .await;
193/// ```
194///
195/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
196/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
197/// information.
198pub mod client;
199
200/// Configuration for AWS Key Management Service.
201pub mod config;
202
203/// Common errors and error handling utilities.
204pub mod error;
205
206mod error_meta;
207
208/// Information about this crate.
209pub mod meta;
210
211/// All operations that this crate can perform.
212pub mod operation;
213
214/// Primitives such as `Blob` or `DateTime` used by other types.
215pub mod primitives;
216
217/// Data structures used by operation inputs/outputs.
218pub mod types;
219
220mod auth_plugin;
221
222pub(crate) mod protocol_serde;
223
224mod sdk_feature_tracker;
225
226mod serialization_settings;
227
228mod endpoint_lib;
229
230mod lens;
231
232mod json_errors;
233
234mod serde_util;
235
236#[doc(inline)]
237pub use client::Client;