1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//! <p>Identity and Access Management Access Analyzer helps identify potential resource-access risks by enabling you to
//! identify any policies that grant access to an external principal. It does this by using
//! logic-based reasoning to analyze resource-based policies in your Amazon Web Services environment. An
//! external principal can be another Amazon Web Services account, a root user, an IAM user or role, a
//! federated user, an Amazon Web Services service, or an anonymous user. You can also use IAM Access Analyzer to
//! preview and validate public and cross-account access to your resources before deploying
//! permissions changes. This guide describes the Identity and Access Management Access Analyzer operations that you can
//! call programmatically. For general information about IAM Access Analyzer, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/what-is-access-analyzer.html">Identity and Access Management Access Analyzer</a> in the <b>IAM User Guide</b>.</p>
//! <p>To start using IAM Access Analyzer, you first need to create an analyzer.</p>
//!
//! # Crate Organization
//!
//! The entry point for most customers will be [`Client`]. [`Client`] exposes one method for each API offered
//! by the service.
//!
//! Some APIs require complex or nested arguments. These exist in [`model`].
//!
//! Lastly, errors that can be returned by the service are contained within [`error`]. [`Error`] defines a meta
//! error encompassing all possible errors that can be returned by the service.
//!
//! The other modules within this crate are not required for normal usage.
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use Error;
pub use Config;
/// Client and fluent builders for calling the service.
/// Configuration for the service.
/// Errors that can occur when calling the service.
/// Input structures for operations.
/// Data structures used by operation inputs/outputs.
/// All operations that this crate can perform.
/// Output structures for operations.
/// Crate version number.
pub static PKG_VERSION: &str = env!;
pub use ByteStream;
pub use SdkError;
pub use Blob;
pub use DateTime;
static API_METADATA: ApiMetadata =
new;
pub use Endpoint;
pub use RetryConfig;
pub use AppName;
pub use Region;
pub use Credentials;
pub use Client;