aws-sdk-appsync 1.49.0 → 1.50.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: 4f0b0a65c3e1543cb24d043e9b5d0dcd24c9a43c830b057898a5cbafcbebe2bd
4
+ data.tar.gz: 7c28a134d58787164c6ff18ad2c44819cad666f65a8e84f85362bd7f93e490f5
5
5
  SHA512:
6
- metadata.gz: 3e3a71d8046334808d93ab87958bfc49501bd918bfecd85ee65696790569d55998fe9948b0bfbe7629fc3945c3c75cb5bac30115626f177d8a9e82e2f0d2e124
7
- data.tar.gz: 0b26ce9504a4e218d3e3fb1b58e50b850f5af7a13352e80e5bdba9feae8a82448834d17df43b68a784808ec883acfec32c4287937461ea4135c5172fa0c27afb
6
+ metadata.gz: 7b57516dfad9c096e4b62f140ab100f162aad61e375a2b8b12311e1da3f1ab97b10595934188bf2a52da2997780ecfd9f37cb210ac4180949eb45dd16ae3d4c2
7
+ data.tar.gz: e6e59e1f7d62f4e9001f7a45e4eaba2f627fb38e963d558350295bb6671021a5dd743e915779dd78b4f4ddd7324fd294f9ce3da50c2558e079a9bf8d6c559d71
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2022-01-06)
5
+ ------------------
6
+
7
+ * Feature - AppSync: AWS AppSync now supports configurable batching sizes for AWS Lambda resolvers, Direct AWS Lambda resolvers and pipeline functions
8
+
4
9
  1.49.0 (2021-12-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -737,6 +737,9 @@ module Aws::AppSync
737
737
  # Specifies which Conflict Detection strategy and Resolution strategy to
738
738
  # use when the resolver is invoked.
739
739
  #
740
+ # @option params [Integer] :max_batch_size
741
+ # The maximum batching size for a resolver.
742
+ #
740
743
  # @return [Types::CreateFunctionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
741
744
  #
742
745
  # * {Types::CreateFunctionResponse#function_configuration #function_configuration} => Types::FunctionConfiguration
@@ -758,6 +761,7 @@ module Aws::AppSync
758
761
  # lambda_conflict_handler_arn: "String",
759
762
  # },
760
763
  # },
764
+ # max_batch_size: 1,
761
765
  # })
762
766
  #
763
767
  # @example Response structure
@@ -773,6 +777,7 @@ module Aws::AppSync
773
777
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
774
778
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
775
779
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
780
+ # resp.function_configuration.max_batch_size #=> Integer
776
781
  #
777
782
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateFunction AWS API Documentation
778
783
  #
@@ -973,6 +978,9 @@ module Aws::AppSync
973
978
  # @option params [Types::CachingConfig] :caching_config
974
979
  # The caching configuration for the resolver.
975
980
  #
981
+ # @option params [Integer] :max_batch_size
982
+ # The maximum batching size for a resolver.
983
+ #
976
984
  # @return [Types::CreateResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
977
985
  #
978
986
  # * {Types::CreateResolverResponse#resolver #resolver} => Types::Resolver
@@ -1001,6 +1009,7 @@ module Aws::AppSync
1001
1009
  # ttl: 1,
1002
1010
  # caching_keys: ["String"],
1003
1011
  # },
1012
+ # max_batch_size: 1,
1004
1013
  # })
1005
1014
  #
1006
1015
  # @example Response structure
@@ -1020,6 +1029,7 @@ module Aws::AppSync
1020
1029
  # resp.resolver.caching_config.ttl #=> Integer
1021
1030
  # resp.resolver.caching_config.caching_keys #=> Array
1022
1031
  # resp.resolver.caching_config.caching_keys[0] #=> String
1032
+ # resp.resolver.max_batch_size #=> Integer
1023
1033
  #
1024
1034
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateResolver AWS API Documentation
1025
1035
  #
@@ -1507,6 +1517,7 @@ module Aws::AppSync
1507
1517
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
1508
1518
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
1509
1519
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
1520
+ # resp.function_configuration.max_batch_size #=> Integer
1510
1521
  #
1511
1522
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetFunction AWS API Documentation
1512
1523
  #
@@ -1657,6 +1668,7 @@ module Aws::AppSync
1657
1668
  # resp.resolver.caching_config.ttl #=> Integer
1658
1669
  # resp.resolver.caching_config.caching_keys #=> Array
1659
1670
  # resp.resolver.caching_config.caching_keys[0] #=> String
1671
+ # resp.resolver.max_batch_size #=> Integer
1660
1672
  #
1661
1673
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetResolver AWS API Documentation
1662
1674
  #
@@ -1934,6 +1946,7 @@ module Aws::AppSync
1934
1946
  # resp.functions[0].sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
1935
1947
  # resp.functions[0].sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
1936
1948
  # resp.functions[0].sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
1949
+ # resp.functions[0].max_batch_size #=> Integer
1937
1950
  # resp.next_token #=> String
1938
1951
  #
1939
1952
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListFunctions AWS API Documentation
@@ -2065,6 +2078,7 @@ module Aws::AppSync
2065
2078
  # resp.resolvers[0].caching_config.ttl #=> Integer
2066
2079
  # resp.resolvers[0].caching_config.caching_keys #=> Array
2067
2080
  # resp.resolvers[0].caching_config.caching_keys[0] #=> String
2081
+ # resp.resolvers[0].max_batch_size #=> Integer
2068
2082
  # resp.next_token #=> String
2069
2083
  #
2070
2084
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListResolvers AWS API Documentation
@@ -2124,6 +2138,7 @@ module Aws::AppSync
2124
2138
  # resp.resolvers[0].caching_config.ttl #=> Integer
2125
2139
  # resp.resolvers[0].caching_config.caching_keys #=> Array
2126
2140
  # resp.resolvers[0].caching_config.caching_keys[0] #=> String
2141
+ # resp.resolvers[0].max_batch_size #=> Integer
2127
2142
  # resp.next_token #=> String
2128
2143
  #
2129
2144
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/ListResolversByFunction AWS API Documentation
@@ -2642,6 +2657,9 @@ module Aws::AppSync
2642
2657
  # Specifies which Conflict Detection strategy and Resolution strategy to
2643
2658
  # use when the resolver is invoked.
2644
2659
  #
2660
+ # @option params [Integer] :max_batch_size
2661
+ # The maximum batching size for a resolver.
2662
+ #
2645
2663
  # @return [Types::UpdateFunctionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2646
2664
  #
2647
2665
  # * {Types::UpdateFunctionResponse#function_configuration #function_configuration} => Types::FunctionConfiguration
@@ -2664,6 +2682,7 @@ module Aws::AppSync
2664
2682
  # lambda_conflict_handler_arn: "String",
2665
2683
  # },
2666
2684
  # },
2685
+ # max_batch_size: 1,
2667
2686
  # })
2668
2687
  #
2669
2688
  # @example Response structure
@@ -2679,6 +2698,7 @@ module Aws::AppSync
2679
2698
  # resp.function_configuration.sync_config.conflict_handler #=> String, one of "OPTIMISTIC_CONCURRENCY", "LAMBDA", "AUTOMERGE", "NONE"
2680
2699
  # resp.function_configuration.sync_config.conflict_detection #=> String, one of "VERSION", "NONE"
2681
2700
  # resp.function_configuration.sync_config.lambda_conflict_handler_config.lambda_conflict_handler_arn #=> String
2701
+ # resp.function_configuration.max_batch_size #=> Integer
2682
2702
  #
2683
2703
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateFunction AWS API Documentation
2684
2704
  #
@@ -2873,6 +2893,9 @@ module Aws::AppSync
2873
2893
  # @option params [Types::CachingConfig] :caching_config
2874
2894
  # The caching configuration for the resolver.
2875
2895
  #
2896
+ # @option params [Integer] :max_batch_size
2897
+ # The maximum batching size for a resolver.
2898
+ #
2876
2899
  # @return [Types::UpdateResolverResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2877
2900
  #
2878
2901
  # * {Types::UpdateResolverResponse#resolver #resolver} => Types::Resolver
@@ -2901,6 +2924,7 @@ module Aws::AppSync
2901
2924
  # ttl: 1,
2902
2925
  # caching_keys: ["String"],
2903
2926
  # },
2927
+ # max_batch_size: 1,
2904
2928
  # })
2905
2929
  #
2906
2930
  # @example Response structure
@@ -2920,6 +2944,7 @@ module Aws::AppSync
2920
2944
  # resp.resolver.caching_config.ttl #=> Integer
2921
2945
  # resp.resolver.caching_config.caching_keys #=> Array
2922
2946
  # resp.resolver.caching_config.caching_keys[0] #=> String
2947
+ # resp.resolver.max_batch_size #=> Integer
2923
2948
  #
2924
2949
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateResolver AWS API Documentation
2925
2950
  #
@@ -2987,7 +3012,7 @@ module Aws::AppSync
2987
3012
  params: params,
2988
3013
  config: config)
2989
3014
  context[:gem_name] = 'aws-sdk-appsync'
2990
- context[:gem_version] = '1.49.0'
3015
+ context[:gem_version] = '1.50.0'
2991
3016
  Seahorse::Client::Request.new(handlers, context)
2992
3017
  end
2993
3018
 
@@ -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.50.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.50.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-01-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core