Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/AWS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ Base.@kwdef struct FeatureSet
use_response_type::Bool = false
end

# Copy constructor for FeatureSet that allows overriding specific fields
function FeatureSet(fs::FeatureSet; use_response_type::Bool=fs.use_response_type)
return FeatureSet(; use_response_type=use_response_type)
end

"""
global_aws_config()

Expand Down Expand Up @@ -141,7 +146,7 @@ cannot).

## Returns

- `Module`: The module containging the high-level service API wrapper functions.
- `Module`: The module containing the high-level service API wrapper functions.

## Examples

Expand Down
19 changes: 15 additions & 4 deletions src/services/mediastore_data.jl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 27 additions & 7 deletions src/services/s3.jl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading