aws-sdk-appsync 1.24.0 → 1.29.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 +4 -4
- data/lib/aws-sdk-appsync.rb +3 -1
- data/lib/aws-sdk-appsync/client.rb +63 -14
- data/lib/aws-sdk-appsync/client_api.rb +2 -0
- data/lib/aws-sdk-appsync/errors.rb +2 -0
- data/lib/aws-sdk-appsync/resource.rb +3 -7
- data/lib/aws-sdk-appsync/types.rb +185 -6
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 622263b13bd0336eef50641dc32252fa0be6972b718d7d84984ae90540dc89ab
|
4
|
+
data.tar.gz: c0feb3c3655360488a47cfb397bc99da0c55382218c7b9e5635439bbc23931be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 26f679abe306f2b7874982b1a68205f4f1bf33092333135518c16f91de2dc129d6577b9275dd19440532ad0c93a6303deabfaee887f680bd5007bff0618b8590
|
7
|
+
data.tar.gz: 9160e356340d1fd12f2996604409f21d804fddcbda68bf5200b561970f2ee9006eb7128b6be8eba2ac2c090eae3e900ef238bf9607ca592c60c7871b9ceddc29
|
data/lib/aws-sdk-appsync.rb
CHANGED
@@ -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.
|
50
|
+
GEM_VERSION = '1.29.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
|
|
@@ -105,7 +109,7 @@ module Aws::AppSync
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -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
|
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
|
@@ -176,7 +180,7 @@ module Aws::AppSync
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -269,8 +273,7 @@ module Aws::AppSync
|
|
269
273
|
#
|
270
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
271
275
|
# number of seconds to wait for response data. This value can
|
272
|
-
# safely be set
|
273
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
274
277
|
#
|
275
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
276
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -282,7 +285,7 @@ module Aws::AppSync
|
|
282
285
|
# request body. This option has no effect unless the request has
|
283
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
284
287
|
# disables this behaviour. This value can safely be set per
|
285
|
-
# request on the session
|
288
|
+
# request on the session.
|
286
289
|
#
|
287
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
288
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -336,7 +339,30 @@ module Aws::AppSync
|
|
336
339
|
# are cached.
|
337
340
|
#
|
338
341
|
# @option params [required, String] :type
|
339
|
-
# 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:
|
340
366
|
#
|
341
367
|
# * **T2\_SMALL**\: A t2.small instance type.
|
342
368
|
#
|
@@ -364,7 +390,7 @@ module Aws::AppSync
|
|
364
390
|
# transit_encryption_enabled: false,
|
365
391
|
# at_rest_encryption_enabled: false,
|
366
392
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
367
|
-
# 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
|
368
394
|
# })
|
369
395
|
#
|
370
396
|
# @example Response structure
|
@@ -373,7 +399,7 @@ module Aws::AppSync
|
|
373
399
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
374
400
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
375
401
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
376
|
-
# 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"
|
377
403
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
378
404
|
#
|
379
405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/CreateApiCache AWS API Documentation
|
@@ -1104,7 +1130,7 @@ module Aws::AppSync
|
|
1104
1130
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
1105
1131
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
1106
1132
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
1107
|
-
# 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"
|
1108
1134
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
1109
1135
|
#
|
1110
1136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/GetApiCache AWS API Documentation
|
@@ -1956,7 +1982,30 @@ module Aws::AppSync
|
|
1956
1982
|
# are cached.
|
1957
1983
|
#
|
1958
1984
|
# @option params [required, String] :type
|
1959
|
-
# 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:
|
1960
2009
|
#
|
1961
2010
|
# * **T2\_SMALL**\: A t2.small instance type.
|
1962
2011
|
#
|
@@ -1982,7 +2031,7 @@ module Aws::AppSync
|
|
1982
2031
|
# api_id: "String", # required
|
1983
2032
|
# ttl: 1, # required
|
1984
2033
|
# api_caching_behavior: "FULL_REQUEST_CACHING", # required, accepts FULL_REQUEST_CACHING, PER_RESOLVER_CACHING
|
1985
|
-
# 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
|
1986
2035
|
# })
|
1987
2036
|
#
|
1988
2037
|
# @example Response structure
|
@@ -1991,7 +2040,7 @@ module Aws::AppSync
|
|
1991
2040
|
# resp.api_cache.api_caching_behavior #=> String, one of "FULL_REQUEST_CACHING", "PER_RESOLVER_CACHING"
|
1992
2041
|
# resp.api_cache.transit_encryption_enabled #=> Boolean
|
1993
2042
|
# resp.api_cache.at_rest_encryption_enabled #=> Boolean
|
1994
|
-
# 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"
|
1995
2044
|
# resp.api_cache.status #=> String, one of "AVAILABLE", "CREATING", "DELETING", "MODIFYING", "FAILED"
|
1996
2045
|
#
|
1997
2046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appsync-2017-07-25/UpdateApiCache AWS API Documentation
|
@@ -2503,7 +2552,7 @@ module Aws::AppSync
|
|
2503
2552
|
params: params,
|
2504
2553
|
config: config)
|
2505
2554
|
context[:gem_name] = 'aws-sdk-appsync'
|
2506
|
-
context[:gem_version] = '1.
|
2555
|
+
context[:gem_version] = '1.29.0'
|
2507
2556
|
Seahorse::Client::Request.new(handlers, context)
|
2508
2557
|
end
|
2509
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:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::AppSync
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::AppSync::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::AppSync::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::AppSync::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -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
|
|
@@ -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
|
|
@@ -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
|
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
|
|
@@ -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
|
|
@@ -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.
|
4
|
+
version: 1.29.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-
|
11
|
+
date: 2020-07-01 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.
|
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.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,7 +80,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
80
|
- !ruby/object:Gem::Version
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
|
-
|
83
|
+
rubyforge_project:
|
84
|
+
rubygems_version: 2.7.6.2
|
84
85
|
signing_key:
|
85
86
|
specification_version: 4
|
86
87
|
summary: AWS SDK for Ruby - AWSAppSync
|