We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8560d commit ca3dbe0Copy full SHA for ca3dbe0
src/AWSConfig.jl
@@ -24,6 +24,7 @@ end
24
25
# provide a default for the new field since people were using the default constructor
26
AWSConfig(creds, region, output) = AWSConfig(creds, region, output, AWS_MAX_RETRY_ATTEMPTS)
27
+Base.copy(config::AWSConfig) = AWSConfig(config.credentials, config.region, config.output, config.max_attempts)
28
29
credentials(aws::AWSConfig) = aws.credentials
30
region(aws::AWSConfig) = aws.region
0 commit comments