aws-lib 0.4.0

Helper functions and types for AWS operations
Documentation
1
2
3
4
5
6
7
8
9
//! Re-exports selected elements of the EC2 SDK

pub mod ec2 {
    #![expect(clippy::module_name_repetitions, reason = "error prefix is necessary")]
    pub mod error {
        pub use aws_sdk_ec2::error::SdkError;
    }
    pub use aws_sdk_ec2::types::{Filter, InstanceStateName, InstanceType, Tag};
}