mirror of https://github.com/smithy-lang/smithy-rs
Add Clone derive to aws_types::Config (#1002)
* Add Clone derive to aws_types::Config * changelog Co-authored-by: Zelda Hessler <zhessler@amazon.com>
This commit is contained in:
parent
56cf68a85d
commit
e9bd850d1a
|
@ -38,3 +38,9 @@ message = "Fix bug where ECS credential provider could not perform retries."
|
|||
meta = { "breaking" = false, "tada" = false, "bug" = true }
|
||||
references = ["smithy-rs#998", "aws-sdk-rust#359"]
|
||||
author = "rcoh"
|
||||
|
||||
[[aws-sdk-rust]]
|
||||
message = "aws_types::Config is now `Clone`"
|
||||
meta = { "breaking" = false, "tada" = false, "bug" = false }
|
||||
references = ["smithy-rs#1002", "aws-sdk-rust#352"]
|
||||
author = "rcoh"
|
||||
|
|
|
@ -20,7 +20,7 @@ use crate::credentials::SharedCredentialsProvider;
|
|||
use crate::region::Region;
|
||||
|
||||
/// AWS Shared Configuration
|
||||
#[derive(Debug)]
|
||||
#[derive(Debug, Clone)]
|
||||
pub struct Config {
|
||||
app_name: Option<AppName>,
|
||||
credentials_provider: Option<SharedCredentialsProvider>,
|
||||
|
|
Loading…
Reference in New Issue