aws-sdk-amplify 1.26.0 → 1.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65c82f4d8dae8eb1262da4b431cc3b635e584e44a5aa3273e73be1ae8ea7caee
4
- data.tar.gz: 3d850e16947365573fcba57a92194ec01c6e29ef2e43d8e6e261761ac3dea158
3
+ metadata.gz: '06596497f463ffe1980608740408609eb0f6e3f0be2a3887401dcf80a5c596c8'
4
+ data.tar.gz: 1ea8828b3363b6be797463df3a6f6387346a121910e3a01df1e88354a3318c5f
5
5
  SHA512:
6
- metadata.gz: 13b509309fce40f3288a4306888e63adbee2ac9af1c073a1b05d71cffd7bceb0d324a485e8f56ab01745d0f30b0e3791144c7a964af1998d0713d7a01e370110
7
- data.tar.gz: 2c99d6d703975c96d0c744422ce2e9e410216f21b50a6a39210a6677c6b6e5b7f5dfd59765397a1fb81905833f58eb267be3fd6b9a4cd00884973760c30ca1c3
6
+ metadata.gz: e85d9777bd2311c5309087c8c96f563709776fe5f14b2ddfb3c66a2c9d59773e791d7d00f20b39743847d458c0f8ba01e170fd99aafb48eb00c0c5a7a4797605
7
+ data.tar.gz: f28d0f948f0c8099373c1977933f2ae5859cd873e940bd5bd72945a46a77292ce0ba608da2168093e95eaf8a70ea0fdb60d307340c19389ab3e754973cb5be32
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-amplify/customizations'
48
48
  # @!group service
49
49
  module Aws::Amplify
50
50
 
51
- GEM_VERSION = '1.26.0'
51
+ GEM_VERSION = '1.27.0'
52
52
 
53
53
  end
@@ -330,7 +330,7 @@ module Aws::Amplify
330
330
  # Creates a new Amplify app.
331
331
  #
332
332
  # @option params [required, String] :name
333
- # The name for the Amplify app.
333
+ # The name for an Amplify app.
334
334
  #
335
335
  # @option params [String] :description
336
336
  # The description for an Amplify app.
@@ -381,14 +381,17 @@ module Aws::Amplify
381
381
  # @option params [String] :build_spec
382
382
  # The build specification (build spec) for an Amplify app.
383
383
  #
384
+ # @option params [String] :custom_headers
385
+ # The custom HTTP headers for an Amplify app.
386
+ #
384
387
  # @option params [Boolean] :enable_auto_branch_creation
385
- # Enables automated branch creation for the Amplify app.
388
+ # Enables automated branch creation for an Amplify app.
386
389
  #
387
390
  # @option params [Array<String>] :auto_branch_creation_patterns
388
- # The automated branch creation glob patterns for the Amplify app.
391
+ # The automated branch creation glob patterns for an Amplify app.
389
392
  #
390
393
  # @option params [Types::AutoBranchCreationConfig] :auto_branch_creation_config
391
- # The automated branch creation configuration for the Amplify app.
394
+ # The automated branch creation configuration for an Amplify app.
392
395
  #
393
396
  # @return [Types::CreateAppResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
394
397
  #
@@ -423,6 +426,7 @@ module Aws::Amplify
423
426
  # "TagKey" => "TagValue",
424
427
  # },
425
428
  # build_spec: "BuildSpec",
429
+ # custom_headers: "CustomHeaders",
426
430
  # enable_auto_branch_creation: false,
427
431
  # auto_branch_creation_patterns: ["AutoBranchCreationPattern"],
428
432
  # auto_branch_creation_config: {
@@ -471,6 +475,7 @@ module Aws::Amplify
471
475
  # resp.app.production_branch.thumbnail_url #=> String
472
476
  # resp.app.production_branch.branch_name #=> String
473
477
  # resp.app.build_spec #=> String
478
+ # resp.app.custom_headers #=> String
474
479
  # resp.app.enable_auto_branch_creation #=> Boolean
475
480
  # resp.app.auto_branch_creation_patterns #=> Array
476
481
  # resp.app.auto_branch_creation_patterns[0] #=> String
@@ -573,10 +578,12 @@ module Aws::Amplify
573
578
  # Enables basic authorization for the branch.
574
579
  #
575
580
  # @option params [Boolean] :enable_performance_mode
581
+ # Enables performance mode for the branch.
582
+ #
576
583
  # Performance mode optimizes for faster hosting performance by keeping
577
- # content cached at the edge for a longer interval. Enabling performance
578
- # mode will mean that hosting configuration or code changes can take up
579
- # to 10 minutes to roll out.
584
+ # content cached at the edge for a longer interval. When performance
585
+ # mode is enabled, hosting configuration or code changes can take up to
586
+ # 10 minutes to roll out.
580
587
  #
581
588
  # @option params [Hash<String,String>] :tags
582
589
  # The tag for the branch.
@@ -592,7 +599,7 @@ module Aws::Amplify
592
599
  # prefix.
593
600
  #
594
601
  # @option params [Boolean] :enable_pull_request_preview
595
- # Enables pull request preview for this branch.
602
+ # Enables pull request previews for this branch.
596
603
  #
597
604
  # @option params [String] :pull_request_environment_name
598
605
  # The Amplify environment name for the pull request.
@@ -877,6 +884,7 @@ module Aws::Amplify
877
884
  # resp.app.production_branch.thumbnail_url #=> String
878
885
  # resp.app.production_branch.branch_name #=> String
879
886
  # resp.app.build_spec #=> String
887
+ # resp.app.custom_headers #=> String
880
888
  # resp.app.enable_auto_branch_creation #=> Boolean
881
889
  # resp.app.auto_branch_creation_patterns #=> Array
882
890
  # resp.app.auto_branch_creation_patterns[0] #=> String
@@ -1211,6 +1219,7 @@ module Aws::Amplify
1211
1219
  # resp.app.production_branch.thumbnail_url #=> String
1212
1220
  # resp.app.production_branch.branch_name #=> String
1213
1221
  # resp.app.build_spec #=> String
1222
+ # resp.app.custom_headers #=> String
1214
1223
  # resp.app.enable_auto_branch_creation #=> Boolean
1215
1224
  # resp.app.auto_branch_creation_patterns #=> Array
1216
1225
  # resp.app.auto_branch_creation_patterns[0] #=> String
@@ -1553,6 +1562,7 @@ module Aws::Amplify
1553
1562
  # resp.apps[0].production_branch.thumbnail_url #=> String
1554
1563
  # resp.apps[0].production_branch.branch_name #=> String
1555
1564
  # resp.apps[0].build_spec #=> String
1565
+ # resp.apps[0].custom_headers #=> String
1556
1566
  # resp.apps[0].enable_auto_branch_creation #=> Boolean
1557
1567
  # resp.apps[0].auto_branch_creation_patterns #=> Array
1558
1568
  # resp.apps[0].auto_branch_creation_patterns[0] #=> String
@@ -2191,15 +2201,18 @@ module Aws::Amplify
2191
2201
  # @option params [String] :build_spec
2192
2202
  # The build specification (build spec) for an Amplify app.
2193
2203
  #
2204
+ # @option params [String] :custom_headers
2205
+ # The custom HTTP headers for an Amplify app.
2206
+ #
2194
2207
  # @option params [Boolean] :enable_auto_branch_creation
2195
- # Enables automated branch creation for the Amplify app.
2208
+ # Enables automated branch creation for an Amplify app.
2196
2209
  #
2197
2210
  # @option params [Array<String>] :auto_branch_creation_patterns
2198
- # Describes the automated branch creation glob patterns for the Amplify
2211
+ # Describes the automated branch creation glob patterns for an Amplify
2199
2212
  # app.
2200
2213
  #
2201
2214
  # @option params [Types::AutoBranchCreationConfig] :auto_branch_creation_config
2202
- # The automated branch creation configuration for the Amplify app.
2215
+ # The automated branch creation configuration for an Amplify app.
2203
2216
  #
2204
2217
  # @option params [String] :repository
2205
2218
  # The name of the repository for an Amplify app
@@ -2242,6 +2255,7 @@ module Aws::Amplify
2242
2255
  # },
2243
2256
  # ],
2244
2257
  # build_spec: "BuildSpec",
2258
+ # custom_headers: "CustomHeaders",
2245
2259
  # enable_auto_branch_creation: false,
2246
2260
  # auto_branch_creation_patterns: ["AutoBranchCreationPattern"],
2247
2261
  # auto_branch_creation_config: {
@@ -2293,6 +2307,7 @@ module Aws::Amplify
2293
2307
  # resp.app.production_branch.thumbnail_url #=> String
2294
2308
  # resp.app.production_branch.branch_name #=> String
2295
2309
  # resp.app.build_spec #=> String
2310
+ # resp.app.custom_headers #=> String
2296
2311
  # resp.app.enable_auto_branch_creation #=> Boolean
2297
2312
  # resp.app.auto_branch_creation_patterns #=> Array
2298
2313
  # resp.app.auto_branch_creation_patterns[0] #=> String
@@ -2350,10 +2365,12 @@ module Aws::Amplify
2350
2365
  # Enables basic authorization for the branch.
2351
2366
  #
2352
2367
  # @option params [Boolean] :enable_performance_mode
2368
+ # Enables performance mode for the branch.
2369
+ #
2353
2370
  # Performance mode optimizes for faster hosting performance by keeping
2354
- # content cached at the edge for a longer interval. Enabling performance
2355
- # mode will mean that hosting configuration or code changes can take up
2356
- # to 10 minutes to roll out.
2371
+ # content cached at the edge for a longer interval. When performance
2372
+ # mode is enabled, hosting configuration or code changes can take up to
2373
+ # 10 minutes to roll out.
2357
2374
  #
2358
2375
  # @option params [String] :build_spec
2359
2376
  # The build specification (build spec) for the branch.
@@ -2366,7 +2383,7 @@ module Aws::Amplify
2366
2383
  # prefix.
2367
2384
  #
2368
2385
  # @option params [Boolean] :enable_pull_request_preview
2369
- # Enables pull request preview for this branch.
2386
+ # Enables pull request previews for this branch.
2370
2387
  #
2371
2388
  # @option params [String] :pull_request_environment_name
2372
2389
  # The Amplify environment name for the pull request.
@@ -2568,7 +2585,7 @@ module Aws::Amplify
2568
2585
  params: params,
2569
2586
  config: config)
2570
2587
  context[:gem_name] = 'aws-sdk-amplify'
2571
- context[:gem_version] = '1.26.0'
2588
+ context[:gem_version] = '1.27.0'
2572
2589
  Seahorse::Client::Request.new(handlers, context)
2573
2590
  end
2574
2591
 
@@ -65,6 +65,7 @@ module Aws::Amplify
65
65
  CreateWebhookResult = Shapes::StructureShape.new(name: 'CreateWebhookResult')
66
66
  CustomDomain = Shapes::StringShape.new(name: 'CustomDomain')
67
67
  CustomDomains = Shapes::ListShape.new(name: 'CustomDomains')
68
+ CustomHeaders = Shapes::StringShape.new(name: 'CustomHeaders')
68
69
  CustomRule = Shapes::StructureShape.new(name: 'CustomRule')
69
70
  CustomRules = Shapes::ListShape.new(name: 'CustomRules')
70
71
  DNSRecord = Shapes::StringShape.new(name: 'DNSRecord')
@@ -240,6 +241,7 @@ module Aws::Amplify
240
241
  App.add_member(:custom_rules, Shapes::ShapeRef.new(shape: CustomRules, location_name: "customRules"))
241
242
  App.add_member(:production_branch, Shapes::ShapeRef.new(shape: ProductionBranch, location_name: "productionBranch"))
242
243
  App.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
244
+ App.add_member(:custom_headers, Shapes::ShapeRef.new(shape: CustomHeaders, location_name: "customHeaders"))
243
245
  App.add_member(:enable_auto_branch_creation, Shapes::ShapeRef.new(shape: EnableAutoBranchCreation, location_name: "enableAutoBranchCreation"))
244
246
  App.add_member(:auto_branch_creation_patterns, Shapes::ShapeRef.new(shape: AutoBranchCreationPatterns, location_name: "autoBranchCreationPatterns"))
245
247
  App.add_member(:auto_branch_creation_config, Shapes::ShapeRef.new(shape: AutoBranchCreationConfig, location_name: "autoBranchCreationConfig"))
@@ -330,6 +332,7 @@ module Aws::Amplify
330
332
  CreateAppRequest.add_member(:custom_rules, Shapes::ShapeRef.new(shape: CustomRules, location_name: "customRules"))
331
333
  CreateAppRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
332
334
  CreateAppRequest.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
335
+ CreateAppRequest.add_member(:custom_headers, Shapes::ShapeRef.new(shape: CustomHeaders, location_name: "customHeaders"))
333
336
  CreateAppRequest.add_member(:enable_auto_branch_creation, Shapes::ShapeRef.new(shape: EnableAutoBranchCreation, location_name: "enableAutoBranchCreation"))
334
337
  CreateAppRequest.add_member(:auto_branch_creation_patterns, Shapes::ShapeRef.new(shape: AutoBranchCreationPatterns, location_name: "autoBranchCreationPatterns"))
335
338
  CreateAppRequest.add_member(:auto_branch_creation_config, Shapes::ShapeRef.new(shape: AutoBranchCreationConfig, location_name: "autoBranchCreationConfig"))
@@ -733,6 +736,7 @@ module Aws::Amplify
733
736
  UpdateAppRequest.add_member(:basic_auth_credentials, Shapes::ShapeRef.new(shape: BasicAuthCredentials, location_name: "basicAuthCredentials"))
734
737
  UpdateAppRequest.add_member(:custom_rules, Shapes::ShapeRef.new(shape: CustomRules, location_name: "customRules"))
735
738
  UpdateAppRequest.add_member(:build_spec, Shapes::ShapeRef.new(shape: BuildSpec, location_name: "buildSpec"))
739
+ UpdateAppRequest.add_member(:custom_headers, Shapes::ShapeRef.new(shape: CustomHeaders, location_name: "customHeaders"))
736
740
  UpdateAppRequest.add_member(:enable_auto_branch_creation, Shapes::ShapeRef.new(shape: EnableAutoBranchCreation, location_name: "enableAutoBranchCreation"))
737
741
  UpdateAppRequest.add_member(:auto_branch_creation_patterns, Shapes::ShapeRef.new(shape: AutoBranchCreationPatterns, location_name: "autoBranchCreationPatterns"))
738
742
  UpdateAppRequest.add_member(:auto_branch_creation_config, Shapes::ShapeRef.new(shape: AutoBranchCreationConfig, location_name: "autoBranchCreationConfig"))
@@ -94,6 +94,10 @@ module Aws::Amplify
94
94
  # the Amplify app.
95
95
  # @return [String]
96
96
  #
97
+ # @!attribute [rw] custom_headers
98
+ # Describes the custom HTTP headers for the Amplify app.
99
+ # @return [String]
100
+ #
97
101
  # @!attribute [rw] enable_auto_branch_creation
98
102
  # Enables automated branch creation for the Amplify app.
99
103
  # @return [Boolean]
@@ -130,6 +134,7 @@ module Aws::Amplify
130
134
  :custom_rules,
131
135
  :production_branch,
132
136
  :build_spec,
137
+ :custom_headers,
133
138
  :enable_auto_branch_creation,
134
139
  :auto_branch_creation_patterns,
135
140
  :auto_branch_creation_config)
@@ -201,10 +206,12 @@ module Aws::Amplify
201
206
  # @return [Boolean]
202
207
  #
203
208
  # @!attribute [rw] enable_performance_mode
209
+ # Enables performance mode for the branch.
210
+ #
204
211
  # Performance mode optimizes for faster hosting performance by keeping
205
- # content cached at the edge for a longer interval. Enabling
206
- # performance mode will mean that hosting configuration or code
207
- # changes can take up to 10 minutes to roll out.
212
+ # content cached at the edge for a longer interval. When performance
213
+ # mode is enabled, hosting configuration or code changes can take up
214
+ # to 10 minutes to roll out.
208
215
  # @return [Boolean]
209
216
  #
210
217
  # @!attribute [rw] build_spec
@@ -212,7 +219,7 @@ module Aws::Amplify
212
219
  # @return [String]
213
220
  #
214
221
  # @!attribute [rw] enable_pull_request_preview
215
- # Enables pull request preview for the autocreated branch.
222
+ # Enables pull request previews for the autocreated branch.
216
223
  # @return [Boolean]
217
224
  #
218
225
  # @!attribute [rw] pull_request_environment_name
@@ -363,10 +370,12 @@ module Aws::Amplify
363
370
  # @return [Boolean]
364
371
  #
365
372
  # @!attribute [rw] enable_performance_mode
373
+ # Enables performance mode for the branch.
374
+ #
366
375
  # Performance mode optimizes for faster hosting performance by keeping
367
- # content cached at the edge for a longer interval. Enabling
368
- # performance mode will mean that hosting configuration or code
369
- # changes can take up to 10 minutes to roll out.
376
+ # content cached at the edge for a longer interval. When performance
377
+ # mode is enabled, hosting configuration or code changes can take up
378
+ # to 10 minutes to roll out.
370
379
  # @return [Boolean]
371
380
  #
372
381
  # @!attribute [rw] thumbnail_url
@@ -391,7 +400,7 @@ module Aws::Amplify
391
400
  # @return [Array<String>]
392
401
  #
393
402
  # @!attribute [rw] enable_pull_request_preview
394
- # Enables pull request preview for the branch.
403
+ # Enables pull request previews for the branch.
395
404
  # @return [Boolean]
396
405
  #
397
406
  # @!attribute [rw] pull_request_environment_name
@@ -477,6 +486,7 @@ module Aws::Amplify
477
486
  # "TagKey" => "TagValue",
478
487
  # },
479
488
  # build_spec: "BuildSpec",
489
+ # custom_headers: "CustomHeaders",
480
490
  # enable_auto_branch_creation: false,
481
491
  # auto_branch_creation_patterns: ["AutoBranchCreationPattern"],
482
492
  # auto_branch_creation_config: {
@@ -496,7 +506,7 @@ module Aws::Amplify
496
506
  # }
497
507
  #
498
508
  # @!attribute [rw] name
499
- # The name for the Amplify app.
509
+ # The name for an Amplify app.
500
510
  # @return [String]
501
511
  #
502
512
  # @!attribute [rw] description
@@ -562,16 +572,20 @@ module Aws::Amplify
562
572
  # The build specification (build spec) for an Amplify app.
563
573
  # @return [String]
564
574
  #
575
+ # @!attribute [rw] custom_headers
576
+ # The custom HTTP headers for an Amplify app.
577
+ # @return [String]
578
+ #
565
579
  # @!attribute [rw] enable_auto_branch_creation
566
- # Enables automated branch creation for the Amplify app.
580
+ # Enables automated branch creation for an Amplify app.
567
581
  # @return [Boolean]
568
582
  #
569
583
  # @!attribute [rw] auto_branch_creation_patterns
570
- # The automated branch creation glob patterns for the Amplify app.
584
+ # The automated branch creation glob patterns for an Amplify app.
571
585
  # @return [Array<String>]
572
586
  #
573
587
  # @!attribute [rw] auto_branch_creation_config
574
- # The automated branch creation configuration for the Amplify app.
588
+ # The automated branch creation configuration for an Amplify app.
575
589
  # @return [Types::AutoBranchCreationConfig]
576
590
  #
577
591
  # @see http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/CreateAppRequest AWS API Documentation
@@ -592,6 +606,7 @@ module Aws::Amplify
592
606
  :custom_rules,
593
607
  :tags,
594
608
  :build_spec,
609
+ :custom_headers,
595
610
  :enable_auto_branch_creation,
596
611
  :auto_branch_creation_patterns,
597
612
  :auto_branch_creation_config)
@@ -736,10 +751,12 @@ module Aws::Amplify
736
751
  # @return [Boolean]
737
752
  #
738
753
  # @!attribute [rw] enable_performance_mode
754
+ # Enables performance mode for the branch.
755
+ #
739
756
  # Performance mode optimizes for faster hosting performance by keeping
740
- # content cached at the edge for a longer interval. Enabling
741
- # performance mode will mean that hosting configuration or code
742
- # changes can take up to 10 minutes to roll out.
757
+ # content cached at the edge for a longer interval. When performance
758
+ # mode is enabled, hosting configuration or code changes can take up
759
+ # to 10 minutes to roll out.
743
760
  # @return [Boolean]
744
761
  #
745
762
  # @!attribute [rw] tags
@@ -760,7 +777,7 @@ module Aws::Amplify
760
777
  # @return [String]
761
778
  #
762
779
  # @!attribute [rw] enable_pull_request_preview
763
- # Enables pull request preview for this branch.
780
+ # Enables pull request previews for this branch.
764
781
  # @return [Boolean]
765
782
  #
766
783
  # @!attribute [rw] pull_request_environment_name
@@ -2720,6 +2737,7 @@ module Aws::Amplify
2720
2737
  # },
2721
2738
  # ],
2722
2739
  # build_spec: "BuildSpec",
2740
+ # custom_headers: "CustomHeaders",
2723
2741
  # enable_auto_branch_creation: false,
2724
2742
  # auto_branch_creation_patterns: ["AutoBranchCreationPattern"],
2725
2743
  # auto_branch_creation_config: {
@@ -2791,17 +2809,21 @@ module Aws::Amplify
2791
2809
  # The build specification (build spec) for an Amplify app.
2792
2810
  # @return [String]
2793
2811
  #
2812
+ # @!attribute [rw] custom_headers
2813
+ # The custom HTTP headers for an Amplify app.
2814
+ # @return [String]
2815
+ #
2794
2816
  # @!attribute [rw] enable_auto_branch_creation
2795
- # Enables automated branch creation for the Amplify app.
2817
+ # Enables automated branch creation for an Amplify app.
2796
2818
  # @return [Boolean]
2797
2819
  #
2798
2820
  # @!attribute [rw] auto_branch_creation_patterns
2799
- # Describes the automated branch creation glob patterns for the
2800
- # Amplify app.
2821
+ # Describes the automated branch creation glob patterns for an Amplify
2822
+ # app.
2801
2823
  # @return [Array<String>]
2802
2824
  #
2803
2825
  # @!attribute [rw] auto_branch_creation_config
2804
- # The automated branch creation configuration for the Amplify app.
2826
+ # The automated branch creation configuration for an Amplify app.
2805
2827
  # @return [Types::AutoBranchCreationConfig]
2806
2828
  #
2807
2829
  # @!attribute [rw] repository
@@ -2835,6 +2857,7 @@ module Aws::Amplify
2835
2857
  :basic_auth_credentials,
2836
2858
  :custom_rules,
2837
2859
  :build_spec,
2860
+ :custom_headers,
2838
2861
  :enable_auto_branch_creation,
2839
2862
  :auto_branch_creation_patterns,
2840
2863
  :auto_branch_creation_config,
@@ -2927,10 +2950,12 @@ module Aws::Amplify
2927
2950
  # @return [Boolean]
2928
2951
  #
2929
2952
  # @!attribute [rw] enable_performance_mode
2953
+ # Enables performance mode for the branch.
2954
+ #
2930
2955
  # Performance mode optimizes for faster hosting performance by keeping
2931
- # content cached at the edge for a longer interval. Enabling
2932
- # performance mode will mean that hosting configuration or code
2933
- # changes can take up to 10 minutes to roll out.
2956
+ # content cached at the edge for a longer interval. When performance
2957
+ # mode is enabled, hosting configuration or code changes can take up
2958
+ # to 10 minutes to roll out.
2934
2959
  # @return [Boolean]
2935
2960
  #
2936
2961
  # @!attribute [rw] build_spec
@@ -2947,7 +2972,7 @@ module Aws::Amplify
2947
2972
  # @return [String]
2948
2973
  #
2949
2974
  # @!attribute [rw] enable_pull_request_preview
2950
- # Enables pull request preview for this branch.
2975
+ # Enables pull request previews for this branch.
2951
2976
  # @return [Boolean]
2952
2977
  #
2953
2978
  # @!attribute [rw] pull_request_environment_name
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-amplify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.26.0
4
+ version: 1.27.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-09 00:00:00.000000000 Z
11
+ date: 2020-11-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core