Skip to content

Commit

Permalink
Fix length
Browse files Browse the repository at this point in the history
  • Loading branch information
jterapin committed Aug 28, 2024
1 parent 3d1b994 commit 3b72c62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_tools/customizations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ def dynamodb_example_deep_transform(subsegment, keys)
api('CloudFront') do |api|

api['shapes'].each do |_, shape|
shape['members']['MaxItems']['shape'] = 'integer' if shape['members'] && shape['members']['MaxItems']
if shape['members'] && shape['members']['MaxItems']
shape['members']['MaxItems']['shape'] = 'integer'
end
end

api['operations'].keys.each do |name|
Expand Down

0 comments on commit 3b72c62

Please sign in to comment.