aws-sdk-appsync 1.49.0 → 1.52.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: e1d99afb412cf0449db82d5c426830b60cfd13378a9fd329f877c28fbd47caa8
4
- data.tar.gz: fc857776beca0f0aeae5d8f1a5011d4538bd679e64ee82424a7228cff19c805c
3
+ metadata.gz: e8305b019344d7d276bb1fec66b081ffe0839c485965f1108bbbaabd44024643
4
+ data.tar.gz: 40f2e3d8c3b06416f4de0f0c7e8736771d125541fa0d514f87d422424b4ceea0
5
5
  SHA512:
6
- metadata.gz: 3e3a71d8046334808d93ab87958bfc49501bd918bfecd85ee65696790569d55998fe9948b0bfbe7629fc3945c3c75cb5bac30115626f177d8a9e82e2f0d2e124
7
- data.tar.gz: 0b26ce9504a4e218d3e3fb1b58e50b850f5af7a13352e80e5bdba9feae8a82448834d17df43b68a784808ec883acfec32c4287937461ea4135c5172fa0c27afb
6
+ metadata.gz: 7a7031121b69a61c27df7dfcc2b8c4d87a51b8ab284d5b0de7c0f3fafa27ef4c5264fc9a9816154a236ddab66ea84f26e17e9c3640ef96160fa4a3fff2359ee0
7
+ data.tar.gz: f283e13b6cbec57d5c86820140711f2e8db93d8a2b1b9f6302bb6d9ae189685c7d4aaa397975cb1ad50b901ba310ee36da9c87530391888478f23083e7e6681c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.52.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.51.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.50.0 (2022-01-06)
15
+ ------------------
16
+
17
+ * Feature - AppSync: AWS AppSync now supports configurable batching sizes for AWS Lambda resolvers, Direct AWS Lambda resolvers and pipeline functions
18
+
4
19
  1.49.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.52.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::AppSync
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::RestJson)
80
84
 
@@ -737,6 +741,9 @@ module Aws::AppSync
737
741
  # Specifies which Conflict Detection strategy and Resolution strategy to
738
742
  # use when the resolver is invoked.
739
743
  #
744
+ # @option params [Integer] :max_batch_size
745
+ # The maximum batching size for a resolver.
746
+ #
740
747
  # @return [Types::CreateFunctionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
741
748
  #
742
749
  # * {Types::CreateFunctionResponse#function_configuration #function_configuration} => Types::FunctionConfiguration
@@ -758,6 +765,7 @@ module Aws::AppSync
758
765
  # lambda_conflict_handler_arn: "String",
759
766
  # },
760
767
  # },
768
+ # max_batch_size: 1,
761
769
  # })
762
770
  #
763
771
  # @example Response structure
@@ -773,6 +781,7 @@ module Aws::AppSync
773
781
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
774
782
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
775
783
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
784
+ # resp.function_configuration.max_batch_size #=> Integer
776
785
  #
777
786
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateFunction AWS API Documentation
778
787
  #
@@ -973,6 +982,9 @@ module Aws::AppSync
973
982
  # @option params [Types::CachingConfig] :caching_config
974
983
  # The caching configuration for the resolver.
975
984
  #
985
+ # @option params [Integer] :max_batch_size
986
+ # The maximum batching size for a resolver.
987
+ #
976
988
  # @return [Types::CreateResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
977
989
  #
978
990
  # * {Types::CreateResolverResponse#resolver #resolver} => Types::Resolver
@@ -1001,6 +1013,7 @@ module Aws::AppSync
1001
1013
  # ttl: 1,
1002
1014
  # caching_keys: ["String"],
1003
1015
  # },
1016
+ # max_batch_size: 1,
1004
1017
  # })
1005
1018
  #
1006
1019
  # @example Response structure
@@ -1020,6 +1033,7 @@ module Aws::AppSync
1020
1033
  # resp.resolver.caching_config.ttl #=> Integer
1021
1034
  # resp.resolver.caching_config.caching_keys #=> Array
1022
1035
  # resp.resolver.caching_config.caching_keys[0] #=> String
1036
+ # resp.resolver.max_batch_size #=> Integer
1023
1037
  #
1024
1038
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateResolver AWS API Documentation
1025
1039
  #
@@ -1507,6 +1521,7 @@ module Aws::AppSync
1507
1521
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
1508
1522
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
1509
1523
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
1524
+ # resp.function_configuration.max_batch_size #=> Integer
1510
1525
  #
1511
1526
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetFunction AWS API Documentation
1512
1527
  #
@@ -1657,6 +1672,7 @@ module Aws::AppSync
1657
1672
  # resp.resolver.caching_config.ttl #=> Integer
1658
1673
  # resp.resolver.caching_config.caching_keys #=> Array
1659
1674
  # resp.resolver.caching_config.caching_keys[0] #=> String
1675
+ # resp.resolver.max_batch_size #=> Integer
1660
1676
  #
1661
1677
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetResolver AWS API Documentation
1662
1678
  #
@@ -1934,6 +1950,7 @@ module Aws::AppSync
1934
1950
  # resp.functions[0].sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
1935
1951
  # resp.functions[0].sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
1936
1952
  # resp.functions[0].sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
1953
+ # resp.functions[0].max_batch_size #=> Integer
1937
1954
  # resp.next_token #=> String
1938
1955
  #
1939
1956
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListFunctions AWS API Documentation
@@ -2065,6 +2082,7 @@ module Aws::AppSync
2065
2082
  # resp.resolvers[0].caching_config.ttl #=> Integer
2066
2083
  # resp.resolvers[0].caching_config.caching_keys #=> Array
2067
2084
  # resp.resolvers[0].caching_config.caching_keys[0] #=> String
2085
+ # resp.resolvers[0].max_batch_size #=> Integer
2068
2086
  # resp.next_token #=> String
2069
2087
  #
2070
2088
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListResolvers AWS API Documentation
@@ -2124,6 +2142,7 @@ module Aws::AppSync
2124
2142
  # resp.resolvers[0].caching_config.ttl #=> Integer
2125
2143
  # resp.resolvers[0].caching_config.caching_keys #=> Array
2126
2144
  # resp.resolvers[0].caching_config.caching_keys[0] #=> String
2145
+ # resp.resolvers[0].max_batch_size #=> Integer
2127
2146
  # resp.next_token #=> String
2128
2147
  #
2129
2148
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListResolversByFunction AWS API Documentation
@@ -2642,6 +2661,9 @@ module Aws::AppSync
2642
2661
  # Specifies which Conflict Detection strategy and Resolution strategy to
2643
2662
  # use when the resolver is invoked.
2644
2663
  #
2664
+ # @option params [Integer] :max_batch_size
2665
+ # The maximum batching size for a resolver.
2666
+ #
2645
2667
  # @return [Types::UpdateFunctionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2646
2668
  #
2647
2669
  # * {Types::UpdateFunctionResponse#function_configuration #function_configuration} => Types::FunctionConfiguration
@@ -2664,6 +2686,7 @@ module Aws::AppSync
2664
2686
  # lambda_conflict_handler_arn: "String",
2665
2687
  # },
2666
2688
  # },
2689
+ # max_batch_size: 1,
2667
2690
  # })
2668
2691
  #
2669
2692
  # @example Response structure
@@ -2679,6 +2702,7 @@ module Aws::AppSync
2679
2702
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
2680
2703
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
2681
2704
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
2705
+ # resp.function_configuration.max_batch_size #=> Integer
2682
2706
  #
2683
2707
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateFunction AWS API Documentation
2684
2708
  #
@@ -2873,6 +2897,9 @@ module Aws::AppSync
2873
2897
  # @option params [Types::CachingConfig] :caching_config
2874
2898
  # The caching configuration for the resolver.
2875
2899
  #
2900
+ # @option params [Integer] :max_batch_size
2901
+ # The maximum batching size for a resolver.
2902
+ #
2876
2903
  # @return [Types::UpdateResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2877
2904
  #
2878
2905
  # * {Types::UpdateResolverResponse#resolver #resolver} => Types::Resolver
@@ -2901,6 +2928,7 @@ module Aws::AppSync
2901
2928
  # ttl: 1,
2902
2929
  # caching_keys: ["String"],
2903
2930
  # },
2931
+ # max_batch_size: 1,
2904
2932
  # })
2905
2933
  #
2906
2934
  # @example Response structure
@@ -2920,6 +2948,7 @@ module Aws::AppSync
2920
2948
  # resp.resolver.caching_config.ttl #=> Integer
2921
2949
  # resp.resolver.caching_config.caching_keys #=> Array
2922
2950
  # resp.resolver.caching_config.caching_keys[0] #=> String
2951
+ # resp.resolver.max_batch_size #=> Integer
2923
2952
  #
2924
2953
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateResolver AWS API Documentation
2925
2954
  #
@@ -2987,7 +3016,7 @@ module Aws::AppSync
2987
3016
  params: params,
2988
3017
  config: config)
2989
3018
  context[:gem_name] = 'aws-sdk-appsync'
2990
- context[:gem_version] = '1.49.0'
3019
+ context[:gem_version] = '1.52.0'
2991
3020
  Seahorse::Client::Request.new(handlers, context)
2992
3021
  end
2993
3022
 
@@ -147,6 +147,7 @@ module Aws::AppSync
147
147
  Long = Shapes::IntegerShape.new(name: 'Long')
148
148
  MapOfStringToString = Shapes::MapShape.new(name: 'MapOfStringToString')
149
149
  MappingTemplate = Shapes::StringShape.new(name: 'MappingTemplate')
150
+ MaxBatchSize = Shapes::IntegerShape.new(name: 'MaxBatchSize')
150
151
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
151
152
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
152
153
  OpenIDConnectConfig = Shapes::StructureShape.new(name: 'OpenIDConnectConfig')
@@ -323,6 +324,7 @@ module Aws::AppSync
323
324
  CreateFunctionRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
324
325
  CreateFunctionRequest.add_member(:function_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "functionVersion"))
325
326
  CreateFunctionRequest.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
327
+ CreateFunctionRequest.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
326
328
  CreateFunctionRequest.struct_class = Types::CreateFunctionRequest
327
329
 
328
330
  CreateFunctionResponse.add_member(:function_configuration, Shapes::ShapeRef.new(shape: FunctionConfiguration, location_name: "functionConfiguration"))
@@ -352,6 +354,7 @@ module Aws::AppSync
352
354
  CreateResolverRequest.add_member(:pipeline_config, Shapes::ShapeRef.new(shape: PipelineConfig, location_name: "pipelineConfig"))
353
355
  CreateResolverRequest.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
354
356
  CreateResolverRequest.add_member(:caching_config, Shapes::ShapeRef.new(shape: CachingConfig, location_name: "cachingConfig"))
357
+ CreateResolverRequest.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
355
358
  CreateResolverRequest.struct_class = Types::CreateResolverRequest
356
359
 
357
360
  CreateResolverResponse.add_member(:resolver, Shapes::ShapeRef.new(shape: Resolver, location_name: "resolver"))
@@ -470,6 +473,7 @@ module Aws::AppSync
470
473
  FunctionConfiguration.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
471
474
  FunctionConfiguration.add_member(:function_version, Shapes::ShapeRef.new(shape: String, location_name: "functionVersion"))
472
475
  FunctionConfiguration.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
476
+ FunctionConfiguration.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
473
477
  FunctionConfiguration.struct_class = Types::FunctionConfiguration
474
478
 
475
479
  Functions.member = Shapes::ShapeRef.new(shape: FunctionConfiguration)
@@ -712,6 +716,7 @@ module Aws::AppSync
712
716
  Resolver.add_member(:pipeline_config, Shapes::ShapeRef.new(shape: PipelineConfig, location_name: "pipelineConfig"))
713
717
  Resolver.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
714
718
  Resolver.add_member(:caching_config, Shapes::ShapeRef.new(shape: CachingConfig, location_name: "cachingConfig"))
719
+ Resolver.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
715
720
  Resolver.struct_class = Types::Resolver
716
721
 
717
722
  Resolvers.member = Shapes::ShapeRef.new(shape: Resolver)
@@ -807,6 +812,7 @@ module Aws::AppSync
807
812
  UpdateFunctionRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
808
813
  UpdateFunctionRequest.add_member(:function_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "functionVersion"))
809
814
  UpdateFunctionRequest.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
815
+ UpdateFunctionRequest.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
810
816
  UpdateFunctionRequest.struct_class = Types::UpdateFunctionRequest
811
817
 
812
818
  UpdateFunctionResponse.add_member(:function_configuration, Shapes::ShapeRef.new(shape: FunctionConfiguration, location_name: "functionConfiguration"))
@@ -836,6 +842,7 @@ module Aws::AppSync
836
842
  UpdateResolverRequest.add_member(:pipeline_config, Shapes::ShapeRef.new(shape: PipelineConfig, location_name: "pipelineConfig"))
837
843
  UpdateResolverRequest.add_member(:sync_config, Shapes::ShapeRef.new(shape: SyncConfig, location_name: "syncConfig"))
838
844
  UpdateResolverRequest.add_member(:caching_config, Shapes::ShapeRef.new(shape: CachingConfig, location_name: "cachingConfig"))
845
+ UpdateResolverRequest.add_member(:max_batch_size, Shapes::ShapeRef.new(shape: MaxBatchSize, location_name: "maxBatchSize"))
839
846
  UpdateResolverRequest.struct_class = Types::UpdateResolverRequest
840
847
 
841
848
  UpdateResolverResponse.add_member(:resolver, Shapes::ShapeRef.new(shape: Resolver, location_name: "resolver"))
@@ -874,6 +874,7 @@ module Aws::AppSync
874
874
  # lambda_conflict_handler_arn: "String",
875
875
  # },
876
876
  # },
877
+ # max_batch_size: 1,
877
878
  # }
878
879
  #
879
880
  # @!attribute [rw] api_id
@@ -913,6 +914,10 @@ module Aws::AppSync
913
914
  # to use when the resolver is invoked.
914
915
  # @return [Types::SyncConfig]
915
916
  #
917
+ # @!attribute [rw] max_batch_size
918
+ # The maximum batching size for a resolver.
919
+ # @return [Integer]
920
+ #
916
921
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateFunctionRequest AWS API Documentation
917
922
  #
918
923
  class CreateFunctionRequest < Struct.new(
@@ -923,7 +928,8 @@ module Aws::AppSync
923
928
  :request_mapping_template,
924
929
  :response_mapping_template,
925
930
  :function_version,
926
- :sync_config)
931
+ :sync_config,
932
+ :max_batch_size)
927
933
  SENSITIVE = []
928
934
  include Aws::Structure
929
935
  end
@@ -1086,6 +1092,7 @@ module Aws::AppSync
1086
1092
  # ttl: 1,
1087
1093
  # caching_keys: ["String"],
1088
1094
  # },
1095
+ # max_batch_size: 1,
1089
1096
  # }
1090
1097
  #
1091
1098
  # @!attribute [rw] api_id
@@ -1145,6 +1152,10 @@ module Aws::AppSync
1145
1152
  # The caching configuration for the resolver.
1146
1153
  # @return [Types::CachingConfig]
1147
1154
  #
1155
+ # @!attribute [rw] max_batch_size
1156
+ # The maximum batching size for a resolver.
1157
+ # @return [Integer]
1158
+ #
1148
1159
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateResolverRequest AWS API Documentation
1149
1160
  #
1150
1161
  class CreateResolverRequest < Struct.new(
@@ -1157,7 +1168,8 @@ module Aws::AppSync
1157
1168
  :kind,
1158
1169
  :pipeline_config,
1159
1170
  :sync_config,
1160
- :caching_config)
1171
+ :caching_config,
1172
+ :max_batch_size)
1161
1173
  SENSITIVE = []
1162
1174
  include Aws::Structure
1163
1175
  end
@@ -1781,6 +1793,10 @@ module Aws::AppSync
1781
1793
  # to use when the resolver is invoked.
1782
1794
  # @return [Types::SyncConfig]
1783
1795
  #
1796
+ # @!attribute [rw] max_batch_size
1797
+ # The maximum batching size for a resolver.
1798
+ # @return [Integer]
1799
+ #
1784
1800
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/FunctionConfiguration AWS API Documentation
1785
1801
  #
1786
1802
  class FunctionConfiguration < Struct.new(
@@ -1792,7 +1808,8 @@ module Aws::AppSync
1792
1808
  :request_mapping_template,
1793
1809
  :response_mapping_template,
1794
1810
  :function_version,
1795
- :sync_config)
1811
+ :sync_config,
1812
+ :max_batch_size)
1796
1813
  SENSITIVE = []
1797
1814
  include Aws::Structure
1798
1815
  end
@@ -3165,6 +3182,10 @@ module Aws::AppSync
3165
3182
  # The caching configuration for the resolver.
3166
3183
  # @return [Types::CachingConfig]
3167
3184
  #
3185
+ # @!attribute [rw] max_batch_size
3186
+ # The maximum batching size for a resolver.
3187
+ # @return [Integer]
3188
+ #
3168
3189
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/Resolver AWS API Documentation
3169
3190
  #
3170
3191
  class Resolver < Struct.new(
@@ -3177,7 +3198,8 @@ module Aws::AppSync
3177
3198
  :kind,
3178
3199
  :pipeline_config,
3179
3200
  :sync_config,
3180
- :caching_config)
3201
+ :caching_config,
3202
+ :max_batch_size)
3181
3203
  SENSITIVE = []
3182
3204
  include Aws::Structure
3183
3205
  end
@@ -3719,6 +3741,7 @@ module Aws::AppSync
3719
3741
  # lambda_conflict_handler_arn: "String",
3720
3742
  # },
3721
3743
  # },
3744
+ # max_batch_size: 1,
3722
3745
  # }
3723
3746
  #
3724
3747
  # @!attribute [rw] api_id
@@ -3762,6 +3785,10 @@ module Aws::AppSync
3762
3785
  # to use when the resolver is invoked.
3763
3786
  # @return [Types::SyncConfig]
3764
3787
  #
3788
+ # @!attribute [rw] max_batch_size
3789
+ # The maximum batching size for a resolver.
3790
+ # @return [Integer]
3791
+ #
3765
3792
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateFunctionRequest AWS API Documentation
3766
3793
  #
3767
3794
  class UpdateFunctionRequest < Struct.new(
@@ -3773,7 +3800,8 @@ module Aws::AppSync
3773
3800
  :request_mapping_template,
3774
3801
  :response_mapping_template,
3775
3802
  :function_version,
3776
- :sync_config)
3803
+ :sync_config,
3804
+ :max_batch_size)
3777
3805
  SENSITIVE = []
3778
3806
  include Aws::Structure
3779
3807
  end
@@ -3935,6 +3963,7 @@ module Aws::AppSync
3935
3963
  # ttl: 1,
3936
3964
  # caching_keys: ["String"],
3937
3965
  # },
3966
+ # max_batch_size: 1,
3938
3967
  # }
3939
3968
  #
3940
3969
  # @!attribute [rw] api_id
@@ -3994,6 +4023,10 @@ module Aws::AppSync
3994
4023
  # The caching configuration for the resolver.
3995
4024
  # @return [Types::CachingConfig]
3996
4025
  #
4026
+ # @!attribute [rw] max_batch_size
4027
+ # The maximum batching size for a resolver.
4028
+ # @return [Integer]
4029
+ #
3997
4030
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateResolverRequest AWS API Documentation
3998
4031
  #
3999
4032
  class UpdateResolverRequest < Struct.new(
@@ -4006,7 +4039,8 @@ module Aws::AppSync
4006
4039
  :kind,
4007
4040
  :pipeline_config,
4008
4041
  :sync_config,
4009
- :caching_config)
4042
+ :caching_config,
4043
+ :max_batch_size)
4010
4044
  SENSITIVE = []
4011
4045
  include Aws::Structure
4012
4046
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-appsync/customizations'
48
48
  # @!group service
49
49
  module Aws::AppSync
50
50
 
51
- GEM_VERSION = '1.49.0'
51
+ GEM_VERSION = '1.52.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appsync
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.49.0
4
+ version: 1.52.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement