aws-sdk-apigatewayv2 1.53.0 → 1.54.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +1 -1
- data/lib/aws-sdk-apigatewayv2/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- data/sig/client.rbs +1407 -0
- data/sig/errors.rbs +33 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1848 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1848 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::ApiGatewayV2
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AccessLogSettings
|
17
|
+
attr_accessor destination_arn: ::String
|
18
|
+
attr_accessor format: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class Api
|
23
|
+
attr_accessor api_endpoint: ::String
|
24
|
+
attr_accessor api_gateway_managed: bool
|
25
|
+
attr_accessor api_id: ::String
|
26
|
+
attr_accessor api_key_selection_expression: ::String
|
27
|
+
attr_accessor cors_configuration: Types::Cors
|
28
|
+
attr_accessor created_date: ::Time
|
29
|
+
attr_accessor description: ::String
|
30
|
+
attr_accessor disable_schema_validation: bool
|
31
|
+
attr_accessor disable_execute_api_endpoint: bool
|
32
|
+
attr_accessor import_info: ::Array[::String]
|
33
|
+
attr_accessor name: ::String
|
34
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
35
|
+
attr_accessor route_selection_expression: ::String
|
36
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
37
|
+
attr_accessor version: ::String
|
38
|
+
attr_accessor warnings: ::Array[::String]
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class ApiMapping
|
43
|
+
attr_accessor api_id: ::String
|
44
|
+
attr_accessor api_mapping_id: ::String
|
45
|
+
attr_accessor api_mapping_key: ::String
|
46
|
+
attr_accessor stage: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class ApiMappings
|
51
|
+
attr_accessor items: ::Array[Types::ApiMapping]
|
52
|
+
attr_accessor next_token: ::String
|
53
|
+
SENSITIVE: []
|
54
|
+
end
|
55
|
+
|
56
|
+
class Apis
|
57
|
+
attr_accessor items: ::Array[Types::Api]
|
58
|
+
attr_accessor next_token: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class Authorizer
|
63
|
+
attr_accessor authorizer_credentials_arn: ::String
|
64
|
+
attr_accessor authorizer_id: ::String
|
65
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
66
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
67
|
+
attr_accessor authorizer_uri: ::String
|
68
|
+
attr_accessor identity_source: ::Array[::String]
|
69
|
+
attr_accessor identity_validation_expression: ::String
|
70
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
71
|
+
attr_accessor name: ::String
|
72
|
+
attr_accessor authorizer_payload_format_version: ::String
|
73
|
+
attr_accessor enable_simple_responses: bool
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class Authorizers
|
78
|
+
attr_accessor items: ::Array[Types::Authorizer]
|
79
|
+
attr_accessor next_token: ::String
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class BadRequestException
|
84
|
+
attr_accessor message: ::String
|
85
|
+
SENSITIVE: []
|
86
|
+
end
|
87
|
+
|
88
|
+
class ConflictException
|
89
|
+
attr_accessor message: ::String
|
90
|
+
SENSITIVE: []
|
91
|
+
end
|
92
|
+
|
93
|
+
class Cors
|
94
|
+
attr_accessor allow_credentials: bool
|
95
|
+
attr_accessor allow_headers: ::Array[::String]
|
96
|
+
attr_accessor allow_methods: ::Array[::String]
|
97
|
+
attr_accessor allow_origins: ::Array[::String]
|
98
|
+
attr_accessor expose_headers: ::Array[::String]
|
99
|
+
attr_accessor max_age: ::Integer
|
100
|
+
SENSITIVE: []
|
101
|
+
end
|
102
|
+
|
103
|
+
class CreateApiInput
|
104
|
+
attr_accessor api_key_selection_expression: ::String
|
105
|
+
attr_accessor cors_configuration: Types::Cors
|
106
|
+
attr_accessor credentials_arn: ::String
|
107
|
+
attr_accessor description: ::String
|
108
|
+
attr_accessor disable_schema_validation: bool
|
109
|
+
attr_accessor disable_execute_api_endpoint: bool
|
110
|
+
attr_accessor name: ::String
|
111
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
112
|
+
attr_accessor route_key: ::String
|
113
|
+
attr_accessor route_selection_expression: ::String
|
114
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
115
|
+
attr_accessor target: ::String
|
116
|
+
attr_accessor version: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class CreateApiMappingInput
|
121
|
+
attr_accessor api_id: ::String
|
122
|
+
attr_accessor api_mapping_key: ::String
|
123
|
+
attr_accessor stage: ::String
|
124
|
+
SENSITIVE: []
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateApiMappingRequest
|
128
|
+
attr_accessor api_id: ::String
|
129
|
+
attr_accessor api_mapping_key: ::String
|
130
|
+
attr_accessor domain_name: ::String
|
131
|
+
attr_accessor stage: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class CreateApiMappingResponse
|
136
|
+
attr_accessor api_id: ::String
|
137
|
+
attr_accessor api_mapping_id: ::String
|
138
|
+
attr_accessor api_mapping_key: ::String
|
139
|
+
attr_accessor stage: ::String
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class CreateApiRequest
|
144
|
+
attr_accessor api_key_selection_expression: ::String
|
145
|
+
attr_accessor cors_configuration: Types::Cors
|
146
|
+
attr_accessor credentials_arn: ::String
|
147
|
+
attr_accessor description: ::String
|
148
|
+
attr_accessor disable_schema_validation: bool
|
149
|
+
attr_accessor disable_execute_api_endpoint: bool
|
150
|
+
attr_accessor name: ::String
|
151
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
152
|
+
attr_accessor route_key: ::String
|
153
|
+
attr_accessor route_selection_expression: ::String
|
154
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
155
|
+
attr_accessor target: ::String
|
156
|
+
attr_accessor version: ::String
|
157
|
+
SENSITIVE: []
|
158
|
+
end
|
159
|
+
|
160
|
+
class CreateApiResponse
|
161
|
+
attr_accessor api_endpoint: ::String
|
162
|
+
attr_accessor api_gateway_managed: bool
|
163
|
+
attr_accessor api_id: ::String
|
164
|
+
attr_accessor api_key_selection_expression: ::String
|
165
|
+
attr_accessor cors_configuration: Types::Cors
|
166
|
+
attr_accessor created_date: ::Time
|
167
|
+
attr_accessor description: ::String
|
168
|
+
attr_accessor disable_schema_validation: bool
|
169
|
+
attr_accessor disable_execute_api_endpoint: bool
|
170
|
+
attr_accessor import_info: ::Array[::String]
|
171
|
+
attr_accessor name: ::String
|
172
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
173
|
+
attr_accessor route_selection_expression: ::String
|
174
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
175
|
+
attr_accessor version: ::String
|
176
|
+
attr_accessor warnings: ::Array[::String]
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class CreateAuthorizerInput
|
181
|
+
attr_accessor authorizer_credentials_arn: ::String
|
182
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
183
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
184
|
+
attr_accessor authorizer_uri: ::String
|
185
|
+
attr_accessor identity_source: ::Array[::String]
|
186
|
+
attr_accessor identity_validation_expression: ::String
|
187
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
188
|
+
attr_accessor name: ::String
|
189
|
+
attr_accessor authorizer_payload_format_version: ::String
|
190
|
+
attr_accessor enable_simple_responses: bool
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class CreateAuthorizerRequest
|
195
|
+
attr_accessor api_id: ::String
|
196
|
+
attr_accessor authorizer_credentials_arn: ::String
|
197
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
198
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
199
|
+
attr_accessor authorizer_uri: ::String
|
200
|
+
attr_accessor identity_source: ::Array[::String]
|
201
|
+
attr_accessor identity_validation_expression: ::String
|
202
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
203
|
+
attr_accessor name: ::String
|
204
|
+
attr_accessor authorizer_payload_format_version: ::String
|
205
|
+
attr_accessor enable_simple_responses: bool
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class CreateAuthorizerResponse
|
210
|
+
attr_accessor authorizer_credentials_arn: ::String
|
211
|
+
attr_accessor authorizer_id: ::String
|
212
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
213
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
214
|
+
attr_accessor authorizer_uri: ::String
|
215
|
+
attr_accessor identity_source: ::Array[::String]
|
216
|
+
attr_accessor identity_validation_expression: ::String
|
217
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
218
|
+
attr_accessor name: ::String
|
219
|
+
attr_accessor authorizer_payload_format_version: ::String
|
220
|
+
attr_accessor enable_simple_responses: bool
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class CreateDeploymentInput
|
225
|
+
attr_accessor description: ::String
|
226
|
+
attr_accessor stage_name: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class CreateDeploymentRequest
|
231
|
+
attr_accessor api_id: ::String
|
232
|
+
attr_accessor description: ::String
|
233
|
+
attr_accessor stage_name: ::String
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CreateDeploymentResponse
|
238
|
+
attr_accessor auto_deployed: bool
|
239
|
+
attr_accessor created_date: ::Time
|
240
|
+
attr_accessor deployment_id: ::String
|
241
|
+
attr_accessor deployment_status: ("PENDING" | "FAILED" | "DEPLOYED")
|
242
|
+
attr_accessor deployment_status_message: ::String
|
243
|
+
attr_accessor description: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class CreateDomainNameInput
|
248
|
+
attr_accessor domain_name: ::String
|
249
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
250
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
251
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class CreateDomainNameRequest
|
256
|
+
attr_accessor domain_name: ::String
|
257
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
258
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
259
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class CreateDomainNameResponse
|
264
|
+
attr_accessor api_mapping_selection_expression: ::String
|
265
|
+
attr_accessor domain_name: ::String
|
266
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
267
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
268
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class CreateIntegrationInput
|
273
|
+
attr_accessor connection_id: ::String
|
274
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
275
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
276
|
+
attr_accessor credentials_arn: ::String
|
277
|
+
attr_accessor description: ::String
|
278
|
+
attr_accessor integration_method: ::String
|
279
|
+
attr_accessor integration_subtype: ::String
|
280
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
281
|
+
attr_accessor integration_uri: ::String
|
282
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
283
|
+
attr_accessor payload_format_version: ::String
|
284
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
285
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
286
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
287
|
+
attr_accessor template_selection_expression: ::String
|
288
|
+
attr_accessor timeout_in_millis: ::Integer
|
289
|
+
attr_accessor tls_config: Types::TlsConfigInput
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class CreateIntegrationRequest
|
294
|
+
attr_accessor api_id: ::String
|
295
|
+
attr_accessor connection_id: ::String
|
296
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
297
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
298
|
+
attr_accessor credentials_arn: ::String
|
299
|
+
attr_accessor description: ::String
|
300
|
+
attr_accessor integration_method: ::String
|
301
|
+
attr_accessor integration_subtype: ::String
|
302
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
303
|
+
attr_accessor integration_uri: ::String
|
304
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
305
|
+
attr_accessor payload_format_version: ::String
|
306
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
307
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
308
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
309
|
+
attr_accessor template_selection_expression: ::String
|
310
|
+
attr_accessor timeout_in_millis: ::Integer
|
311
|
+
attr_accessor tls_config: Types::TlsConfigInput
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class CreateIntegrationResult
|
316
|
+
attr_accessor api_gateway_managed: bool
|
317
|
+
attr_accessor connection_id: ::String
|
318
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
319
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
320
|
+
attr_accessor credentials_arn: ::String
|
321
|
+
attr_accessor description: ::String
|
322
|
+
attr_accessor integration_id: ::String
|
323
|
+
attr_accessor integration_method: ::String
|
324
|
+
attr_accessor integration_response_selection_expression: ::String
|
325
|
+
attr_accessor integration_subtype: ::String
|
326
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
327
|
+
attr_accessor integration_uri: ::String
|
328
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
329
|
+
attr_accessor payload_format_version: ::String
|
330
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
331
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
332
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
333
|
+
attr_accessor template_selection_expression: ::String
|
334
|
+
attr_accessor timeout_in_millis: ::Integer
|
335
|
+
attr_accessor tls_config: Types::TlsConfig
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class CreateIntegrationResponseInput
|
340
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
341
|
+
attr_accessor integration_response_key: ::String
|
342
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
343
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
344
|
+
attr_accessor template_selection_expression: ::String
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class CreateIntegrationResponseRequest
|
349
|
+
attr_accessor api_id: ::String
|
350
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
351
|
+
attr_accessor integration_id: ::String
|
352
|
+
attr_accessor integration_response_key: ::String
|
353
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
354
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
355
|
+
attr_accessor template_selection_expression: ::String
|
356
|
+
SENSITIVE: []
|
357
|
+
end
|
358
|
+
|
359
|
+
class CreateIntegrationResponseResponse
|
360
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
361
|
+
attr_accessor integration_response_id: ::String
|
362
|
+
attr_accessor integration_response_key: ::String
|
363
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
364
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
365
|
+
attr_accessor template_selection_expression: ::String
|
366
|
+
SENSITIVE: []
|
367
|
+
end
|
368
|
+
|
369
|
+
class CreateModelInput
|
370
|
+
attr_accessor content_type: ::String
|
371
|
+
attr_accessor description: ::String
|
372
|
+
attr_accessor name: ::String
|
373
|
+
attr_accessor schema: ::String
|
374
|
+
SENSITIVE: []
|
375
|
+
end
|
376
|
+
|
377
|
+
class CreateModelRequest
|
378
|
+
attr_accessor api_id: ::String
|
379
|
+
attr_accessor content_type: ::String
|
380
|
+
attr_accessor description: ::String
|
381
|
+
attr_accessor name: ::String
|
382
|
+
attr_accessor schema: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class CreateModelResponse
|
387
|
+
attr_accessor content_type: ::String
|
388
|
+
attr_accessor description: ::String
|
389
|
+
attr_accessor model_id: ::String
|
390
|
+
attr_accessor name: ::String
|
391
|
+
attr_accessor schema: ::String
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class CreateRouteInput
|
396
|
+
attr_accessor api_key_required: bool
|
397
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
398
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
399
|
+
attr_accessor authorizer_id: ::String
|
400
|
+
attr_accessor model_selection_expression: ::String
|
401
|
+
attr_accessor operation_name: ::String
|
402
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
403
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
404
|
+
attr_accessor route_key: ::String
|
405
|
+
attr_accessor route_response_selection_expression: ::String
|
406
|
+
attr_accessor target: ::String
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class CreateRouteRequest
|
411
|
+
attr_accessor api_id: ::String
|
412
|
+
attr_accessor api_key_required: bool
|
413
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
414
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
415
|
+
attr_accessor authorizer_id: ::String
|
416
|
+
attr_accessor model_selection_expression: ::String
|
417
|
+
attr_accessor operation_name: ::String
|
418
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
419
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
420
|
+
attr_accessor route_key: ::String
|
421
|
+
attr_accessor route_response_selection_expression: ::String
|
422
|
+
attr_accessor target: ::String
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class CreateRouteResult
|
427
|
+
attr_accessor api_gateway_managed: bool
|
428
|
+
attr_accessor api_key_required: bool
|
429
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
430
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
431
|
+
attr_accessor authorizer_id: ::String
|
432
|
+
attr_accessor model_selection_expression: ::String
|
433
|
+
attr_accessor operation_name: ::String
|
434
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
435
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
436
|
+
attr_accessor route_id: ::String
|
437
|
+
attr_accessor route_key: ::String
|
438
|
+
attr_accessor route_response_selection_expression: ::String
|
439
|
+
attr_accessor target: ::String
|
440
|
+
SENSITIVE: []
|
441
|
+
end
|
442
|
+
|
443
|
+
class CreateRouteResponseInput
|
444
|
+
attr_accessor model_selection_expression: ::String
|
445
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
446
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
447
|
+
attr_accessor route_response_key: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class CreateRouteResponseRequest
|
452
|
+
attr_accessor api_id: ::String
|
453
|
+
attr_accessor model_selection_expression: ::String
|
454
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
455
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
456
|
+
attr_accessor route_id: ::String
|
457
|
+
attr_accessor route_response_key: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class CreateRouteResponseResponse
|
462
|
+
attr_accessor model_selection_expression: ::String
|
463
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
464
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
465
|
+
attr_accessor route_response_id: ::String
|
466
|
+
attr_accessor route_response_key: ::String
|
467
|
+
SENSITIVE: []
|
468
|
+
end
|
469
|
+
|
470
|
+
class CreateStageInput
|
471
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
472
|
+
attr_accessor auto_deploy: bool
|
473
|
+
attr_accessor client_certificate_id: ::String
|
474
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
475
|
+
attr_accessor deployment_id: ::String
|
476
|
+
attr_accessor description: ::String
|
477
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
478
|
+
attr_accessor stage_name: ::String
|
479
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
480
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class CreateStageRequest
|
485
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
486
|
+
attr_accessor api_id: ::String
|
487
|
+
attr_accessor auto_deploy: bool
|
488
|
+
attr_accessor client_certificate_id: ::String
|
489
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
490
|
+
attr_accessor deployment_id: ::String
|
491
|
+
attr_accessor description: ::String
|
492
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
493
|
+
attr_accessor stage_name: ::String
|
494
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
495
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class CreateStageResponse
|
500
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
501
|
+
attr_accessor api_gateway_managed: bool
|
502
|
+
attr_accessor auto_deploy: bool
|
503
|
+
attr_accessor client_certificate_id: ::String
|
504
|
+
attr_accessor created_date: ::Time
|
505
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
506
|
+
attr_accessor deployment_id: ::String
|
507
|
+
attr_accessor description: ::String
|
508
|
+
attr_accessor last_deployment_status_message: ::String
|
509
|
+
attr_accessor last_updated_date: ::Time
|
510
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
511
|
+
attr_accessor stage_name: ::String
|
512
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
513
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class CreateVpcLinkInput
|
518
|
+
attr_accessor name: ::String
|
519
|
+
attr_accessor security_group_ids: ::Array[::String]
|
520
|
+
attr_accessor subnet_ids: ::Array[::String]
|
521
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class CreateVpcLinkRequest
|
526
|
+
attr_accessor name: ::String
|
527
|
+
attr_accessor security_group_ids: ::Array[::String]
|
528
|
+
attr_accessor subnet_ids: ::Array[::String]
|
529
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class CreateVpcLinkResponse
|
534
|
+
attr_accessor created_date: ::Time
|
535
|
+
attr_accessor name: ::String
|
536
|
+
attr_accessor security_group_ids: ::Array[::String]
|
537
|
+
attr_accessor subnet_ids: ::Array[::String]
|
538
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
539
|
+
attr_accessor vpc_link_id: ::String
|
540
|
+
attr_accessor vpc_link_status: ("PENDING" | "AVAILABLE" | "DELETING" | "FAILED" | "INACTIVE")
|
541
|
+
attr_accessor vpc_link_status_message: ::String
|
542
|
+
attr_accessor vpc_link_version: ("V2")
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class DeleteAccessLogSettingsRequest
|
547
|
+
attr_accessor api_id: ::String
|
548
|
+
attr_accessor stage_name: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class DeleteApiMappingRequest
|
553
|
+
attr_accessor api_mapping_id: ::String
|
554
|
+
attr_accessor domain_name: ::String
|
555
|
+
SENSITIVE: []
|
556
|
+
end
|
557
|
+
|
558
|
+
class DeleteApiRequest
|
559
|
+
attr_accessor api_id: ::String
|
560
|
+
SENSITIVE: []
|
561
|
+
end
|
562
|
+
|
563
|
+
class DeleteAuthorizerRequest
|
564
|
+
attr_accessor api_id: ::String
|
565
|
+
attr_accessor authorizer_id: ::String
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class DeleteCorsConfigurationRequest
|
570
|
+
attr_accessor api_id: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class DeleteDeploymentRequest
|
575
|
+
attr_accessor api_id: ::String
|
576
|
+
attr_accessor deployment_id: ::String
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class DeleteDomainNameRequest
|
581
|
+
attr_accessor domain_name: ::String
|
582
|
+
SENSITIVE: []
|
583
|
+
end
|
584
|
+
|
585
|
+
class DeleteIntegrationRequest
|
586
|
+
attr_accessor api_id: ::String
|
587
|
+
attr_accessor integration_id: ::String
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class DeleteIntegrationResponseRequest
|
592
|
+
attr_accessor api_id: ::String
|
593
|
+
attr_accessor integration_id: ::String
|
594
|
+
attr_accessor integration_response_id: ::String
|
595
|
+
SENSITIVE: []
|
596
|
+
end
|
597
|
+
|
598
|
+
class DeleteModelRequest
|
599
|
+
attr_accessor api_id: ::String
|
600
|
+
attr_accessor model_id: ::String
|
601
|
+
SENSITIVE: []
|
602
|
+
end
|
603
|
+
|
604
|
+
class DeleteRouteRequest
|
605
|
+
attr_accessor api_id: ::String
|
606
|
+
attr_accessor route_id: ::String
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
610
|
+
class DeleteRouteRequestParameterRequest
|
611
|
+
attr_accessor api_id: ::String
|
612
|
+
attr_accessor request_parameter_key: ::String
|
613
|
+
attr_accessor route_id: ::String
|
614
|
+
SENSITIVE: []
|
615
|
+
end
|
616
|
+
|
617
|
+
class DeleteRouteResponseRequest
|
618
|
+
attr_accessor api_id: ::String
|
619
|
+
attr_accessor route_id: ::String
|
620
|
+
attr_accessor route_response_id: ::String
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class DeleteRouteSettingsRequest
|
625
|
+
attr_accessor api_id: ::String
|
626
|
+
attr_accessor route_key: ::String
|
627
|
+
attr_accessor stage_name: ::String
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class DeleteStageRequest
|
632
|
+
attr_accessor api_id: ::String
|
633
|
+
attr_accessor stage_name: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class DeleteVpcLinkRequest
|
638
|
+
attr_accessor vpc_link_id: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class DeleteVpcLinkResponse < Aws::EmptyStructure
|
643
|
+
end
|
644
|
+
|
645
|
+
class Deployment
|
646
|
+
attr_accessor auto_deployed: bool
|
647
|
+
attr_accessor created_date: ::Time
|
648
|
+
attr_accessor deployment_id: ::String
|
649
|
+
attr_accessor deployment_status: ("PENDING" | "FAILED" | "DEPLOYED")
|
650
|
+
attr_accessor deployment_status_message: ::String
|
651
|
+
attr_accessor description: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class Deployments
|
656
|
+
attr_accessor items: ::Array[Types::Deployment]
|
657
|
+
attr_accessor next_token: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class DomainName
|
662
|
+
attr_accessor api_mapping_selection_expression: ::String
|
663
|
+
attr_accessor domain_name: ::String
|
664
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
665
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
666
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
667
|
+
SENSITIVE: []
|
668
|
+
end
|
669
|
+
|
670
|
+
class DomainNameConfiguration
|
671
|
+
attr_accessor api_gateway_domain_name: ::String
|
672
|
+
attr_accessor certificate_arn: ::String
|
673
|
+
attr_accessor certificate_name: ::String
|
674
|
+
attr_accessor certificate_upload_date: ::Time
|
675
|
+
attr_accessor domain_name_status: ("AVAILABLE" | "UPDATING" | "PENDING_CERTIFICATE_REIMPORT" | "PENDING_OWNERSHIP_VERIFICATION")
|
676
|
+
attr_accessor domain_name_status_message: ::String
|
677
|
+
attr_accessor endpoint_type: ("REGIONAL" | "EDGE")
|
678
|
+
attr_accessor hosted_zone_id: ::String
|
679
|
+
attr_accessor security_policy: ("TLS_1_0" | "TLS_1_2")
|
680
|
+
attr_accessor ownership_verification_certificate_arn: ::String
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class DomainNames
|
685
|
+
attr_accessor items: ::Array[Types::DomainName]
|
686
|
+
attr_accessor next_token: ::String
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class ExportApiRequest
|
691
|
+
attr_accessor api_id: ::String
|
692
|
+
attr_accessor export_version: ::String
|
693
|
+
attr_accessor include_extensions: bool
|
694
|
+
attr_accessor output_type: ::String
|
695
|
+
attr_accessor specification: ::String
|
696
|
+
attr_accessor stage_name: ::String
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class ExportApiResponse
|
701
|
+
attr_accessor body: ::String
|
702
|
+
SENSITIVE: []
|
703
|
+
end
|
704
|
+
|
705
|
+
class ResetAuthorizersCacheRequest
|
706
|
+
attr_accessor api_id: ::String
|
707
|
+
attr_accessor stage_name: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class GetApiMappingRequest
|
712
|
+
attr_accessor api_mapping_id: ::String
|
713
|
+
attr_accessor domain_name: ::String
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class GetApiMappingResponse
|
718
|
+
attr_accessor api_id: ::String
|
719
|
+
attr_accessor api_mapping_id: ::String
|
720
|
+
attr_accessor api_mapping_key: ::String
|
721
|
+
attr_accessor stage: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class GetApiMappingsRequest
|
726
|
+
attr_accessor domain_name: ::String
|
727
|
+
attr_accessor max_results: ::String
|
728
|
+
attr_accessor next_token: ::String
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class GetApiMappingsResponse
|
733
|
+
attr_accessor items: ::Array[Types::ApiMapping]
|
734
|
+
attr_accessor next_token: ::String
|
735
|
+
SENSITIVE: []
|
736
|
+
end
|
737
|
+
|
738
|
+
class GetApiRequest
|
739
|
+
attr_accessor api_id: ::String
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class GetApiResponse
|
744
|
+
attr_accessor api_endpoint: ::String
|
745
|
+
attr_accessor api_gateway_managed: bool
|
746
|
+
attr_accessor api_id: ::String
|
747
|
+
attr_accessor api_key_selection_expression: ::String
|
748
|
+
attr_accessor cors_configuration: Types::Cors
|
749
|
+
attr_accessor created_date: ::Time
|
750
|
+
attr_accessor description: ::String
|
751
|
+
attr_accessor disable_schema_validation: bool
|
752
|
+
attr_accessor disable_execute_api_endpoint: bool
|
753
|
+
attr_accessor import_info: ::Array[::String]
|
754
|
+
attr_accessor name: ::String
|
755
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
756
|
+
attr_accessor route_selection_expression: ::String
|
757
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
758
|
+
attr_accessor version: ::String
|
759
|
+
attr_accessor warnings: ::Array[::String]
|
760
|
+
SENSITIVE: []
|
761
|
+
end
|
762
|
+
|
763
|
+
class GetApisRequest
|
764
|
+
attr_accessor max_results: ::String
|
765
|
+
attr_accessor next_token: ::String
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class GetApisResponse
|
770
|
+
attr_accessor items: ::Array[Types::Api]
|
771
|
+
attr_accessor next_token: ::String
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class GetAuthorizerRequest
|
776
|
+
attr_accessor api_id: ::String
|
777
|
+
attr_accessor authorizer_id: ::String
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class GetAuthorizerResponse
|
782
|
+
attr_accessor authorizer_credentials_arn: ::String
|
783
|
+
attr_accessor authorizer_id: ::String
|
784
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
785
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
786
|
+
attr_accessor authorizer_uri: ::String
|
787
|
+
attr_accessor identity_source: ::Array[::String]
|
788
|
+
attr_accessor identity_validation_expression: ::String
|
789
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
790
|
+
attr_accessor name: ::String
|
791
|
+
attr_accessor authorizer_payload_format_version: ::String
|
792
|
+
attr_accessor enable_simple_responses: bool
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class GetAuthorizersRequest
|
797
|
+
attr_accessor api_id: ::String
|
798
|
+
attr_accessor max_results: ::String
|
799
|
+
attr_accessor next_token: ::String
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class GetAuthorizersResponse
|
804
|
+
attr_accessor items: ::Array[Types::Authorizer]
|
805
|
+
attr_accessor next_token: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class GetDeploymentRequest
|
810
|
+
attr_accessor api_id: ::String
|
811
|
+
attr_accessor deployment_id: ::String
|
812
|
+
SENSITIVE: []
|
813
|
+
end
|
814
|
+
|
815
|
+
class GetDeploymentResponse
|
816
|
+
attr_accessor auto_deployed: bool
|
817
|
+
attr_accessor created_date: ::Time
|
818
|
+
attr_accessor deployment_id: ::String
|
819
|
+
attr_accessor deployment_status: ("PENDING" | "FAILED" | "DEPLOYED")
|
820
|
+
attr_accessor deployment_status_message: ::String
|
821
|
+
attr_accessor description: ::String
|
822
|
+
SENSITIVE: []
|
823
|
+
end
|
824
|
+
|
825
|
+
class GetDeploymentsRequest
|
826
|
+
attr_accessor api_id: ::String
|
827
|
+
attr_accessor max_results: ::String
|
828
|
+
attr_accessor next_token: ::String
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class GetDeploymentsResponse
|
833
|
+
attr_accessor items: ::Array[Types::Deployment]
|
834
|
+
attr_accessor next_token: ::String
|
835
|
+
SENSITIVE: []
|
836
|
+
end
|
837
|
+
|
838
|
+
class GetDomainNameRequest
|
839
|
+
attr_accessor domain_name: ::String
|
840
|
+
SENSITIVE: []
|
841
|
+
end
|
842
|
+
|
843
|
+
class GetDomainNameResponse
|
844
|
+
attr_accessor api_mapping_selection_expression: ::String
|
845
|
+
attr_accessor domain_name: ::String
|
846
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
847
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
848
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
849
|
+
SENSITIVE: []
|
850
|
+
end
|
851
|
+
|
852
|
+
class GetDomainNamesRequest
|
853
|
+
attr_accessor max_results: ::String
|
854
|
+
attr_accessor next_token: ::String
|
855
|
+
SENSITIVE: []
|
856
|
+
end
|
857
|
+
|
858
|
+
class GetDomainNamesResponse
|
859
|
+
attr_accessor items: ::Array[Types::DomainName]
|
860
|
+
attr_accessor next_token: ::String
|
861
|
+
SENSITIVE: []
|
862
|
+
end
|
863
|
+
|
864
|
+
class GetIntegrationRequest
|
865
|
+
attr_accessor api_id: ::String
|
866
|
+
attr_accessor integration_id: ::String
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class GetIntegrationResult
|
871
|
+
attr_accessor api_gateway_managed: bool
|
872
|
+
attr_accessor connection_id: ::String
|
873
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
874
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
875
|
+
attr_accessor credentials_arn: ::String
|
876
|
+
attr_accessor description: ::String
|
877
|
+
attr_accessor integration_id: ::String
|
878
|
+
attr_accessor integration_method: ::String
|
879
|
+
attr_accessor integration_response_selection_expression: ::String
|
880
|
+
attr_accessor integration_subtype: ::String
|
881
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
882
|
+
attr_accessor integration_uri: ::String
|
883
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
884
|
+
attr_accessor payload_format_version: ::String
|
885
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
886
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
887
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
888
|
+
attr_accessor template_selection_expression: ::String
|
889
|
+
attr_accessor timeout_in_millis: ::Integer
|
890
|
+
attr_accessor tls_config: Types::TlsConfig
|
891
|
+
SENSITIVE: []
|
892
|
+
end
|
893
|
+
|
894
|
+
class GetIntegrationResponseRequest
|
895
|
+
attr_accessor api_id: ::String
|
896
|
+
attr_accessor integration_id: ::String
|
897
|
+
attr_accessor integration_response_id: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class GetIntegrationResponseResponse
|
902
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
903
|
+
attr_accessor integration_response_id: ::String
|
904
|
+
attr_accessor integration_response_key: ::String
|
905
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
906
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
907
|
+
attr_accessor template_selection_expression: ::String
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class GetIntegrationResponsesRequest
|
912
|
+
attr_accessor api_id: ::String
|
913
|
+
attr_accessor integration_id: ::String
|
914
|
+
attr_accessor max_results: ::String
|
915
|
+
attr_accessor next_token: ::String
|
916
|
+
SENSITIVE: []
|
917
|
+
end
|
918
|
+
|
919
|
+
class GetIntegrationResponsesResponse
|
920
|
+
attr_accessor items: ::Array[Types::IntegrationResponse]
|
921
|
+
attr_accessor next_token: ::String
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class GetIntegrationsRequest
|
926
|
+
attr_accessor api_id: ::String
|
927
|
+
attr_accessor max_results: ::String
|
928
|
+
attr_accessor next_token: ::String
|
929
|
+
SENSITIVE: []
|
930
|
+
end
|
931
|
+
|
932
|
+
class GetIntegrationsResponse
|
933
|
+
attr_accessor items: ::Array[Types::Integration]
|
934
|
+
attr_accessor next_token: ::String
|
935
|
+
SENSITIVE: []
|
936
|
+
end
|
937
|
+
|
938
|
+
class GetModelRequest
|
939
|
+
attr_accessor api_id: ::String
|
940
|
+
attr_accessor model_id: ::String
|
941
|
+
SENSITIVE: []
|
942
|
+
end
|
943
|
+
|
944
|
+
class GetModelResponse
|
945
|
+
attr_accessor content_type: ::String
|
946
|
+
attr_accessor description: ::String
|
947
|
+
attr_accessor model_id: ::String
|
948
|
+
attr_accessor name: ::String
|
949
|
+
attr_accessor schema: ::String
|
950
|
+
SENSITIVE: []
|
951
|
+
end
|
952
|
+
|
953
|
+
class GetModelTemplateRequest
|
954
|
+
attr_accessor api_id: ::String
|
955
|
+
attr_accessor model_id: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class GetModelTemplateResponse
|
960
|
+
attr_accessor value: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class GetModelsRequest
|
965
|
+
attr_accessor api_id: ::String
|
966
|
+
attr_accessor max_results: ::String
|
967
|
+
attr_accessor next_token: ::String
|
968
|
+
SENSITIVE: []
|
969
|
+
end
|
970
|
+
|
971
|
+
class GetModelsResponse
|
972
|
+
attr_accessor items: ::Array[Types::Model]
|
973
|
+
attr_accessor next_token: ::String
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
977
|
+
class GetRouteRequest
|
978
|
+
attr_accessor api_id: ::String
|
979
|
+
attr_accessor route_id: ::String
|
980
|
+
SENSITIVE: []
|
981
|
+
end
|
982
|
+
|
983
|
+
class GetRouteResult
|
984
|
+
attr_accessor api_gateway_managed: bool
|
985
|
+
attr_accessor api_key_required: bool
|
986
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
987
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
988
|
+
attr_accessor authorizer_id: ::String
|
989
|
+
attr_accessor model_selection_expression: ::String
|
990
|
+
attr_accessor operation_name: ::String
|
991
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
992
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
993
|
+
attr_accessor route_id: ::String
|
994
|
+
attr_accessor route_key: ::String
|
995
|
+
attr_accessor route_response_selection_expression: ::String
|
996
|
+
attr_accessor target: ::String
|
997
|
+
SENSITIVE: []
|
998
|
+
end
|
999
|
+
|
1000
|
+
class GetRouteResponseRequest
|
1001
|
+
attr_accessor api_id: ::String
|
1002
|
+
attr_accessor route_id: ::String
|
1003
|
+
attr_accessor route_response_id: ::String
|
1004
|
+
SENSITIVE: []
|
1005
|
+
end
|
1006
|
+
|
1007
|
+
class GetRouteResponseResponse
|
1008
|
+
attr_accessor model_selection_expression: ::String
|
1009
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
1010
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1011
|
+
attr_accessor route_response_id: ::String
|
1012
|
+
attr_accessor route_response_key: ::String
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class GetRouteResponsesRequest
|
1017
|
+
attr_accessor api_id: ::String
|
1018
|
+
attr_accessor max_results: ::String
|
1019
|
+
attr_accessor next_token: ::String
|
1020
|
+
attr_accessor route_id: ::String
|
1021
|
+
SENSITIVE: []
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class GetRouteResponsesResponse
|
1025
|
+
attr_accessor items: ::Array[Types::RouteResponse]
|
1026
|
+
attr_accessor next_token: ::String
|
1027
|
+
SENSITIVE: []
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class GetRoutesRequest
|
1031
|
+
attr_accessor api_id: ::String
|
1032
|
+
attr_accessor max_results: ::String
|
1033
|
+
attr_accessor next_token: ::String
|
1034
|
+
SENSITIVE: []
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class GetRoutesResponse
|
1038
|
+
attr_accessor items: ::Array[Types::Route]
|
1039
|
+
attr_accessor next_token: ::String
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class GetStageRequest
|
1044
|
+
attr_accessor api_id: ::String
|
1045
|
+
attr_accessor stage_name: ::String
|
1046
|
+
SENSITIVE: []
|
1047
|
+
end
|
1048
|
+
|
1049
|
+
class GetStageResponse
|
1050
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
1051
|
+
attr_accessor api_gateway_managed: bool
|
1052
|
+
attr_accessor auto_deploy: bool
|
1053
|
+
attr_accessor client_certificate_id: ::String
|
1054
|
+
attr_accessor created_date: ::Time
|
1055
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
1056
|
+
attr_accessor deployment_id: ::String
|
1057
|
+
attr_accessor description: ::String
|
1058
|
+
attr_accessor last_deployment_status_message: ::String
|
1059
|
+
attr_accessor last_updated_date: ::Time
|
1060
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
1061
|
+
attr_accessor stage_name: ::String
|
1062
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
1063
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1064
|
+
SENSITIVE: []
|
1065
|
+
end
|
1066
|
+
|
1067
|
+
class GetStagesRequest
|
1068
|
+
attr_accessor api_id: ::String
|
1069
|
+
attr_accessor max_results: ::String
|
1070
|
+
attr_accessor next_token: ::String
|
1071
|
+
SENSITIVE: []
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
class GetStagesResponse
|
1075
|
+
attr_accessor items: ::Array[Types::Stage]
|
1076
|
+
attr_accessor next_token: ::String
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class GetTagsRequest
|
1081
|
+
attr_accessor resource_arn: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class GetTagsResponse
|
1086
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1087
|
+
SENSITIVE: []
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
class GetVpcLinkRequest
|
1091
|
+
attr_accessor vpc_link_id: ::String
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class GetVpcLinkResponse
|
1096
|
+
attr_accessor created_date: ::Time
|
1097
|
+
attr_accessor name: ::String
|
1098
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1099
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1100
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1101
|
+
attr_accessor vpc_link_id: ::String
|
1102
|
+
attr_accessor vpc_link_status: ("PENDING" | "AVAILABLE" | "DELETING" | "FAILED" | "INACTIVE")
|
1103
|
+
attr_accessor vpc_link_status_message: ::String
|
1104
|
+
attr_accessor vpc_link_version: ("V2")
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class GetVpcLinksRequest
|
1109
|
+
attr_accessor max_results: ::String
|
1110
|
+
attr_accessor next_token: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class GetVpcLinksResponse
|
1115
|
+
attr_accessor items: ::Array[Types::VpcLink]
|
1116
|
+
attr_accessor next_token: ::String
|
1117
|
+
SENSITIVE: []
|
1118
|
+
end
|
1119
|
+
|
1120
|
+
class ImportApiInput
|
1121
|
+
attr_accessor body: ::String
|
1122
|
+
SENSITIVE: []
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class ImportApiRequest
|
1126
|
+
attr_accessor basepath: ::String
|
1127
|
+
attr_accessor body: ::String
|
1128
|
+
attr_accessor fail_on_warnings: bool
|
1129
|
+
SENSITIVE: []
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class ImportApiResponse
|
1133
|
+
attr_accessor api_endpoint: ::String
|
1134
|
+
attr_accessor api_gateway_managed: bool
|
1135
|
+
attr_accessor api_id: ::String
|
1136
|
+
attr_accessor api_key_selection_expression: ::String
|
1137
|
+
attr_accessor cors_configuration: Types::Cors
|
1138
|
+
attr_accessor created_date: ::Time
|
1139
|
+
attr_accessor description: ::String
|
1140
|
+
attr_accessor disable_schema_validation: bool
|
1141
|
+
attr_accessor disable_execute_api_endpoint: bool
|
1142
|
+
attr_accessor import_info: ::Array[::String]
|
1143
|
+
attr_accessor name: ::String
|
1144
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
1145
|
+
attr_accessor route_selection_expression: ::String
|
1146
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1147
|
+
attr_accessor version: ::String
|
1148
|
+
attr_accessor warnings: ::Array[::String]
|
1149
|
+
SENSITIVE: []
|
1150
|
+
end
|
1151
|
+
|
1152
|
+
class Integration
|
1153
|
+
attr_accessor api_gateway_managed: bool
|
1154
|
+
attr_accessor connection_id: ::String
|
1155
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
1156
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1157
|
+
attr_accessor credentials_arn: ::String
|
1158
|
+
attr_accessor description: ::String
|
1159
|
+
attr_accessor integration_id: ::String
|
1160
|
+
attr_accessor integration_method: ::String
|
1161
|
+
attr_accessor integration_response_selection_expression: ::String
|
1162
|
+
attr_accessor integration_subtype: ::String
|
1163
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
1164
|
+
attr_accessor integration_uri: ::String
|
1165
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
1166
|
+
attr_accessor payload_format_version: ::String
|
1167
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
1168
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1169
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
1170
|
+
attr_accessor template_selection_expression: ::String
|
1171
|
+
attr_accessor timeout_in_millis: ::Integer
|
1172
|
+
attr_accessor tls_config: Types::TlsConfig
|
1173
|
+
SENSITIVE: []
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
class IntegrationResponse
|
1177
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1178
|
+
attr_accessor integration_response_id: ::String
|
1179
|
+
attr_accessor integration_response_key: ::String
|
1180
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
1181
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
1182
|
+
attr_accessor template_selection_expression: ::String
|
1183
|
+
SENSITIVE: []
|
1184
|
+
end
|
1185
|
+
|
1186
|
+
class IntegrationResponses
|
1187
|
+
attr_accessor items: ::Array[Types::IntegrationResponse]
|
1188
|
+
attr_accessor next_token: ::String
|
1189
|
+
SENSITIVE: []
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
class Integrations
|
1193
|
+
attr_accessor items: ::Array[Types::Integration]
|
1194
|
+
attr_accessor next_token: ::String
|
1195
|
+
SENSITIVE: []
|
1196
|
+
end
|
1197
|
+
|
1198
|
+
class JWTConfiguration
|
1199
|
+
attr_accessor audience: ::Array[::String]
|
1200
|
+
attr_accessor issuer: ::String
|
1201
|
+
SENSITIVE: []
|
1202
|
+
end
|
1203
|
+
|
1204
|
+
class LimitExceededException
|
1205
|
+
attr_accessor limit_type: ::String
|
1206
|
+
attr_accessor message: ::String
|
1207
|
+
SENSITIVE: []
|
1208
|
+
end
|
1209
|
+
|
1210
|
+
class Model
|
1211
|
+
attr_accessor content_type: ::String
|
1212
|
+
attr_accessor description: ::String
|
1213
|
+
attr_accessor model_id: ::String
|
1214
|
+
attr_accessor name: ::String
|
1215
|
+
attr_accessor schema: ::String
|
1216
|
+
SENSITIVE: []
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
class Models
|
1220
|
+
attr_accessor items: ::Array[Types::Model]
|
1221
|
+
attr_accessor next_token: ::String
|
1222
|
+
SENSITIVE: []
|
1223
|
+
end
|
1224
|
+
|
1225
|
+
class MutualTlsAuthentication
|
1226
|
+
attr_accessor truststore_uri: ::String
|
1227
|
+
attr_accessor truststore_version: ::String
|
1228
|
+
attr_accessor truststore_warnings: ::Array[::String]
|
1229
|
+
SENSITIVE: []
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
class MutualTlsAuthenticationInput
|
1233
|
+
attr_accessor truststore_uri: ::String
|
1234
|
+
attr_accessor truststore_version: ::String
|
1235
|
+
SENSITIVE: []
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
class NotFoundException
|
1239
|
+
attr_accessor message: ::String
|
1240
|
+
attr_accessor resource_type: ::String
|
1241
|
+
SENSITIVE: []
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
class ParameterConstraints
|
1245
|
+
attr_accessor required: bool
|
1246
|
+
SENSITIVE: []
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
class ReimportApiInput
|
1250
|
+
attr_accessor body: ::String
|
1251
|
+
SENSITIVE: []
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class ReimportApiRequest
|
1255
|
+
attr_accessor api_id: ::String
|
1256
|
+
attr_accessor basepath: ::String
|
1257
|
+
attr_accessor body: ::String
|
1258
|
+
attr_accessor fail_on_warnings: bool
|
1259
|
+
SENSITIVE: []
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
class ReimportApiResponse
|
1263
|
+
attr_accessor api_endpoint: ::String
|
1264
|
+
attr_accessor api_gateway_managed: bool
|
1265
|
+
attr_accessor api_id: ::String
|
1266
|
+
attr_accessor api_key_selection_expression: ::String
|
1267
|
+
attr_accessor cors_configuration: Types::Cors
|
1268
|
+
attr_accessor created_date: ::Time
|
1269
|
+
attr_accessor description: ::String
|
1270
|
+
attr_accessor disable_schema_validation: bool
|
1271
|
+
attr_accessor disable_execute_api_endpoint: bool
|
1272
|
+
attr_accessor import_info: ::Array[::String]
|
1273
|
+
attr_accessor name: ::String
|
1274
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
1275
|
+
attr_accessor route_selection_expression: ::String
|
1276
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1277
|
+
attr_accessor version: ::String
|
1278
|
+
attr_accessor warnings: ::Array[::String]
|
1279
|
+
SENSITIVE: []
|
1280
|
+
end
|
1281
|
+
|
1282
|
+
class Route
|
1283
|
+
attr_accessor api_gateway_managed: bool
|
1284
|
+
attr_accessor api_key_required: bool
|
1285
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
1286
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
1287
|
+
attr_accessor authorizer_id: ::String
|
1288
|
+
attr_accessor model_selection_expression: ::String
|
1289
|
+
attr_accessor operation_name: ::String
|
1290
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
1291
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1292
|
+
attr_accessor route_id: ::String
|
1293
|
+
attr_accessor route_key: ::String
|
1294
|
+
attr_accessor route_response_selection_expression: ::String
|
1295
|
+
attr_accessor target: ::String
|
1296
|
+
SENSITIVE: []
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class RouteResponse
|
1300
|
+
attr_accessor model_selection_expression: ::String
|
1301
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
1302
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1303
|
+
attr_accessor route_response_id: ::String
|
1304
|
+
attr_accessor route_response_key: ::String
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class RouteResponses
|
1309
|
+
attr_accessor items: ::Array[Types::RouteResponse]
|
1310
|
+
attr_accessor next_token: ::String
|
1311
|
+
SENSITIVE: []
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
class RouteSettings
|
1315
|
+
attr_accessor data_trace_enabled: bool
|
1316
|
+
attr_accessor detailed_metrics_enabled: bool
|
1317
|
+
attr_accessor logging_level: ("ERROR" | "INFO" | "OFF")
|
1318
|
+
attr_accessor throttling_burst_limit: ::Integer
|
1319
|
+
attr_accessor throttling_rate_limit: ::Float
|
1320
|
+
SENSITIVE: []
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class Routes
|
1324
|
+
attr_accessor items: ::Array[Types::Route]
|
1325
|
+
attr_accessor next_token: ::String
|
1326
|
+
SENSITIVE: []
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
class Stage
|
1330
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
1331
|
+
attr_accessor api_gateway_managed: bool
|
1332
|
+
attr_accessor auto_deploy: bool
|
1333
|
+
attr_accessor client_certificate_id: ::String
|
1334
|
+
attr_accessor created_date: ::Time
|
1335
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
1336
|
+
attr_accessor deployment_id: ::String
|
1337
|
+
attr_accessor description: ::String
|
1338
|
+
attr_accessor last_deployment_status_message: ::String
|
1339
|
+
attr_accessor last_updated_date: ::Time
|
1340
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
1341
|
+
attr_accessor stage_name: ::String
|
1342
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
1343
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1344
|
+
SENSITIVE: []
|
1345
|
+
end
|
1346
|
+
|
1347
|
+
class Stages
|
1348
|
+
attr_accessor items: ::Array[Types::Stage]
|
1349
|
+
attr_accessor next_token: ::String
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class TagResourceInput
|
1354
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1355
|
+
SENSITIVE: []
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
class TagResourceRequest
|
1359
|
+
attr_accessor resource_arn: ::String
|
1360
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class TagResourceResponse < Aws::EmptyStructure
|
1365
|
+
end
|
1366
|
+
|
1367
|
+
class Template
|
1368
|
+
attr_accessor value: ::String
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class TlsConfig
|
1373
|
+
attr_accessor server_name_to_verify: ::String
|
1374
|
+
SENSITIVE: []
|
1375
|
+
end
|
1376
|
+
|
1377
|
+
class TlsConfigInput
|
1378
|
+
attr_accessor server_name_to_verify: ::String
|
1379
|
+
SENSITIVE: []
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
class TooManyRequestsException
|
1383
|
+
attr_accessor limit_type: ::String
|
1384
|
+
attr_accessor message: ::String
|
1385
|
+
SENSITIVE: []
|
1386
|
+
end
|
1387
|
+
|
1388
|
+
class UntagResourceRequest
|
1389
|
+
attr_accessor resource_arn: ::String
|
1390
|
+
attr_accessor tag_keys: ::Array[::String]
|
1391
|
+
SENSITIVE: []
|
1392
|
+
end
|
1393
|
+
|
1394
|
+
class UpdateApiInput
|
1395
|
+
attr_accessor api_key_selection_expression: ::String
|
1396
|
+
attr_accessor cors_configuration: Types::Cors
|
1397
|
+
attr_accessor credentials_arn: ::String
|
1398
|
+
attr_accessor description: ::String
|
1399
|
+
attr_accessor disable_schema_validation: bool
|
1400
|
+
attr_accessor disable_execute_api_endpoint: bool
|
1401
|
+
attr_accessor name: ::String
|
1402
|
+
attr_accessor route_key: ::String
|
1403
|
+
attr_accessor route_selection_expression: ::String
|
1404
|
+
attr_accessor target: ::String
|
1405
|
+
attr_accessor version: ::String
|
1406
|
+
SENSITIVE: []
|
1407
|
+
end
|
1408
|
+
|
1409
|
+
class UpdateApiMappingInput
|
1410
|
+
attr_accessor api_id: ::String
|
1411
|
+
attr_accessor api_mapping_key: ::String
|
1412
|
+
attr_accessor stage: ::String
|
1413
|
+
SENSITIVE: []
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
class UpdateApiMappingRequest
|
1417
|
+
attr_accessor api_id: ::String
|
1418
|
+
attr_accessor api_mapping_id: ::String
|
1419
|
+
attr_accessor api_mapping_key: ::String
|
1420
|
+
attr_accessor domain_name: ::String
|
1421
|
+
attr_accessor stage: ::String
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class UpdateApiMappingResponse
|
1426
|
+
attr_accessor api_id: ::String
|
1427
|
+
attr_accessor api_mapping_id: ::String
|
1428
|
+
attr_accessor api_mapping_key: ::String
|
1429
|
+
attr_accessor stage: ::String
|
1430
|
+
SENSITIVE: []
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
class UpdateApiRequest
|
1434
|
+
attr_accessor api_id: ::String
|
1435
|
+
attr_accessor api_key_selection_expression: ::String
|
1436
|
+
attr_accessor cors_configuration: Types::Cors
|
1437
|
+
attr_accessor credentials_arn: ::String
|
1438
|
+
attr_accessor description: ::String
|
1439
|
+
attr_accessor disable_schema_validation: bool
|
1440
|
+
attr_accessor disable_execute_api_endpoint: bool
|
1441
|
+
attr_accessor name: ::String
|
1442
|
+
attr_accessor route_key: ::String
|
1443
|
+
attr_accessor route_selection_expression: ::String
|
1444
|
+
attr_accessor target: ::String
|
1445
|
+
attr_accessor version: ::String
|
1446
|
+
SENSITIVE: []
|
1447
|
+
end
|
1448
|
+
|
1449
|
+
class UpdateApiResponse
|
1450
|
+
attr_accessor api_endpoint: ::String
|
1451
|
+
attr_accessor api_gateway_managed: bool
|
1452
|
+
attr_accessor api_id: ::String
|
1453
|
+
attr_accessor api_key_selection_expression: ::String
|
1454
|
+
attr_accessor cors_configuration: Types::Cors
|
1455
|
+
attr_accessor created_date: ::Time
|
1456
|
+
attr_accessor description: ::String
|
1457
|
+
attr_accessor disable_schema_validation: bool
|
1458
|
+
attr_accessor disable_execute_api_endpoint: bool
|
1459
|
+
attr_accessor import_info: ::Array[::String]
|
1460
|
+
attr_accessor name: ::String
|
1461
|
+
attr_accessor protocol_type: ("WEBSOCKET" | "HTTP")
|
1462
|
+
attr_accessor route_selection_expression: ::String
|
1463
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1464
|
+
attr_accessor version: ::String
|
1465
|
+
attr_accessor warnings: ::Array[::String]
|
1466
|
+
SENSITIVE: []
|
1467
|
+
end
|
1468
|
+
|
1469
|
+
class UpdateAuthorizerInput
|
1470
|
+
attr_accessor authorizer_credentials_arn: ::String
|
1471
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
1472
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
1473
|
+
attr_accessor authorizer_uri: ::String
|
1474
|
+
attr_accessor identity_source: ::Array[::String]
|
1475
|
+
attr_accessor identity_validation_expression: ::String
|
1476
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
1477
|
+
attr_accessor name: ::String
|
1478
|
+
attr_accessor authorizer_payload_format_version: ::String
|
1479
|
+
attr_accessor enable_simple_responses: bool
|
1480
|
+
SENSITIVE: []
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class UpdateAuthorizerRequest
|
1484
|
+
attr_accessor api_id: ::String
|
1485
|
+
attr_accessor authorizer_credentials_arn: ::String
|
1486
|
+
attr_accessor authorizer_id: ::String
|
1487
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
1488
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
1489
|
+
attr_accessor authorizer_uri: ::String
|
1490
|
+
attr_accessor identity_source: ::Array[::String]
|
1491
|
+
attr_accessor identity_validation_expression: ::String
|
1492
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
1493
|
+
attr_accessor name: ::String
|
1494
|
+
attr_accessor authorizer_payload_format_version: ::String
|
1495
|
+
attr_accessor enable_simple_responses: bool
|
1496
|
+
SENSITIVE: []
|
1497
|
+
end
|
1498
|
+
|
1499
|
+
class UpdateAuthorizerResponse
|
1500
|
+
attr_accessor authorizer_credentials_arn: ::String
|
1501
|
+
attr_accessor authorizer_id: ::String
|
1502
|
+
attr_accessor authorizer_result_ttl_in_seconds: ::Integer
|
1503
|
+
attr_accessor authorizer_type: ("REQUEST" | "JWT")
|
1504
|
+
attr_accessor authorizer_uri: ::String
|
1505
|
+
attr_accessor identity_source: ::Array[::String]
|
1506
|
+
attr_accessor identity_validation_expression: ::String
|
1507
|
+
attr_accessor jwt_configuration: Types::JWTConfiguration
|
1508
|
+
attr_accessor name: ::String
|
1509
|
+
attr_accessor authorizer_payload_format_version: ::String
|
1510
|
+
attr_accessor enable_simple_responses: bool
|
1511
|
+
SENSITIVE: []
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
class UpdateDeploymentInput
|
1515
|
+
attr_accessor description: ::String
|
1516
|
+
SENSITIVE: []
|
1517
|
+
end
|
1518
|
+
|
1519
|
+
class UpdateDeploymentRequest
|
1520
|
+
attr_accessor api_id: ::String
|
1521
|
+
attr_accessor deployment_id: ::String
|
1522
|
+
attr_accessor description: ::String
|
1523
|
+
SENSITIVE: []
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
class UpdateDeploymentResponse
|
1527
|
+
attr_accessor auto_deployed: bool
|
1528
|
+
attr_accessor created_date: ::Time
|
1529
|
+
attr_accessor deployment_id: ::String
|
1530
|
+
attr_accessor deployment_status: ("PENDING" | "FAILED" | "DEPLOYED")
|
1531
|
+
attr_accessor deployment_status_message: ::String
|
1532
|
+
attr_accessor description: ::String
|
1533
|
+
SENSITIVE: []
|
1534
|
+
end
|
1535
|
+
|
1536
|
+
class UpdateDomainNameInput
|
1537
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1538
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1539
|
+
SENSITIVE: []
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
class UpdateDomainNameRequest
|
1543
|
+
attr_accessor domain_name: ::String
|
1544
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1545
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1546
|
+
SENSITIVE: []
|
1547
|
+
end
|
1548
|
+
|
1549
|
+
class UpdateDomainNameResponse
|
1550
|
+
attr_accessor api_mapping_selection_expression: ::String
|
1551
|
+
attr_accessor domain_name: ::String
|
1552
|
+
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1553
|
+
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
1554
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1555
|
+
SENSITIVE: []
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class UpdateIntegrationInput
|
1559
|
+
attr_accessor connection_id: ::String
|
1560
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
1561
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1562
|
+
attr_accessor credentials_arn: ::String
|
1563
|
+
attr_accessor description: ::String
|
1564
|
+
attr_accessor integration_method: ::String
|
1565
|
+
attr_accessor integration_subtype: ::String
|
1566
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
1567
|
+
attr_accessor integration_uri: ::String
|
1568
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
1569
|
+
attr_accessor payload_format_version: ::String
|
1570
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
1571
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1572
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
1573
|
+
attr_accessor template_selection_expression: ::String
|
1574
|
+
attr_accessor timeout_in_millis: ::Integer
|
1575
|
+
attr_accessor tls_config: Types::TlsConfigInput
|
1576
|
+
SENSITIVE: []
|
1577
|
+
end
|
1578
|
+
|
1579
|
+
class UpdateIntegrationRequest
|
1580
|
+
attr_accessor api_id: ::String
|
1581
|
+
attr_accessor connection_id: ::String
|
1582
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
1583
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1584
|
+
attr_accessor credentials_arn: ::String
|
1585
|
+
attr_accessor description: ::String
|
1586
|
+
attr_accessor integration_id: ::String
|
1587
|
+
attr_accessor integration_method: ::String
|
1588
|
+
attr_accessor integration_subtype: ::String
|
1589
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
1590
|
+
attr_accessor integration_uri: ::String
|
1591
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
1592
|
+
attr_accessor payload_format_version: ::String
|
1593
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
1594
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1595
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
1596
|
+
attr_accessor template_selection_expression: ::String
|
1597
|
+
attr_accessor timeout_in_millis: ::Integer
|
1598
|
+
attr_accessor tls_config: Types::TlsConfigInput
|
1599
|
+
SENSITIVE: []
|
1600
|
+
end
|
1601
|
+
|
1602
|
+
class UpdateIntegrationResult
|
1603
|
+
attr_accessor api_gateway_managed: bool
|
1604
|
+
attr_accessor connection_id: ::String
|
1605
|
+
attr_accessor connection_type: ("INTERNET" | "VPC_LINK")
|
1606
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1607
|
+
attr_accessor credentials_arn: ::String
|
1608
|
+
attr_accessor description: ::String
|
1609
|
+
attr_accessor integration_id: ::String
|
1610
|
+
attr_accessor integration_method: ::String
|
1611
|
+
attr_accessor integration_response_selection_expression: ::String
|
1612
|
+
attr_accessor integration_subtype: ::String
|
1613
|
+
attr_accessor integration_type: ("AWS" | "HTTP" | "MOCK" | "HTTP_PROXY" | "AWS_PROXY")
|
1614
|
+
attr_accessor integration_uri: ::String
|
1615
|
+
attr_accessor passthrough_behavior: ("WHEN_NO_MATCH" | "NEVER" | "WHEN_NO_TEMPLATES")
|
1616
|
+
attr_accessor payload_format_version: ::String
|
1617
|
+
attr_accessor request_parameters: ::Hash[::String, ::String]
|
1618
|
+
attr_accessor response_parameters: ::Hash[::String, ::Hash[::String, ::String]]
|
1619
|
+
attr_accessor request_templates: ::Hash[::String, ::String]
|
1620
|
+
attr_accessor template_selection_expression: ::String
|
1621
|
+
attr_accessor timeout_in_millis: ::Integer
|
1622
|
+
attr_accessor tls_config: Types::TlsConfig
|
1623
|
+
SENSITIVE: []
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
class UpdateIntegrationResponseInput
|
1627
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1628
|
+
attr_accessor integration_response_key: ::String
|
1629
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
1630
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
1631
|
+
attr_accessor template_selection_expression: ::String
|
1632
|
+
SENSITIVE: []
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
class UpdateIntegrationResponseRequest
|
1636
|
+
attr_accessor api_id: ::String
|
1637
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1638
|
+
attr_accessor integration_id: ::String
|
1639
|
+
attr_accessor integration_response_id: ::String
|
1640
|
+
attr_accessor integration_response_key: ::String
|
1641
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
1642
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
1643
|
+
attr_accessor template_selection_expression: ::String
|
1644
|
+
SENSITIVE: []
|
1645
|
+
end
|
1646
|
+
|
1647
|
+
class UpdateIntegrationResponseResponse
|
1648
|
+
attr_accessor content_handling_strategy: ("CONVERT_TO_BINARY" | "CONVERT_TO_TEXT")
|
1649
|
+
attr_accessor integration_response_id: ::String
|
1650
|
+
attr_accessor integration_response_key: ::String
|
1651
|
+
attr_accessor response_parameters: ::Hash[::String, ::String]
|
1652
|
+
attr_accessor response_templates: ::Hash[::String, ::String]
|
1653
|
+
attr_accessor template_selection_expression: ::String
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
class UpdateModelInput
|
1658
|
+
attr_accessor content_type: ::String
|
1659
|
+
attr_accessor description: ::String
|
1660
|
+
attr_accessor name: ::String
|
1661
|
+
attr_accessor schema: ::String
|
1662
|
+
SENSITIVE: []
|
1663
|
+
end
|
1664
|
+
|
1665
|
+
class UpdateModelRequest
|
1666
|
+
attr_accessor api_id: ::String
|
1667
|
+
attr_accessor content_type: ::String
|
1668
|
+
attr_accessor description: ::String
|
1669
|
+
attr_accessor model_id: ::String
|
1670
|
+
attr_accessor name: ::String
|
1671
|
+
attr_accessor schema: ::String
|
1672
|
+
SENSITIVE: []
|
1673
|
+
end
|
1674
|
+
|
1675
|
+
class UpdateModelResponse
|
1676
|
+
attr_accessor content_type: ::String
|
1677
|
+
attr_accessor description: ::String
|
1678
|
+
attr_accessor model_id: ::String
|
1679
|
+
attr_accessor name: ::String
|
1680
|
+
attr_accessor schema: ::String
|
1681
|
+
SENSITIVE: []
|
1682
|
+
end
|
1683
|
+
|
1684
|
+
class UpdateRouteInput
|
1685
|
+
attr_accessor api_key_required: bool
|
1686
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
1687
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
1688
|
+
attr_accessor authorizer_id: ::String
|
1689
|
+
attr_accessor model_selection_expression: ::String
|
1690
|
+
attr_accessor operation_name: ::String
|
1691
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
1692
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1693
|
+
attr_accessor route_key: ::String
|
1694
|
+
attr_accessor route_response_selection_expression: ::String
|
1695
|
+
attr_accessor target: ::String
|
1696
|
+
SENSITIVE: []
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
class UpdateRouteRequest
|
1700
|
+
attr_accessor api_id: ::String
|
1701
|
+
attr_accessor api_key_required: bool
|
1702
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
1703
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
1704
|
+
attr_accessor authorizer_id: ::String
|
1705
|
+
attr_accessor model_selection_expression: ::String
|
1706
|
+
attr_accessor operation_name: ::String
|
1707
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
1708
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1709
|
+
attr_accessor route_id: ::String
|
1710
|
+
attr_accessor route_key: ::String
|
1711
|
+
attr_accessor route_response_selection_expression: ::String
|
1712
|
+
attr_accessor target: ::String
|
1713
|
+
SENSITIVE: []
|
1714
|
+
end
|
1715
|
+
|
1716
|
+
class UpdateRouteResult
|
1717
|
+
attr_accessor api_gateway_managed: bool
|
1718
|
+
attr_accessor api_key_required: bool
|
1719
|
+
attr_accessor authorization_scopes: ::Array[::String]
|
1720
|
+
attr_accessor authorization_type: ("NONE" | "AWS_IAM" | "CUSTOM" | "JWT")
|
1721
|
+
attr_accessor authorizer_id: ::String
|
1722
|
+
attr_accessor model_selection_expression: ::String
|
1723
|
+
attr_accessor operation_name: ::String
|
1724
|
+
attr_accessor request_models: ::Hash[::String, ::String]
|
1725
|
+
attr_accessor request_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1726
|
+
attr_accessor route_id: ::String
|
1727
|
+
attr_accessor route_key: ::String
|
1728
|
+
attr_accessor route_response_selection_expression: ::String
|
1729
|
+
attr_accessor target: ::String
|
1730
|
+
SENSITIVE: []
|
1731
|
+
end
|
1732
|
+
|
1733
|
+
class UpdateRouteResponseInput
|
1734
|
+
attr_accessor model_selection_expression: ::String
|
1735
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
1736
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1737
|
+
attr_accessor route_response_key: ::String
|
1738
|
+
SENSITIVE: []
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
class UpdateRouteResponseRequest
|
1742
|
+
attr_accessor api_id: ::String
|
1743
|
+
attr_accessor model_selection_expression: ::String
|
1744
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
1745
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1746
|
+
attr_accessor route_id: ::String
|
1747
|
+
attr_accessor route_response_id: ::String
|
1748
|
+
attr_accessor route_response_key: ::String
|
1749
|
+
SENSITIVE: []
|
1750
|
+
end
|
1751
|
+
|
1752
|
+
class UpdateRouteResponseResponse
|
1753
|
+
attr_accessor model_selection_expression: ::String
|
1754
|
+
attr_accessor response_models: ::Hash[::String, ::String]
|
1755
|
+
attr_accessor response_parameters: ::Hash[::String, Types::ParameterConstraints]
|
1756
|
+
attr_accessor route_response_id: ::String
|
1757
|
+
attr_accessor route_response_key: ::String
|
1758
|
+
SENSITIVE: []
|
1759
|
+
end
|
1760
|
+
|
1761
|
+
class UpdateStageInput
|
1762
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
1763
|
+
attr_accessor auto_deploy: bool
|
1764
|
+
attr_accessor client_certificate_id: ::String
|
1765
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
1766
|
+
attr_accessor deployment_id: ::String
|
1767
|
+
attr_accessor description: ::String
|
1768
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
1769
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
1770
|
+
SENSITIVE: []
|
1771
|
+
end
|
1772
|
+
|
1773
|
+
class UpdateStageRequest
|
1774
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
1775
|
+
attr_accessor api_id: ::String
|
1776
|
+
attr_accessor auto_deploy: bool
|
1777
|
+
attr_accessor client_certificate_id: ::String
|
1778
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
1779
|
+
attr_accessor deployment_id: ::String
|
1780
|
+
attr_accessor description: ::String
|
1781
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
1782
|
+
attr_accessor stage_name: ::String
|
1783
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
1784
|
+
SENSITIVE: []
|
1785
|
+
end
|
1786
|
+
|
1787
|
+
class UpdateStageResponse
|
1788
|
+
attr_accessor access_log_settings: Types::AccessLogSettings
|
1789
|
+
attr_accessor api_gateway_managed: bool
|
1790
|
+
attr_accessor auto_deploy: bool
|
1791
|
+
attr_accessor client_certificate_id: ::String
|
1792
|
+
attr_accessor created_date: ::Time
|
1793
|
+
attr_accessor default_route_settings: Types::RouteSettings
|
1794
|
+
attr_accessor deployment_id: ::String
|
1795
|
+
attr_accessor description: ::String
|
1796
|
+
attr_accessor last_deployment_status_message: ::String
|
1797
|
+
attr_accessor last_updated_date: ::Time
|
1798
|
+
attr_accessor route_settings: ::Hash[::String, Types::RouteSettings]
|
1799
|
+
attr_accessor stage_name: ::String
|
1800
|
+
attr_accessor stage_variables: ::Hash[::String, ::String]
|
1801
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1802
|
+
SENSITIVE: []
|
1803
|
+
end
|
1804
|
+
|
1805
|
+
class UpdateVpcLinkInput
|
1806
|
+
attr_accessor name: ::String
|
1807
|
+
SENSITIVE: []
|
1808
|
+
end
|
1809
|
+
|
1810
|
+
class UpdateVpcLinkRequest
|
1811
|
+
attr_accessor name: ::String
|
1812
|
+
attr_accessor vpc_link_id: ::String
|
1813
|
+
SENSITIVE: []
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
class UpdateVpcLinkResponse
|
1817
|
+
attr_accessor created_date: ::Time
|
1818
|
+
attr_accessor name: ::String
|
1819
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1820
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1821
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1822
|
+
attr_accessor vpc_link_id: ::String
|
1823
|
+
attr_accessor vpc_link_status: ("PENDING" | "AVAILABLE" | "DELETING" | "FAILED" | "INACTIVE")
|
1824
|
+
attr_accessor vpc_link_status_message: ::String
|
1825
|
+
attr_accessor vpc_link_version: ("V2")
|
1826
|
+
SENSITIVE: []
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
class VpcLink
|
1830
|
+
attr_accessor created_date: ::Time
|
1831
|
+
attr_accessor name: ::String
|
1832
|
+
attr_accessor security_group_ids: ::Array[::String]
|
1833
|
+
attr_accessor subnet_ids: ::Array[::String]
|
1834
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1835
|
+
attr_accessor vpc_link_id: ::String
|
1836
|
+
attr_accessor vpc_link_status: ("PENDING" | "AVAILABLE" | "DELETING" | "FAILED" | "INACTIVE")
|
1837
|
+
attr_accessor vpc_link_status_message: ::String
|
1838
|
+
attr_accessor vpc_link_version: ("V2")
|
1839
|
+
SENSITIVE: []
|
1840
|
+
end
|
1841
|
+
|
1842
|
+
class VpcLinks
|
1843
|
+
attr_accessor items: ::Array[Types::VpcLink]
|
1844
|
+
attr_accessor next_token: ::String
|
1845
|
+
SENSITIVE: []
|
1846
|
+
end
|
1847
|
+
end
|
1848
|
+
end
|