aws_sdk_networkfirewall/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::useless_conversion)]
16#![allow(clippy::deprecated_semver)]
17#![allow(rustdoc::bare_urls)]
18#![allow(rustdoc::redundant_explicit_links)]
19#![allow(rustdoc::broken_intra_doc_links)]
20#![allow(rustdoc::invalid_html_tags)]
21#![forbid(unsafe_code)]
22#![warn(missing_docs)]
23#![cfg_attr(docsrs, feature(doc_cfg))]
24//! This is the API Reference for Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors.
25//!
26//! The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the Amazon Web Services REST APIs, see [Amazon Web Services APIs](https://docs.aws.amazon.com/general/latest/gr/aws-apis.html).
27//!
28//! To view the complete list of Amazon Web Services Regions where Network Firewall is available, see [Service endpoints and quotas](https://docs.aws.amazon.com/general/latest/gr/network-firewall.html) in the _Amazon Web Services General Reference_.
29//!
30//! To access Network Firewall using the IPv4 REST API endpoint: https://network-firewall..amazonaws.com
31//!
32//! To access Network Firewall using the Dualstack (IPv4 and IPv6) REST API endpoint: https://network-firewall..aws.api
33//!
34//! Alternatively, you can use one of the Amazon Web Services SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see [Amazon Web Services SDKs](http://aws.amazon.com/tools/#SDKs).
35//!
36//! For descriptions of Network Firewall features, including and step-by-step instructions on how to use them through the Network Firewall console, see the [Network Firewall Developer Guide](https://docs.aws.amazon.com/network-firewall/latest/developerguide/).
37//!
38//! Network Firewall is a stateful, managed, network firewall and intrusion detection and prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network Firewall, you can filter traffic at the perimeter of your VPC. This includes filtering traffic going to and coming from an internet gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source network analysis and threat detection engine. Network Firewall supports Suricata version 7.0.3. For information about Suricata, see the [Suricata website](https://suricata.io/) and the [Suricata User Guide](https://suricata.readthedocs.io/en/suricata-7.0.3/).
39//!
40//! You can use Network Firewall to monitor and protect your VPC traffic in a number of ways. The following are just a few examples:
41//! - Allow domains or IP addresses for known Amazon Web Services service endpoints, such as Amazon S3, and block all other forms of traffic.
42//! - Use custom lists of known bad domains to limit the types of domain names that your applications can access.
43//! - Perform deep packet inspection on traffic entering or leaving your VPC.
44//! - Use stateful protocol detection to filter protocols like HTTPS, regardless of the port used.
45//!
46//! To enable Network Firewall for your VPCs, you perform steps in both Amazon VPC and in Network Firewall. For information about using Amazon VPC, see [Amazon VPC User Guide](https://docs.aws.amazon.com/vpc/latest/userguide/).
47//!
48//! To start using Network Firewall, do the following:
49//! 1. (Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC.
50//! 1. In Amazon VPC, in each Availability Zone where you want to have a firewall endpoint, create a subnet for the sole use of Network Firewall.
51//! 1. In Network Firewall, define the firewall behavior as follows:
52//! 1. Create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have.
53//! 1. Create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior.
54//!
55//! 1. In Network Firewall, create a firewall and specify your new firewall policy and VPC subnets. Network Firewall creates a firewall endpoint in each subnet that you specify, with the behavior that's defined in the firewall policy.
56//! 1. In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints.
57//!
58//! After your firewall is established, you can add firewall endpoints for new Availability Zones by following the prior steps for the Amazon VPC setup and firewall subnet definitions. You can also add endpoints to Availability Zones that you're using in the firewall, either for the same VPC or for another VPC, by following the prior steps for the Amazon VPC setup, and defining the new VPC subnets as VPC endpoint associations.
59//!
60//! ## Getting Started
61//!
62//! > Examples are available for many services and operations, check out the
63//! > [usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1).
64//!
65//! The SDK provides one crate per AWS service. You must add [Tokio](https://crates.io/crates/tokio)
66//! as a dependency within your Rust project to execute asynchronous code. To add `aws-sdk-networkfirewall` to
67//! your project, add the following to your **Cargo.toml** file:
68//!
69//! ```toml
70//! [dependencies]
71//! aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
72//! aws-sdk-networkfirewall = "1.111.0"
73//! tokio = { version = "1", features = ["full"] }
74//! ```
75//!
76//! Then in code, a client can be created with the following:
77//!
78//! ```rust,no_run
79//! use aws_sdk_networkfirewall as networkfirewall;
80//!
81//! #[::tokio::main]
82//! async fn main() -> Result<(), networkfirewall::Error> {
83//! let config = aws_config::load_from_env().await;
84//! let client = aws_sdk_networkfirewall::Client::new(&config);
85//!
86//! // ... make some calls with the client
87//!
88//! Ok(())
89//! }
90//! ```
91//!
92//! See the [client documentation](https://docs.rs/aws-sdk-networkfirewall/latest/aws_sdk_networkfirewall/client/struct.Client.html)
93//! for information on what calls can be made, and the inputs and outputs for each of those calls.
94//!
95//! ## Using the SDK
96//!
97//! Until the SDK is released, we will be adding information about using the SDK to the
98//! [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html). Feel free to suggest
99//! additional sections for the guide by opening an issue and describing what you are trying to do.
100//!
101//! ## Getting Help
102//!
103//! * [GitHub discussions](https://github.com/awslabs/aws-sdk-rust/discussions) - For ideas, RFCs & general questions
104//! * [GitHub issues](https://github.com/awslabs/aws-sdk-rust/issues/new/choose) - For bug reports & feature requests
105//! * [Generated Docs (latest version)](https://awslabs.github.io/aws-sdk-rust/)
106//! * [Usage examples](https://github.com/awsdocs/aws-doc-sdk-examples/tree/main/rustv1)
107//!
108//!
109//! # Crate Organization
110//!
111//! The entry point for most customers will be [`Client`], which exposes one method for each API
112//! offered by AWS Network Firewall. The return value of each of these methods is a "fluent builder",
113//! where the different inputs for that API are added by builder-style function call chaining,
114//! followed by calling `send()` to get a [`Future`](std::future::Future) that will result in
115//! either a successful output or a [`SdkError`](crate::error::SdkError).
116//!
117//! Some of these API inputs may be structs or enums to provide more complex structured information.
118//! These structs and enums live in [`types`](crate::types). There are some simpler types for
119//! representing data such as date times or binary blobs that live in [`primitives`](crate::primitives).
120//!
121//! All types required to configure a client via the [`Config`](crate::Config) struct live
122//! in [`config`](crate::config).
123//!
124//! The [`operation`](crate::operation) module has a submodule for every API, and in each submodule
125//! is the input, output, and error type for that API, as well as builders to construct each of those.
126//!
127//! There is a top-level [`Error`](crate::Error) type that encompasses all the errors that the
128//! client can return. Any other error type can be converted to this `Error` type via the
129//! [`From`](std::convert::From) trait.
130//!
131//! The other modules within this crate are not required for normal usage.
132
133// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
134pub use error_meta::Error;
135
136#[doc(inline)]
137pub use config::Config;
138
139/// Client for calling AWS Network Firewall.
140/// ## Constructing a `Client`
141///
142/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
143/// crate should be used to automatically resolve this config using
144/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
145/// across multiple different AWS SDK clients. This config resolution process can be customized
146/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
147/// the [builder pattern] to customize the default config.
148///
149/// In the simplest case, creating a client looks as follows:
150/// ```rust,no_run
151/// # async fn wrapper() {
152/// let config = aws_config::load_from_env().await;
153/// let client = aws_sdk_networkfirewall::Client::new(&config);
154/// # }
155/// ```
156///
157/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
158/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
159/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
160/// done as follows:
161///
162/// ```rust,no_run
163/// # async fn wrapper() {
164/// let sdk_config = ::aws_config::load_from_env().await;
165/// let config = aws_sdk_networkfirewall::config::Builder::from(&sdk_config)
166/// # /*
167/// .some_service_specific_setting("value")
168/// # */
169/// .build();
170/// # }
171/// ```
172///
173/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
174///
175/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
176/// be done once at application start-up.
177///
178/// [`Config`]: crate::Config
179/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
180/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
181/// [`aws-config` docs]: https://docs.rs/aws-config/*
182/// [`aws-config`]: https://crates.io/crates/aws-config
183/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
184/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
185/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
186/// # Using the `Client`
187///
188/// A client has a function for every operation that can be performed by the service.
189/// For example, the [`AcceptNetworkFirewallTransitGatewayAttachment`](crate::operation::accept_network_firewall_transit_gateway_attachment) operation has
190/// a [`Client::accept_network_firewall_transit_gateway_attachment`], function which returns a builder for that operation.
191/// The fluent builder ultimately has a `send()` function that returns an async future that
192/// returns a result, as illustrated below:
193///
194/// ```rust,ignore
195/// let result = client.accept_network_firewall_transit_gateway_attachment()
196/// .transit_gateway_attachment_id("example")
197/// .send()
198/// .await;
199/// ```
200///
201/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
202/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
203/// information.
204pub mod client;
205
206/// Configuration for AWS Network Firewall.
207pub mod config;
208
209/// Common errors and error handling utilities.
210pub mod error;
211
212mod error_meta;
213
214/// Information about this crate.
215pub mod meta;
216
217/// All operations that this crate can perform.
218pub mod operation;
219
220/// Primitives such as `Blob` or `DateTime` used by other types.
221pub mod primitives;
222
223/// Data structures used by operation inputs/outputs.
224pub mod types;
225
226mod observability_feature;
227
228pub(crate) mod protocol_serde;
229
230mod sdk_feature_tracker;
231
232mod serialization_settings;
233
234mod endpoint_lib;
235
236mod lens;
237
238mod serde_util;
239
240mod json_errors;
241
242#[doc(inline)]
243pub use client::Client;