aws_sdk_storagegateway/
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(clippy::deprecated_semver)]
16#![allow(rustdoc::bare_urls)]
17#![allow(rustdoc::redundant_explicit_links)]
18#![allow(rustdoc::invalid_html_tags)]
19#![forbid(unsafe_code)]
20#![warn(missing_docs)]
21#![cfg_attr(docsrs, feature(doc_cfg))]
22//! Amazon FSx File Gateway is no longer available to new customers. Existing customers of FSx File Gateway can continue to use the service normally. For capabilities similar to FSx File Gateway, visit [this blog post](https://aws.amazon.com/blogs/storage/switch-your-file-share-access-from-amazon-fsx-file-gateway-to-amazon-fsx-for-windows-file-server/).
23//!
24//! Storage Gateway is the service that connects an on-premises software appliance with cloud-based storage to provide seamless and secure integration between an organization's on-premises IT environment and the Amazon Web Services storage infrastructure. The service enables you to securely upload data to the Amazon Web Services Cloud for cost effective backup and rapid disaster recovery.
25//!
26//! Use the following links to get started using the _Storage Gateway Service API Reference_:
27//!   - [Storage Gateway required request headers](https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewayHTTPRequestsHeaders): Describes the required headers that you must send with every POST request to Storage Gateway.
28//!   - [Signing requests](https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#AWSStorageGatewaySigningRequests): Storage Gateway requires that you authenticate every request you send; this topic describes how sign such a request.
29//!   - [Error responses](https://docs.aws.amazon.com/storagegateway/latest/userguide/AWSStorageGatewayAPI.html#APIErrorResponses): Provides reference information about Storage Gateway errors.
30//!   - [Operations in Storage Gateway](https://docs.aws.amazon.com/storagegateway/latest/APIReference/API_Operations.html): Contains detailed descriptions of all Storage Gateway operations, their request parameters, response elements, possible errors, and examples of requests and responses.
31//!   - [Storage Gateway endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/sg.html): Provides a list of each Amazon Web Services Region and the endpoints available for use with Storage Gateway.
32//!
33//! IDs for Storage Gateway volumes and Amazon EBS snapshots created from gateway volumes are changing to a longer format. Starting in December 2016, all new volumes and snapshots will be created with a 17-character string. Starting in April 2016, you will be able to use these longer IDs so you can test your systems with the new format. For more information, see [Longer EC2 and EBS resource IDs](http://aws.amazon.com/ec2/faqs/#longer-ids).
34//!
35//! For example, a volume Amazon Resource Name (ARN) with the longer volume ID format looks like the following:
36//!
37//! arn:aws:storagegateway:us-west-2:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABBCCDDEEFFG.
38//!
39//! A snapshot ID with the longer ID format looks like the following: snap-78e226633445566ee.
40//!
41//! For more information, see [Announcement: Heads-up – Longer Storage Gateway volume and snapshot IDs coming in 2016](http://forums.aws.amazon.com/ann.jspa?annID=3557).
42//!
43//! ## Getting Started
44//!
45//! > Examples are available for many services and operations, check out the
46//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
47//!
48//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
49//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-storagegateway` to
50//! your project, add the following to your **Cargo.toml** file:
51//!
52//! ```toml
53//! [dependencies]
54//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
55//! aws-sdk-storagegateway = "1.93.0"
56//! tokio = { version = "1", features = ["full"] }
57//! ```
58//!
59//! Then in code, a client can be created with the following:
60//!
61//! ```rust,no_run
62//! use aws_sdk_storagegateway as storagegateway;
63//!
64//! #[::tokio::main]
65//! async fn main() -> Result<(), storagegateway::Error> {
66//!     let config = aws_config::load_from_env().await;
67//!     let client = aws_sdk_storagegateway::Client::new(&config);
68//!
69//!     // ... make some calls with the client
70//!
71//!     Ok(())
72//! }
73//! ```
74//!
75//! See the [client documentation](https://docs.rs/aws-sdk-storagegateway/latest/aws_sdk_storagegateway/client/struct.Client.html)
76//! for information on what calls can be made, and the inputs and outputs for each of those calls.
77//!
78//! ## Using the SDK
79//!
80//! Until the SDK is released, we will be adding information about using the SDK to the
81//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
82//! additional sections for the guide by opening an issue and describing what you are trying to do.
83//!
84//! ## Getting Help
85//!
86//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
87//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
88//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
89//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
90//!
91//!
92//! # Crate Organization
93//!
94//! The entry point for most customers will be [`Client`], which exposes one method for each API
95//! offered by AWS Storage Gateway. The return value of each of these methods is a "fluent builder",
96//! where the different inputs for that API are added by builder-style function call chaining,
97//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
98//! either a successful output or a [`SdkError`](crate::error::SdkError).
99//!
100//! Some of these API inputs may be structs or enums to provide more complex structured information.
101//! These structs and enums live in [`types`](crate::types). There are some simpler types for
102//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
103//!
104//! All types required to configure a client via the [`Config`](crate::Config) struct live
105//! in [`config`](crate::config).
106//!
107//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
108//! is the input, output, and error type for that API, as well as builders to construct each of those.
109//!
110//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
111//! client can return. Any other error type can be converted to this `Error` type via the
112//! [`From`](std::convert::From) trait.
113//!
114//! The other modules within this crate are not required for normal usage.
115
116// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
117pub use error_meta::Error;
118
119#[doc(inline)]
120pub use config::Config;
121
122/// Client for calling AWS Storage Gateway.
123/// ## Constructing a `Client`
124///
125/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
126/// crate should be used to automatically resolve this config using
127/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
128/// across multiple different AWS SDK clients. This config resolution process can be customized
129/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
130/// the [builder pattern] to customize the default config.
131///
132/// In the simplest case, creating a client looks as follows:
133/// ```rust,no_run
134/// # async fn wrapper() {
135/// let config = aws_config::load_from_env().await;
136/// let client = aws_sdk_storagegateway::Client::new(&config);
137/// # }
138/// ```
139///
140/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
141/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
142/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
143/// done as follows:
144///
145/// ```rust,no_run
146/// # async fn wrapper() {
147/// let sdk_config = ::aws_config::load_from_env().await;
148/// let config = aws_sdk_storagegateway::config::Builder::from(&sdk_config)
149/// # /*
150///     .some_service_specific_setting("value")
151/// # */
152///     .build();
153/// # }
154/// ```
155///
156/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
157///
158/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
159/// be done once at application start-up.
160///
161/// [`Config`]: crate::Config
162/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
163/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
164/// [`aws-config` docs]: https://docs.rs/aws-config/*
165/// [`aws-config`]: https://crates.io/crates/aws-config
166/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
167/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
168/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
169/// # Using the `Client`
170///
171/// A client has a function for every operation that can be performed by the service.
172/// For example, the [`ActivateGateway`](crate::operation::activate_gateway) operation has
173/// a [`Client::activate_gateway`], function which returns a builder for that operation.
174/// The fluent builder ultimately has a `send()` function that returns an async future that
175/// returns a result, as illustrated below:
176///
177/// ```rust,ignore
178/// let result = client.activate_gateway()
179///     .activation_key("example")
180///     .send()
181///     .await;
182/// ```
183///
184/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
185/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
186/// information.
187pub mod client;
188
189/// Configuration for AWS Storage Gateway.
190pub mod config;
191
192/// Common errors and error handling utilities.
193pub mod error;
194
195mod error_meta;
196
197/// Information about this crate.
198pub mod meta;
199
200/// All operations that this crate can perform.
201pub mod operation;
202
203/// Primitives such as `Blob` or `DateTime` used by other types.
204pub mod primitives;
205
206/// Data structures used by operation inputs/outputs.
207pub mod types;
208
209pub(crate) mod protocol_serde;
210
211mod sdk_feature_tracker;
212
213mod serialization_settings;
214
215mod endpoint_lib;
216
217mod lens;
218
219mod json_errors;
220
221mod serde_util;
222
223#[doc(inline)]
224pub use client::Client;