Unverified Commit e9bd850d authored by Russell Cohen's avatar Russell Cohen Committed by GitHub
Browse files

Add Clone derive to aws_types::Config (#1002)



* Add Clone derive to aws_types::Config

* changelog

Co-authored-by: default avatarZelda Hessler <zhessler@amazon.com>
parent 56cf68a8
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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"
+1 −1
Original line number Diff line number Diff line
@@ -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>,