aws-sdk-appsync 1.26.0 → 1.31.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: f39ab6fcedec91c356362cbc1cd98be536b1359dad129ceb31ae4f24db5272e3
4
- data.tar.gz: 757523b32bae7899afcc207bfe5a0d9e8de20d37dc0ecfc9999006ae0cb6180c
3
+ metadata.gz: 52fa6dea92830d23eadf7526d9b05ce3851658bb79d4dd8cb69979be8fc3e98f
4
+ data.tar.gz: 32df57c8f2138ec741f74590f042bd510da597f165a4cca5ed40da009db36d06
5
5
  SHA512:
6
- metadata.gz: 1c6f01f16d2f1f50e9c074f896abddae31ac331eb6be6ab6c182ba51cf6d8666e2c7c013fdb4672d52938c785c913a30df2d957cde6d6e2942ac20bd5b2c318a
7
- data.tar.gz: 48f1395df54769db264b66680a9f3bfa8f39e787bbd170ced086d35c140ee9f61db0d2f50f64c13cc16642aea5cbbf0dc795040891a069bf5abfc30f688f449a
6
+ metadata.gz: 4f563255d4acba90d51a94b8f38e2bba551eb0bb1bf5141c4fc5fa0896ec75fb9e2867ba36dd14bbd9361af011549ae8497d19af8ed41c83a44438f9d4294537
7
+ data.tar.gz: a5ce35ec97c3e721a540043125514f2b504fd5b4f66f3a8497daae40500910113c40b2600062b13899e5ac7967b4eb74ba50e6f9d5e7e3c40deeb8327211c1ba
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-appsync/customizations'
45
47
  # @service
46
48
  module Aws::AppSync
47
49
 
48
- GEM_VERSION = '1.26.0'
50
+ GEM_VERSION = '1.31.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
@@ -69,6 +72,7 @@ module Aws::AppSync
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
78
 
@@ -161,7 +165,7 @@ module Aws::AppSync
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -335,7 +339,30 @@ module Aws::AppSync
335
339
  # are cached.
336
340
  #
337
341
  # @option params [required, String] :type
338
- # The cache instance type.
342
+ # The cache instance type. Valid values are
343
+ #
344
+ # * `SMALL`
345
+ #
346
+ # * `MEDIUM`
347
+ #
348
+ # * `LARGE`
349
+ #
350
+ # * `XLARGE`
351
+ #
352
+ # * `LARGE_2X`
353
+ #
354
+ # * `LARGE_4X`
355
+ #
356
+ # * `LARGE_8X` (not available in all regions)
357
+ #
358
+ # * `LARGE_12X`
359
+ #
360
+ # Historically, instance types were identified by an EC2-style value. As
361
+ # of July 2020, this is deprecated, and the generic identifiers above
362
+ # should be used.
363
+ #
364
+ # The following legacy instance types are avaible, but their use is
365
+ # discouraged:
339
366
  #
340
367
  # * **T2\_SMALL**\: A t2.small instance type.
341
368
  #
@@ -363,7 +390,7 @@ module Aws::AppSync
363
390
  # transit_encryption_enabled: false,
364
391
  # at_rest_encryption_enabled: false,
365
392
  # api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
366
- # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
393
+ # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
367
394
  # })
368
395
  #
369
396
  # @example Response structure
@@ -372,7 +399,7 @@ module Aws::AppSync
372
399
  # resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
373
400
  # resp.api_cache.transit_encryption_enabled #=> Boolean
374
401
  # resp.api_cache.at_rest_encryption_enabled #=> Boolean
375
- # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
402
+ # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
376
403
  # resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
377
404
  #
378
405
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiCache AWS API Documentation
@@ -565,7 +592,7 @@ module Aws::AppSync
565
592
  # @option params [required, String] :data_source_name
566
593
  # The `Function` `DataSource` name.
567
594
  #
568
- # @option params [required, String] :request_mapping_template
595
+ # @option params [String] :request_mapping_template
569
596
  # The `Function` request mapping template. Functions support only the
570
597
  # 2018-05-29 version of the request mapping template.
571
598
  #
@@ -587,7 +614,7 @@ module Aws::AppSync
587
614
  # name: "ResourceName", # required
588
615
  # description: "String",
589
616
  # data_source_name: "ResourceName", # required
590
- # request_mapping_template: "MappingTemplate", # required
617
+ # request_mapping_template: "MappingTemplate",
591
618
  # response_mapping_template: "MappingTemplate",
592
619
  # function_version: "String", # required
593
620
  # })
@@ -747,7 +774,7 @@ module Aws::AppSync
747
774
  # @option params [String] :data_source_name
748
775
  # The name of the data source for which the resolver is being created.
749
776
  #
750
- # @option params [required, String] :request_mapping_template
777
+ # @option params [String] :request_mapping_template
751
778
  # The mapping template to be used for requests.
752
779
  #
753
780
  # A resolver uses a request mapping template to convert a GraphQL
@@ -789,7 +816,7 @@ module Aws::AppSync
789
816
  # type_name: "ResourceName", # required
790
817
  # field_name: "ResourceName", # required
791
818
  # data_source_name: "ResourceName",
792
- # request_mapping_template: "MappingTemplate", # required
819
+ # request_mapping_template: "MappingTemplate",
793
820
  # response_mapping_template: "MappingTemplate",
794
821
  # kind: "UNIT", # accepts UNIT, PIPELINE
795
822
  # pipeline_config: {
@@ -1103,7 +1130,7 @@ module Aws::AppSync
1103
1130
  # resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
1104
1131
  # resp.api_cache.transit_encryption_enabled #=> Boolean
1105
1132
  # resp.api_cache.at_rest_encryption_enabled #=> Boolean
1106
- # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
1133
+ # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
1107
1134
  # resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
1108
1135
  #
1109
1136
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCache AWS API Documentation
@@ -1855,7 +1882,7 @@ module Aws::AppSync
1855
1882
  # @option params [required, String] :api_id
1856
1883
  # The API ID.
1857
1884
  #
1858
- # @option params [required, String, IO] :definition
1885
+ # @option params [required, String, StringIO, File] :definition
1859
1886
  # The schema definition, in GraphQL schema language format.
1860
1887
  #
1861
1888
  # @return [Types::StartSchemaCreationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
@@ -1955,7 +1982,30 @@ module Aws::AppSync
1955
1982
  # are cached.
1956
1983
  #
1957
1984
  # @option params [required, String] :type
1958
- # The cache instance type.
1985
+ # The cache instance type. Valid values are
1986
+ #
1987
+ # * `SMALL`
1988
+ #
1989
+ # * `MEDIUM`
1990
+ #
1991
+ # * `LARGE`
1992
+ #
1993
+ # * `XLARGE`
1994
+ #
1995
+ # * `LARGE_2X`
1996
+ #
1997
+ # * `LARGE_4X`
1998
+ #
1999
+ # * `LARGE_8X` (not available in all regions)
2000
+ #
2001
+ # * `LARGE_12X`
2002
+ #
2003
+ # Historically, instance types were identified by an EC2-style value. As
2004
+ # of July 2020, this is deprecated, and the generic identifiers above
2005
+ # should be used.
2006
+ #
2007
+ # The following legacy instance types are avaible, but their use is
2008
+ # discouraged:
1959
2009
  #
1960
2010
  # * **T2\_SMALL**\: A t2.small instance type.
1961
2011
  #
@@ -1981,7 +2031,7 @@ module Aws::AppSync
1981
2031
  # api_id: "String", # required
1982
2032
  # ttl: 1, # required
1983
2033
  # api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
1984
- # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
2034
+ # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
1985
2035
  # })
1986
2036
  #
1987
2037
  # @example Response structure
@@ -1990,7 +2040,7 @@ module Aws::AppSync
1990
2040
  # resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
1991
2041
  # resp.api_cache.transit_encryption_enabled #=> Boolean
1992
2042
  # resp.api_cache.at_rest_encryption_enabled #=> Boolean
1993
- # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE"
2043
+ # resp.api_cache.type #=> String, one of "T2_SMALL", "T2_MEDIUM", "R4_LARGE", "R4_XLARGE", "R4_2XLARGE", "R4_4XLARGE", "R4_8XLARGE", "SMALL", "MEDIUM", "LARGE", "XLARGE", "LARGE_2X", "LARGE_4X", "LARGE_8X", "LARGE_12X"
1994
2044
  # resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
1995
2045
  #
1996
2046
  # @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateApiCache AWS API Documentation
@@ -2183,7 +2233,7 @@ module Aws::AppSync
2183
2233
  # @option params [required, String] :data_source_name
2184
2234
  # The `Function` `DataSource` name.
2185
2235
  #
2186
- # @option params [required, String] :request_mapping_template
2236
+ # @option params [String] :request_mapping_template
2187
2237
  # The `Function` request mapping template. Functions support only the
2188
2238
  # 2018-05-29 version of the request mapping template.
2189
2239
  #
@@ -2206,7 +2256,7 @@ module Aws::AppSync
2206
2256
  # description: "String",
2207
2257
  # function_id: "ResourceName", # required
2208
2258
  # data_source_name: "ResourceName", # required
2209
- # request_mapping_template: "MappingTemplate", # required
2259
+ # request_mapping_template: "MappingTemplate",
2210
2260
  # response_mapping_template: "MappingTemplate",
2211
2261
  # function_version: "String", # required
2212
2262
  # })
@@ -2361,7 +2411,7 @@ module Aws::AppSync
2361
2411
  # @option params [String] :data_source_name
2362
2412
  # The new data source name.
2363
2413
  #
2364
- # @option params [required, String] :request_mapping_template
2414
+ # @option params [String] :request_mapping_template
2365
2415
  # The new request mapping template.
2366
2416
  #
2367
2417
  # @option params [String] :response_mapping_template
@@ -2399,7 +2449,7 @@ module Aws::AppSync
2399
2449
  # type_name: "ResourceName", # required
2400
2450
  # field_name: "ResourceName", # required
2401
2451
  # data_source_name: "ResourceName",
2402
- # request_mapping_template: "MappingTemplate", # required
2452
+ # request_mapping_template: "MappingTemplate",
2403
2453
  # response_mapping_template: "MappingTemplate",
2404
2454
  # kind: "UNIT", # accepts UNIT, PIPELINE
2405
2455
  # pipeline_config: {
@@ -2502,7 +2552,7 @@ module Aws::AppSync
2502
2552
  params: params,
2503
2553
  config: config)
2504
2554
  context[:gem_name] = 'aws-sdk-appsync'
2505
- context[:gem_version] = '1.26.0'
2555
+ context[:gem_version] = '1.31.0'
2506
2556
  Seahorse::Client::Request.new(handlers, context)
2507
2557
  end
2508
2558
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -267,7 +269,7 @@ module Aws::AppSync
267
269
  CreateFunctionRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
268
270
  CreateFunctionRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
269
271
  CreateFunctionRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "dataSourceName"))
270
- CreateFunctionRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, required: true, location_name: "requestMappingTemplate"))
272
+ CreateFunctionRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "requestMappingTemplate"))
271
273
  CreateFunctionRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
272
274
  CreateFunctionRequest.add_member(:function_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "functionVersion"))
273
275
  CreateFunctionRequest.struct_class = Types::CreateFunctionRequest
@@ -292,7 +294,7 @@ module Aws::AppSync
292
294
  CreateResolverRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "typeName"))
293
295
  CreateResolverRequest.add_member(:field_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "fieldName"))
294
296
  CreateResolverRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "dataSourceName"))
295
- CreateResolverRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, required: true, location_name: "requestMappingTemplate"))
297
+ CreateResolverRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "requestMappingTemplate"))
296
298
  CreateResolverRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
297
299
  CreateResolverRequest.add_member(:kind, Shapes::ShapeRef.new(shape: ResolverKind, location_name: "kind"))
298
300
  CreateResolverRequest.add_member(:pipeline_config, Shapes::ShapeRef.new(shape: PipelineConfig, location_name: "pipelineConfig"))
@@ -689,7 +691,7 @@ module Aws::AppSync
689
691
  UpdateFunctionRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
690
692
  UpdateFunctionRequest.add_member(:function_id, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "functionId"))
691
693
  UpdateFunctionRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "dataSourceName"))
692
- UpdateFunctionRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, required: true, location_name: "requestMappingTemplate"))
694
+ UpdateFunctionRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "requestMappingTemplate"))
693
695
  UpdateFunctionRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
694
696
  UpdateFunctionRequest.add_member(:function_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "functionVersion"))
695
697
  UpdateFunctionRequest.struct_class = Types::UpdateFunctionRequest
@@ -714,7 +716,7 @@ module Aws::AppSync
714
716
  UpdateResolverRequest.add_member(:type_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "typeName"))
715
717
  UpdateResolverRequest.add_member(:field_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "fieldName"))
716
718
  UpdateResolverRequest.add_member(:data_source_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "dataSourceName"))
717
- UpdateResolverRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, required: true, location_name: "requestMappingTemplate"))
719
+ UpdateResolverRequest.add_member(:request_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "requestMappingTemplate"))
718
720
  UpdateResolverRequest.add_member(:response_mapping_template, Shapes::ShapeRef.new(shape: MappingTemplate, location_name: "responseMappingTemplate"))
719
721
  UpdateResolverRequest.add_member(:kind, Shapes::ShapeRef.new(shape: ResolverKind, location_name: "kind"))
720
722
  UpdateResolverRequest.add_member(:pipeline_config, Shapes::ShapeRef.new(shape: PipelineConfig, location_name: "pipelineConfig"))
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -17,6 +19,7 @@ module Aws::AppSync
17
19
  #
18
20
  class AccessDeniedException < Struct.new(
19
21
  :message)
22
+ SENSITIVE = []
20
23
  include Aws::Structure
21
24
  end
22
25
 
@@ -59,6 +62,7 @@ module Aws::AppSync
59
62
  :authentication_type,
60
63
  :open_id_connect_config,
61
64
  :user_pool_config)
65
+ SENSITIVE = []
62
66
  include Aws::Structure
63
67
  end
64
68
 
@@ -90,7 +94,30 @@ module Aws::AppSync
90
94
  # @return [Boolean]
91
95
  #
92
96
  # @!attribute [rw] type
93
- # The cache instance type.
97
+ # The cache instance type. Valid values are
98
+ #
99
+ # * `SMALL`
100
+ #
101
+ # * `MEDIUM`
102
+ #
103
+ # * `LARGE`
104
+ #
105
+ # * `XLARGE`
106
+ #
107
+ # * `LARGE_2X`
108
+ #
109
+ # * `LARGE_4X`
110
+ #
111
+ # * `LARGE_8X` (not available in all regions)
112
+ #
113
+ # * `LARGE_12X`
114
+ #
115
+ # Historically, instance types were identified by an EC2-style value.
116
+ # As of July 2020, this is deprecated, and the generic identifiers
117
+ # above should be used.
118
+ #
119
+ # The following legacy instance types are avaible, but their use is
120
+ # discouraged:
94
121
  #
95
122
  # * **T2\_SMALL**\: A t2.small instance type.
96
123
  #
@@ -130,6 +157,7 @@ module Aws::AppSync
130
157
  :at_rest_encryption_enabled,
131
158
  :type,
132
159
  :status)
160
+ SENSITIVE = []
133
161
  include Aws::Structure
134
162
  end
135
163
 
@@ -192,6 +220,7 @@ module Aws::AppSync
192
220
  :id,
193
221
  :description,
194
222
  :expires)
223
+ SENSITIVE = []
195
224
  include Aws::Structure
196
225
  end
197
226
 
@@ -204,6 +233,7 @@ module Aws::AppSync
204
233
  #
205
234
  class ApiKeyLimitExceededException < Struct.new(
206
235
  :message)
236
+ SENSITIVE = []
207
237
  include Aws::Structure
208
238
  end
209
239
 
@@ -218,6 +248,7 @@ module Aws::AppSync
218
248
  #
219
249
  class ApiKeyValidityOutOfBoundsException < Struct.new(
220
250
  :message)
251
+ SENSITIVE = []
221
252
  include Aws::Structure
222
253
  end
223
254
 
@@ -230,6 +261,7 @@ module Aws::AppSync
230
261
  #
231
262
  class ApiLimitExceededException < Struct.new(
232
263
  :message)
264
+ SENSITIVE = []
233
265
  include Aws::Structure
234
266
  end
235
267
 
@@ -264,6 +296,7 @@ module Aws::AppSync
264
296
  class AuthorizationConfig < Struct.new(
265
297
  :authorization_type,
266
298
  :aws_iam_config)
299
+ SENSITIVE = []
267
300
  include Aws::Structure
268
301
  end
269
302
 
@@ -290,6 +323,7 @@ module Aws::AppSync
290
323
  class AwsIamConfig < Struct.new(
291
324
  :signing_region,
292
325
  :signing_service_name)
326
+ SENSITIVE = []
293
327
  include Aws::Structure
294
328
  end
295
329
 
@@ -303,6 +337,7 @@ module Aws::AppSync
303
337
  #
304
338
  class BadRequestException < Struct.new(
305
339
  :message)
340
+ SENSITIVE = []
306
341
  include Aws::Structure
307
342
  end
308
343
 
@@ -334,6 +369,7 @@ module Aws::AppSync
334
369
  class CachingConfig < Struct.new(
335
370
  :ttl,
336
371
  :caching_keys)
372
+ SENSITIVE = []
337
373
  include Aws::Structure
338
374
  end
339
375
 
@@ -367,6 +403,7 @@ module Aws::AppSync
367
403
  :user_pool_id,
368
404
  :aws_region,
369
405
  :app_id_client_regex)
406
+ SENSITIVE = []
370
407
  include Aws::Structure
371
408
  end
372
409
 
@@ -380,6 +417,7 @@ module Aws::AppSync
380
417
  #
381
418
  class ConcurrentModificationException < Struct.new(
382
419
  :message)
420
+ SENSITIVE = []
383
421
  include Aws::Structure
384
422
  end
385
423
 
@@ -394,7 +432,7 @@ module Aws::AppSync
394
432
  # transit_encryption_enabled: false,
395
433
  # at_rest_encryption_enabled: false,
396
434
  # api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
397
- # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
435
+ # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
398
436
  # }
399
437
  #
400
438
  # @!attribute [rw] api_id
@@ -427,7 +465,30 @@ module Aws::AppSync
427
465
  # @return [String]
428
466
  #
429
467
  # @!attribute [rw] type
430
- # The cache instance type.
468
+ # The cache instance type. Valid values are
469
+ #
470
+ # * `SMALL`
471
+ #
472
+ # * `MEDIUM`
473
+ #
474
+ # * `LARGE`
475
+ #
476
+ # * `XLARGE`
477
+ #
478
+ # * `LARGE_2X`
479
+ #
480
+ # * `LARGE_4X`
481
+ #
482
+ # * `LARGE_8X` (not available in all regions)
483
+ #
484
+ # * `LARGE_12X`
485
+ #
486
+ # Historically, instance types were identified by an EC2-style value.
487
+ # As of July 2020, this is deprecated, and the generic identifiers
488
+ # above should be used.
489
+ #
490
+ # The following legacy instance types are avaible, but their use is
491
+ # discouraged:
431
492
  #
432
493
  # * **T2\_SMALL**\: A t2.small instance type.
433
494
  #
@@ -453,6 +514,7 @@ module Aws::AppSync
453
514
  :at_rest_encryption_enabled,
454
515
  :api_caching_behavior,
455
516
  :type)
517
+ SENSITIVE = []
456
518
  include Aws::Structure
457
519
  end
458
520
 
@@ -466,6 +528,7 @@ module Aws::AppSync
466
528
  #
467
529
  class CreateApiCacheResponse < Struct.new(
468
530
  :api_cache)
531
+ SENSITIVE = []
469
532
  include Aws::Structure
470
533
  end
471
534
 
@@ -499,6 +562,7 @@ module Aws::AppSync
499
562
  :api_id,
500
563
  :description,
501
564
  :expires)
565
+ SENSITIVE = []
502
566
  include Aws::Structure
503
567
  end
504
568
 
@@ -510,6 +574,7 @@ module Aws::AppSync
510
574
  #
511
575
  class CreateApiKeyResponse < Struct.new(
512
576
  :api_key)
577
+ SENSITIVE = []
513
578
  include Aws::Structure
514
579
  end
515
580
 
@@ -616,6 +681,7 @@ module Aws::AppSync
616
681
  :elasticsearch_config,
617
682
  :http_config,
618
683
  :relational_database_config)
684
+ SENSITIVE = []
619
685
  include Aws::Structure
620
686
  end
621
687
 
@@ -627,6 +693,7 @@ module Aws::AppSync
627
693
  #
628
694
  class CreateDataSourceResponse < Struct.new(
629
695
  :data_source)
696
+ SENSITIVE = []
630
697
  include Aws::Structure
631
698
  end
632
699
 
@@ -638,7 +705,7 @@ module Aws::AppSync
638
705
  # name: "ResourceName", # required
639
706
  # description: "String",
640
707
  # data_source_name: "ResourceName", # required
641
- # request_mapping_template: "MappingTemplate", # required
708
+ # request_mapping_template: "MappingTemplate",
642
709
  # response_mapping_template: "MappingTemplate",
643
710
  # function_version: "String", # required
644
711
  # }
@@ -683,6 +750,7 @@ module Aws::AppSync
683
750
  :request_mapping_template,
684
751
  :response_mapping_template,
685
752
  :function_version)
753
+ SENSITIVE = []
686
754
  include Aws::Structure
687
755
  end
688
756
 
@@ -694,6 +762,7 @@ module Aws::AppSync
694
762
  #
695
763
  class CreateFunctionResponse < Struct.new(
696
764
  :function_configuration)
765
+ SENSITIVE = []
697
766
  include Aws::Structure
698
767
  end
699
768
 
@@ -788,6 +857,7 @@ module Aws::AppSync
788
857
  :tags,
789
858
  :additional_authentication_providers,
790
859
  :xray_enabled)
860
+ SENSITIVE = []
791
861
  include Aws::Structure
792
862
  end
793
863
 
@@ -799,6 +869,7 @@ module Aws::AppSync
799
869
  #
800
870
  class CreateGraphqlApiResponse < Struct.new(
801
871
  :graphql_api)
872
+ SENSITIVE = []
802
873
  include Aws::Structure
803
874
  end
804
875
 
@@ -810,7 +881,7 @@ module Aws::AppSync
810
881
  # type_name: "ResourceName", # required
811
882
  # field_name: "ResourceName", # required
812
883
  # data_source_name: "ResourceName",
813
- # request_mapping_template: "MappingTemplate", # required
884
+ # request_mapping_template: "MappingTemplate",
814
885
  # response_mapping_template: "MappingTemplate",
815
886
  # kind: "UNIT", # accepts UNIT, PIPELINE
816
887
  # pipeline_config: {
@@ -895,6 +966,7 @@ module Aws::AppSync
895
966
  :pipeline_config,
896
967
  :sync_config,
897
968
  :caching_config)
969
+ SENSITIVE = []
898
970
  include Aws::Structure
899
971
  end
900
972
 
@@ -906,6 +978,7 @@ module Aws::AppSync
906
978
  #
907
979
  class CreateResolverResponse < Struct.new(
908
980
  :resolver)
981
+ SENSITIVE = []
909
982
  include Aws::Structure
910
983
  end
911
984
 
@@ -943,6 +1016,7 @@ module Aws::AppSync
943
1016
  :api_id,
944
1017
  :definition,
945
1018
  :format)
1019
+ SENSITIVE = []
946
1020
  include Aws::Structure
947
1021
  end
948
1022
 
@@ -954,6 +1028,7 @@ module Aws::AppSync
954
1028
  #
955
1029
  class CreateTypeResponse < Struct.new(
956
1030
  :type)
1031
+ SENSITIVE = []
957
1032
  include Aws::Structure
958
1033
  end
959
1034
 
@@ -1031,6 +1106,7 @@ module Aws::AppSync
1031
1106
  :elasticsearch_config,
1032
1107
  :http_config,
1033
1108
  :relational_database_config)
1109
+ SENSITIVE = []
1034
1110
  include Aws::Structure
1035
1111
  end
1036
1112
 
@@ -1051,6 +1127,7 @@ module Aws::AppSync
1051
1127
  #
1052
1128
  class DeleteApiCacheRequest < Struct.new(
1053
1129
  :api_id)
1130
+ SENSITIVE = []
1054
1131
  include Aws::Structure
1055
1132
  end
1056
1133
 
@@ -1081,6 +1158,7 @@ module Aws::AppSync
1081
1158
  class DeleteApiKeyRequest < Struct.new(
1082
1159
  :api_id,
1083
1160
  :id)
1161
+ SENSITIVE = []
1084
1162
  include Aws::Structure
1085
1163
  end
1086
1164
 
@@ -1109,6 +1187,7 @@ module Aws::AppSync
1109
1187
  class DeleteDataSourceRequest < Struct.new(
1110
1188
  :api_id,
1111
1189
  :name)
1190
+ SENSITIVE = []
1112
1191
  include Aws::Structure
1113
1192
  end
1114
1193
 
@@ -1137,6 +1216,7 @@ module Aws::AppSync
1137
1216
  class DeleteFunctionRequest < Struct.new(
1138
1217
  :api_id,
1139
1218
  :function_id)
1219
+ SENSITIVE = []
1140
1220
  include Aws::Structure
1141
1221
  end
1142
1222
 
@@ -1159,6 +1239,7 @@ module Aws::AppSync
1159
1239
  #
1160
1240
  class DeleteGraphqlApiRequest < Struct.new(
1161
1241
  :api_id)
1242
+ SENSITIVE = []
1162
1243
  include Aws::Structure
1163
1244
  end
1164
1245
 
@@ -1193,6 +1274,7 @@ module Aws::AppSync
1193
1274
  :api_id,
1194
1275
  :type_name,
1195
1276
  :field_name)
1277
+ SENSITIVE = []
1196
1278
  include Aws::Structure
1197
1279
  end
1198
1280
 
@@ -1221,6 +1303,7 @@ module Aws::AppSync
1221
1303
  class DeleteTypeRequest < Struct.new(
1222
1304
  :api_id,
1223
1305
  :type_name)
1306
+ SENSITIVE = []
1224
1307
  include Aws::Structure
1225
1308
  end
1226
1309
 
@@ -1258,6 +1341,7 @@ module Aws::AppSync
1258
1341
  :base_table_ttl,
1259
1342
  :delta_sync_table_name,
1260
1343
  :delta_sync_table_ttl)
1344
+ SENSITIVE = []
1261
1345
  include Aws::Structure
1262
1346
  end
1263
1347
 
@@ -1307,6 +1391,7 @@ module Aws::AppSync
1307
1391
  :use_caller_credentials,
1308
1392
  :delta_sync_config,
1309
1393
  :versioned)
1394
+ SENSITIVE = []
1310
1395
  include Aws::Structure
1311
1396
  end
1312
1397
 
@@ -1333,6 +1418,7 @@ module Aws::AppSync
1333
1418
  class ElasticsearchDataSourceConfig < Struct.new(
1334
1419
  :endpoint,
1335
1420
  :aws_region)
1421
+ SENSITIVE = []
1336
1422
  include Aws::Structure
1337
1423
  end
1338
1424
 
@@ -1353,6 +1439,7 @@ module Aws::AppSync
1353
1439
  #
1354
1440
  class FlushApiCacheRequest < Struct.new(
1355
1441
  :api_id)
1442
+ SENSITIVE = []
1356
1443
  include Aws::Structure
1357
1444
  end
1358
1445
 
@@ -1410,6 +1497,7 @@ module Aws::AppSync
1410
1497
  :request_mapping_template,
1411
1498
  :response_mapping_template,
1412
1499
  :function_version)
1500
+ SENSITIVE = []
1413
1501
  include Aws::Structure
1414
1502
  end
1415
1503
 
@@ -1430,6 +1518,7 @@ module Aws::AppSync
1430
1518
  #
1431
1519
  class GetApiCacheRequest < Struct.new(
1432
1520
  :api_id)
1521
+ SENSITIVE = []
1433
1522
  include Aws::Structure
1434
1523
  end
1435
1524
 
@@ -1443,6 +1532,7 @@ module Aws::AppSync
1443
1532
  #
1444
1533
  class GetApiCacheResponse < Struct.new(
1445
1534
  :api_cache)
1535
+ SENSITIVE = []
1446
1536
  include Aws::Structure
1447
1537
  end
1448
1538
 
@@ -1467,6 +1557,7 @@ module Aws::AppSync
1467
1557
  class GetDataSourceRequest < Struct.new(
1468
1558
  :api_id,
1469
1559
  :name)
1560
+ SENSITIVE = []
1470
1561
  include Aws::Structure
1471
1562
  end
1472
1563
 
@@ -1478,6 +1569,7 @@ module Aws::AppSync
1478
1569
  #
1479
1570
  class GetDataSourceResponse < Struct.new(
1480
1571
  :data_source)
1572
+ SENSITIVE = []
1481
1573
  include Aws::Structure
1482
1574
  end
1483
1575
 
@@ -1502,6 +1594,7 @@ module Aws::AppSync
1502
1594
  class GetFunctionRequest < Struct.new(
1503
1595
  :api_id,
1504
1596
  :function_id)
1597
+ SENSITIVE = []
1505
1598
  include Aws::Structure
1506
1599
  end
1507
1600
 
@@ -1513,6 +1606,7 @@ module Aws::AppSync
1513
1606
  #
1514
1607
  class GetFunctionResponse < Struct.new(
1515
1608
  :function_configuration)
1609
+ SENSITIVE = []
1516
1610
  include Aws::Structure
1517
1611
  end
1518
1612
 
@@ -1531,6 +1625,7 @@ module Aws::AppSync
1531
1625
  #
1532
1626
  class GetGraphqlApiRequest < Struct.new(
1533
1627
  :api_id)
1628
+ SENSITIVE = []
1534
1629
  include Aws::Structure
1535
1630
  end
1536
1631
 
@@ -1542,6 +1637,7 @@ module Aws::AppSync
1542
1637
  #
1543
1638
  class GetGraphqlApiResponse < Struct.new(
1544
1639
  :graphql_api)
1640
+ SENSITIVE = []
1545
1641
  include Aws::Structure
1546
1642
  end
1547
1643
 
@@ -1573,6 +1669,7 @@ module Aws::AppSync
1573
1669
  :api_id,
1574
1670
  :format,
1575
1671
  :include_directives)
1672
+ SENSITIVE = []
1576
1673
  include Aws::Structure
1577
1674
  end
1578
1675
 
@@ -1590,6 +1687,7 @@ module Aws::AppSync
1590
1687
  #
1591
1688
  class GetIntrospectionSchemaResponse < Struct.new(
1592
1689
  :schema)
1690
+ SENSITIVE = []
1593
1691
  include Aws::Structure
1594
1692
  end
1595
1693
 
@@ -1620,6 +1718,7 @@ module Aws::AppSync
1620
1718
  :api_id,
1621
1719
  :type_name,
1622
1720
  :field_name)
1721
+ SENSITIVE = []
1623
1722
  include Aws::Structure
1624
1723
  end
1625
1724
 
@@ -1631,6 +1730,7 @@ module Aws::AppSync
1631
1730
  #
1632
1731
  class GetResolverResponse < Struct.new(
1633
1732
  :resolver)
1733
+ SENSITIVE = []
1634
1734
  include Aws::Structure
1635
1735
  end
1636
1736
 
@@ -1649,6 +1749,7 @@ module Aws::AppSync
1649
1749
  #
1650
1750
  class GetSchemaCreationStatusRequest < Struct.new(
1651
1751
  :api_id)
1752
+ SENSITIVE = []
1652
1753
  include Aws::Structure
1653
1754
  end
1654
1755
 
@@ -1668,6 +1769,7 @@ module Aws::AppSync
1668
1769
  class GetSchemaCreationStatusResponse < Struct.new(
1669
1770
  :status,
1670
1771
  :details)
1772
+ SENSITIVE = []
1671
1773
  include Aws::Structure
1672
1774
  end
1673
1775
 
@@ -1698,6 +1800,7 @@ module Aws::AppSync
1698
1800
  :api_id,
1699
1801
  :type_name,
1700
1802
  :format)
1803
+ SENSITIVE = []
1701
1804
  include Aws::Structure
1702
1805
  end
1703
1806
 
@@ -1709,6 +1812,7 @@ module Aws::AppSync
1709
1812
  #
1710
1813
  class GetTypeResponse < Struct.new(
1711
1814
  :type)
1815
+ SENSITIVE = []
1712
1816
  include Aws::Structure
1713
1817
  end
1714
1818
 
@@ -1721,6 +1825,7 @@ module Aws::AppSync
1721
1825
  #
1722
1826
  class GraphQLSchemaException < Struct.new(
1723
1827
  :message)
1828
+ SENSITIVE = []
1724
1829
  include Aws::Structure
1725
1830
  end
1726
1831
 
@@ -1786,6 +1891,7 @@ module Aws::AppSync
1786
1891
  :tags,
1787
1892
  :additional_authentication_providers,
1788
1893
  :xray_enabled)
1894
+ SENSITIVE = []
1789
1895
  include Aws::Structure
1790
1896
  end
1791
1897
 
@@ -1822,6 +1928,7 @@ module Aws::AppSync
1822
1928
  class HttpDataSourceConfig < Struct.new(
1823
1929
  :endpoint,
1824
1930
  :authorization_config)
1931
+ SENSITIVE = []
1825
1932
  include Aws::Structure
1826
1933
  end
1827
1934
 
@@ -1834,6 +1941,7 @@ module Aws::AppSync
1834
1941
  #
1835
1942
  class InternalFailureException < Struct.new(
1836
1943
  :message)
1944
+ SENSITIVE = []
1837
1945
  include Aws::Structure
1838
1946
  end
1839
1947
 
@@ -1855,6 +1963,7 @@ module Aws::AppSync
1855
1963
  #
1856
1964
  class LambdaConflictHandlerConfig < Struct.new(
1857
1965
  :lambda_conflict_handler_arn)
1966
+ SENSITIVE = []
1858
1967
  include Aws::Structure
1859
1968
  end
1860
1969
 
@@ -1875,6 +1984,7 @@ module Aws::AppSync
1875
1984
  #
1876
1985
  class LambdaDataSourceConfig < Struct.new(
1877
1986
  :lambda_function_arn)
1987
+ SENSITIVE = []
1878
1988
  include Aws::Structure
1879
1989
  end
1880
1990
 
@@ -1887,6 +1997,7 @@ module Aws::AppSync
1887
1997
  #
1888
1998
  class LimitExceededException < Struct.new(
1889
1999
  :message)
2000
+ SENSITIVE = []
1890
2001
  include Aws::Structure
1891
2002
  end
1892
2003
 
@@ -1919,6 +2030,7 @@ module Aws::AppSync
1919
2030
  :api_id,
1920
2031
  :next_token,
1921
2032
  :max_results)
2033
+ SENSITIVE = []
1922
2034
  include Aws::Structure
1923
2035
  end
1924
2036
 
@@ -1936,6 +2048,7 @@ module Aws::AppSync
1936
2048
  class ListApiKeysResponse < Struct.new(
1937
2049
  :api_keys,
1938
2050
  :next_token)
2051
+ SENSITIVE = []
1939
2052
  include Aws::Structure
1940
2053
  end
1941
2054
 
@@ -1968,6 +2081,7 @@ module Aws::AppSync
1968
2081
  :api_id,
1969
2082
  :next_token,
1970
2083
  :max_results)
2084
+ SENSITIVE = []
1971
2085
  include Aws::Structure
1972
2086
  end
1973
2087
 
@@ -1985,6 +2099,7 @@ module Aws::AppSync
1985
2099
  class ListDataSourcesResponse < Struct.new(
1986
2100
  :data_sources,
1987
2101
  :next_token)
2102
+ SENSITIVE = []
1988
2103
  include Aws::Structure
1989
2104
  end
1990
2105
 
@@ -2017,6 +2132,7 @@ module Aws::AppSync
2017
2132
  :api_id,
2018
2133
  :next_token,
2019
2134
  :max_results)
2135
+ SENSITIVE = []
2020
2136
  include Aws::Structure
2021
2137
  end
2022
2138
 
@@ -2035,6 +2151,7 @@ module Aws::AppSync
2035
2151
  class ListFunctionsResponse < Struct.new(
2036
2152
  :functions,
2037
2153
  :next_token)
2154
+ SENSITIVE = []
2038
2155
  include Aws::Structure
2039
2156
  end
2040
2157
 
@@ -2061,6 +2178,7 @@ module Aws::AppSync
2061
2178
  class ListGraphqlApisRequest < Struct.new(
2062
2179
  :next_token,
2063
2180
  :max_results)
2181
+ SENSITIVE = []
2064
2182
  include Aws::Structure
2065
2183
  end
2066
2184
 
@@ -2078,6 +2196,7 @@ module Aws::AppSync
2078
2196
  class ListGraphqlApisResponse < Struct.new(
2079
2197
  :graphql_apis,
2080
2198
  :next_token)
2199
+ SENSITIVE = []
2081
2200
  include Aws::Structure
2082
2201
  end
2083
2202
 
@@ -2116,6 +2235,7 @@ module Aws::AppSync
2116
2235
  :function_id,
2117
2236
  :next_token,
2118
2237
  :max_results)
2238
+ SENSITIVE = []
2119
2239
  include Aws::Structure
2120
2240
  end
2121
2241
 
@@ -2133,6 +2253,7 @@ module Aws::AppSync
2133
2253
  class ListResolversByFunctionResponse < Struct.new(
2134
2254
  :resolvers,
2135
2255
  :next_token)
2256
+ SENSITIVE = []
2136
2257
  include Aws::Structure
2137
2258
  end
2138
2259
 
@@ -2171,6 +2292,7 @@ module Aws::AppSync
2171
2292
  :type_name,
2172
2293
  :next_token,
2173
2294
  :max_results)
2295
+ SENSITIVE = []
2174
2296
  include Aws::Structure
2175
2297
  end
2176
2298
 
@@ -2188,6 +2310,7 @@ module Aws::AppSync
2188
2310
  class ListResolversResponse < Struct.new(
2189
2311
  :resolvers,
2190
2312
  :next_token)
2313
+ SENSITIVE = []
2191
2314
  include Aws::Structure
2192
2315
  end
2193
2316
 
@@ -2206,6 +2329,7 @@ module Aws::AppSync
2206
2329
  #
2207
2330
  class ListTagsForResourceRequest < Struct.new(
2208
2331
  :resource_arn)
2332
+ SENSITIVE = []
2209
2333
  include Aws::Structure
2210
2334
  end
2211
2335
 
@@ -2217,6 +2341,7 @@ module Aws::AppSync
2217
2341
  #
2218
2342
  class ListTagsForResourceResponse < Struct.new(
2219
2343
  :tags)
2344
+ SENSITIVE = []
2220
2345
  include Aws::Structure
2221
2346
  end
2222
2347
 
@@ -2255,6 +2380,7 @@ module Aws::AppSync
2255
2380
  :format,
2256
2381
  :next_token,
2257
2382
  :max_results)
2383
+ SENSITIVE = []
2258
2384
  include Aws::Structure
2259
2385
  end
2260
2386
 
@@ -2272,6 +2398,7 @@ module Aws::AppSync
2272
2398
  class ListTypesResponse < Struct.new(
2273
2399
  :types,
2274
2400
  :next_token)
2401
+ SENSITIVE = []
2275
2402
  include Aws::Structure
2276
2403
  end
2277
2404
 
@@ -2327,6 +2454,7 @@ module Aws::AppSync
2327
2454
  :field_log_level,
2328
2455
  :cloud_watch_logs_role_arn,
2329
2456
  :exclude_verbose_content)
2457
+ SENSITIVE = []
2330
2458
  include Aws::Structure
2331
2459
  end
2332
2460
 
@@ -2340,6 +2468,7 @@ module Aws::AppSync
2340
2468
  #
2341
2469
  class NotFoundException < Struct.new(
2342
2470
  :message)
2471
+ SENSITIVE = []
2343
2472
  include Aws::Structure
2344
2473
  end
2345
2474
 
@@ -2385,6 +2514,7 @@ module Aws::AppSync
2385
2514
  :client_id,
2386
2515
  :iat_ttl,
2387
2516
  :auth_ttl)
2517
+ SENSITIVE = []
2388
2518
  include Aws::Structure
2389
2519
  end
2390
2520
 
@@ -2405,6 +2535,7 @@ module Aws::AppSync
2405
2535
  #
2406
2536
  class PipelineConfig < Struct.new(
2407
2537
  :functions)
2538
+ SENSITIVE = []
2408
2539
  include Aws::Structure
2409
2540
  end
2410
2541
 
@@ -2426,7 +2557,7 @@ module Aws::AppSync
2426
2557
  # @return [String]
2427
2558
  #
2428
2559
  # @!attribute [rw] db_cluster_identifier
2429
- # Amazon RDS cluster identifier.
2560
+ # Amazon RDS cluster ARN.
2430
2561
  # @return [String]
2431
2562
  #
2432
2563
  # @!attribute [rw] database_name
@@ -2449,6 +2580,7 @@ module Aws::AppSync
2449
2580
  :database_name,
2450
2581
  :schema,
2451
2582
  :aws_secret_store_arn)
2583
+ SENSITIVE = []
2452
2584
  include Aws::Structure
2453
2585
  end
2454
2586
 
@@ -2486,6 +2618,7 @@ module Aws::AppSync
2486
2618
  class RelationalDatabaseDataSourceConfig < Struct.new(
2487
2619
  :relational_database_source_type,
2488
2620
  :rds_http_endpoint_config)
2621
+ SENSITIVE = []
2489
2622
  include Aws::Structure
2490
2623
  end
2491
2624
 
@@ -2553,6 +2686,7 @@ module Aws::AppSync
2553
2686
  :pipeline_config,
2554
2687
  :sync_config,
2555
2688
  :caching_config)
2689
+ SENSITIVE = []
2556
2690
  include Aws::Structure
2557
2691
  end
2558
2692
 
@@ -2577,6 +2711,7 @@ module Aws::AppSync
2577
2711
  class StartSchemaCreationRequest < Struct.new(
2578
2712
  :api_id,
2579
2713
  :definition)
2714
+ SENSITIVE = []
2580
2715
  include Aws::Structure
2581
2716
  end
2582
2717
 
@@ -2590,6 +2725,7 @@ module Aws::AppSync
2590
2725
  #
2591
2726
  class StartSchemaCreationResponse < Struct.new(
2592
2727
  :status)
2728
+ SENSITIVE = []
2593
2729
  include Aws::Structure
2594
2730
  end
2595
2731
 
@@ -2644,6 +2780,7 @@ module Aws::AppSync
2644
2780
  :conflict_handler,
2645
2781
  :conflict_detection,
2646
2782
  :lambda_conflict_handler_config)
2783
+ SENSITIVE = []
2647
2784
  include Aws::Structure
2648
2785
  end
2649
2786
 
@@ -2670,6 +2807,7 @@ module Aws::AppSync
2670
2807
  class TagResourceRequest < Struct.new(
2671
2808
  :resource_arn,
2672
2809
  :tags)
2810
+ SENSITIVE = []
2673
2811
  include Aws::Structure
2674
2812
  end
2675
2813
 
@@ -2707,6 +2845,7 @@ module Aws::AppSync
2707
2845
  :arn,
2708
2846
  :definition,
2709
2847
  :format)
2848
+ SENSITIVE = []
2710
2849
  include Aws::Structure
2711
2850
  end
2712
2851
 
@@ -2719,6 +2858,7 @@ module Aws::AppSync
2719
2858
  #
2720
2859
  class UnauthorizedException < Struct.new(
2721
2860
  :message)
2861
+ SENSITIVE = []
2722
2862
  include Aws::Structure
2723
2863
  end
2724
2864
 
@@ -2743,6 +2883,7 @@ module Aws::AppSync
2743
2883
  class UntagResourceRequest < Struct.new(
2744
2884
  :resource_arn,
2745
2885
  :tag_keys)
2886
+ SENSITIVE = []
2746
2887
  include Aws::Structure
2747
2888
  end
2748
2889
 
@@ -2759,7 +2900,7 @@ module Aws::AppSync
2759
2900
  # api_id: "String", # required
2760
2901
  # ttl: 1, # required
2761
2902
  # api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
2762
- # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE
2903
+ # type: "T2_SMALL", # required, accepts T2_SMALL, T2_MEDIUM, R4_LARGE, R4_XLARGE, R4_2XLARGE, R4_4XLARGE, R4_8XLARGE, SMALL, MEDIUM, LARGE, XLARGE, LARGE_2X, LARGE_4X, LARGE_8X, LARGE_12X
2763
2904
  # }
2764
2905
  #
2765
2906
  # @!attribute [rw] api_id
@@ -2782,7 +2923,30 @@ module Aws::AppSync
2782
2923
  # @return [String]
2783
2924
  #
2784
2925
  # @!attribute [rw] type
2785
- # The cache instance type.
2926
+ # The cache instance type. Valid values are
2927
+ #
2928
+ # * `SMALL`
2929
+ #
2930
+ # * `MEDIUM`
2931
+ #
2932
+ # * `LARGE`
2933
+ #
2934
+ # * `XLARGE`
2935
+ #
2936
+ # * `LARGE_2X`
2937
+ #
2938
+ # * `LARGE_4X`
2939
+ #
2940
+ # * `LARGE_8X` (not available in all regions)
2941
+ #
2942
+ # * `LARGE_12X`
2943
+ #
2944
+ # Historically, instance types were identified by an EC2-style value.
2945
+ # As of July 2020, this is deprecated, and the generic identifiers
2946
+ # above should be used.
2947
+ #
2948
+ # The following legacy instance types are avaible, but their use is
2949
+ # discouraged:
2786
2950
  #
2787
2951
  # * **T2\_SMALL**\: A t2.small instance type.
2788
2952
  #
@@ -2806,6 +2970,7 @@ module Aws::AppSync
2806
2970
  :ttl,
2807
2971
  :api_caching_behavior,
2808
2972
  :type)
2973
+ SENSITIVE = []
2809
2974
  include Aws::Structure
2810
2975
  end
2811
2976
 
@@ -2819,6 +2984,7 @@ module Aws::AppSync
2819
2984
  #
2820
2985
  class UpdateApiCacheResponse < Struct.new(
2821
2986
  :api_cache)
2987
+ SENSITIVE = []
2822
2988
  include Aws::Structure
2823
2989
  end
2824
2990
 
@@ -2857,6 +3023,7 @@ module Aws::AppSync
2857
3023
  :id,
2858
3024
  :description,
2859
3025
  :expires)
3026
+ SENSITIVE = []
2860
3027
  include Aws::Structure
2861
3028
  end
2862
3029
 
@@ -2868,6 +3035,7 @@ module Aws::AppSync
2868
3035
  #
2869
3036
  class UpdateApiKeyResponse < Struct.new(
2870
3037
  :api_key)
3038
+ SENSITIVE = []
2871
3039
  include Aws::Structure
2872
3040
  end
2873
3041
 
@@ -2973,6 +3141,7 @@ module Aws::AppSync
2973
3141
  :elasticsearch_config,
2974
3142
  :http_config,
2975
3143
  :relational_database_config)
3144
+ SENSITIVE = []
2976
3145
  include Aws::Structure
2977
3146
  end
2978
3147
 
@@ -2984,6 +3153,7 @@ module Aws::AppSync
2984
3153
  #
2985
3154
  class UpdateDataSourceResponse < Struct.new(
2986
3155
  :data_source)
3156
+ SENSITIVE = []
2987
3157
  include Aws::Structure
2988
3158
  end
2989
3159
 
@@ -2996,7 +3166,7 @@ module Aws::AppSync
2996
3166
  # description: "String",
2997
3167
  # function_id: "ResourceName", # required
2998
3168
  # data_source_name: "ResourceName", # required
2999
- # request_mapping_template: "MappingTemplate", # required
3169
+ # request_mapping_template: "MappingTemplate",
3000
3170
  # response_mapping_template: "MappingTemplate",
3001
3171
  # function_version: "String", # required
3002
3172
  # }
@@ -3046,6 +3216,7 @@ module Aws::AppSync
3046
3216
  :request_mapping_template,
3047
3217
  :response_mapping_template,
3048
3218
  :function_version)
3219
+ SENSITIVE = []
3049
3220
  include Aws::Structure
3050
3221
  end
3051
3222
 
@@ -3057,6 +3228,7 @@ module Aws::AppSync
3057
3228
  #
3058
3229
  class UpdateFunctionResponse < Struct.new(
3059
3230
  :function_configuration)
3231
+ SENSITIVE = []
3060
3232
  include Aws::Structure
3061
3233
  end
3062
3234
 
@@ -3150,6 +3322,7 @@ module Aws::AppSync
3150
3322
  :open_id_connect_config,
3151
3323
  :additional_authentication_providers,
3152
3324
  :xray_enabled)
3325
+ SENSITIVE = []
3153
3326
  include Aws::Structure
3154
3327
  end
3155
3328
 
@@ -3161,6 +3334,7 @@ module Aws::AppSync
3161
3334
  #
3162
3335
  class UpdateGraphqlApiResponse < Struct.new(
3163
3336
  :graphql_api)
3337
+ SENSITIVE = []
3164
3338
  include Aws::Structure
3165
3339
  end
3166
3340
 
@@ -3172,7 +3346,7 @@ module Aws::AppSync
3172
3346
  # type_name: "ResourceName", # required
3173
3347
  # field_name: "ResourceName", # required
3174
3348
  # data_source_name: "ResourceName",
3175
- # request_mapping_template: "MappingTemplate", # required
3349
+ # request_mapping_template: "MappingTemplate",
3176
3350
  # response_mapping_template: "MappingTemplate",
3177
3351
  # kind: "UNIT", # accepts UNIT, PIPELINE
3178
3352
  # pipeline_config: {
@@ -3253,6 +3427,7 @@ module Aws::AppSync
3253
3427
  :pipeline_config,
3254
3428
  :sync_config,
3255
3429
  :caching_config)
3430
+ SENSITIVE = []
3256
3431
  include Aws::Structure
3257
3432
  end
3258
3433
 
@@ -3264,6 +3439,7 @@ module Aws::AppSync
3264
3439
  #
3265
3440
  class UpdateResolverResponse < Struct.new(
3266
3441
  :resolver)
3442
+ SENSITIVE = []
3267
3443
  include Aws::Structure
3268
3444
  end
3269
3445
 
@@ -3300,6 +3476,7 @@ module Aws::AppSync
3300
3476
  :type_name,
3301
3477
  :definition,
3302
3478
  :format)
3479
+ SENSITIVE = []
3303
3480
  include Aws::Structure
3304
3481
  end
3305
3482
 
@@ -3311,6 +3488,7 @@ module Aws::AppSync
3311
3488
  #
3312
3489
  class UpdateTypeResponse < Struct.new(
3313
3490
  :type)
3491
+ SENSITIVE = []
3314
3492
  include Aws::Structure
3315
3493
  end
3316
3494
 
@@ -3352,6 +3530,7 @@ module Aws::AppSync
3352
3530
  :aws_region,
3353
3531
  :default_action,
3354
3532
  :app_id_client_regex)
3533
+ SENSITIVE = []
3355
3534
  include Aws::Structure
3356
3535
  end
3357
3536
 
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.26.0
4
+ version: 1.31.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-05-28 00:00:00.000000000 Z
11
+ date: 2020-08-05 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement