Unverified Commit b1d50b56 authored by David Calavera's avatar David Calavera Committed by GitHub
Browse files

Re-export aws_types::SdkConfig in aws_config (#1457)



* Re-export aws_types::SdkConfig in aws_config

This way people that want to access that structure don't have to add aws_types.

Signed-off-by: default avatarDavid Calavera <david.calavera@gmail.com>

* Add entry about SdkConfig to the changelog

Co-authored-by: default avatarRussell Cohen <rcoh@amazon.com>
parent 090b57d1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -19,3 +19,9 @@ chunk signing are not supported at this time.
references = ["smithy-rs#1263"]
meta = { "breaking" = false, "tada" = false, "bug" = false }
author = "Velfi"

[[aws-sdk-rust]]
message = "Re-export aws_types::SdkConfig in aws_config"
references = ["smithy-rs#1457"]
meta = { "breaking" = false, "tada" = true, "bug" = false }
author = "calavera"
+4 −1
Original line number Diff line number Diff line
@@ -139,7 +139,10 @@ pub use aws_smithy_types::retry::RetryConfig;
pub use aws_smithy_types::timeout;

// Re-export types from aws-types
pub use aws_types::app_name::{AppName, InvalidAppName};
pub use aws_types::{
    app_name::{AppName, InvalidAppName},
    SdkConfig,
};

/// Create an environment loader for AWS Configuration
///