aws-sdk-apigateway 1.45.0 → 1.51.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-apigateway.rb +4 -2
- data/lib/aws-sdk-apigateway/client.rb +36 -19
- data/lib/aws-sdk-apigateway/client_api.rb +2 -0
- data/lib/aws-sdk-apigateway/customizations.rb +1 -0
- data/lib/aws-sdk-apigateway/errors.rb +2 -0
- data/lib/aws-sdk-apigateway/plugins/apply_content_type_header.rb +2 -0
- data/lib/aws-sdk-apigateway/resource.rb +2 -0
- data/lib/aws-sdk-apigateway/types.rb +242 -50
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 593a48466fe7b3916957fef1236bda0bfc0d54cfcb00364fa6fa568775e30567
|
4
|
+
data.tar.gz: 8f038b24ed6ad2ddc7723b67a03e87d453b82afab71f2e0359bdc36a4fd05596
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8b753c9b79b35290afd1d07bdd06a1dec3f17434f0705b53693c9da897e30a10313a1efa7d586ca07825b0b8184dbb09b2e30cd72687d274cfbc0eb0cb9091dd
|
7
|
+
data.tar.gz: 10adbb450a4e4ec94e36187e3d3e74517a0e4903538e2e3df8f4a1d11ef99add91a83a39efad1d42d6a2ba8e1b4f7e03d773b4eb48d70751ba3178702b6f436f
|
data/lib/aws-sdk-apigateway.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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-apigateway/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::APIGateway
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.51.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:
|
@@ -85,13 +87,28 @@ module Aws::APIGateway
|
|
85
87
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
88
|
# credentials.
|
87
89
|
#
|
90
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
91
|
+
# shared file, such as `~/.aws/config`.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
94
|
+
#
|
95
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
96
|
+
# assume a role after providing credentials via the web.
|
97
|
+
#
|
98
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
99
|
+
# access token generated from `aws login`.
|
100
|
+
#
|
101
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
102
|
+
# process that outputs to stdout.
|
103
|
+
#
|
88
104
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
105
|
# from an EC2 IMDS on an EC2 instance.
|
90
106
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
107
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
108
|
+
# instances running in ECS.
|
93
109
|
#
|
94
|
-
# * `Aws::
|
110
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
111
|
+
# from the Cognito Identity service.
|
95
112
|
#
|
96
113
|
# When `:credentials` are not configured directly, the following
|
97
114
|
# locations will be searched for credentials:
|
@@ -101,10 +118,10 @@ module Aws::APIGateway
|
|
101
118
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
119
|
# * `~/.aws/credentials`
|
103
120
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
121
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
|
+
# are very aggressive. Construct and pass an instance of
|
123
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
+
# enable retries and extended timeouts.
|
108
125
|
#
|
109
126
|
# @option options [required, String] :region
|
110
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -314,7 +331,7 @@ module Aws::APIGateway
|
|
314
331
|
|
315
332
|
# Create an ApiKey resource.
|
316
333
|
#
|
317
|
-
# <div class="seeAlso">
|
334
|
+
# <div class="seeAlso" markdown="1">
|
318
335
|
# [AWS CLI][1]
|
319
336
|
# </div>
|
320
337
|
#
|
@@ -409,7 +426,7 @@ module Aws::APIGateway
|
|
409
426
|
|
410
427
|
# Adds a new Authorizer resource to an existing RestApi resource.
|
411
428
|
#
|
412
|
-
# <div class="seeAlso">
|
429
|
+
# <div class="seeAlso" markdown="1">
|
413
430
|
# [AWS CLI][1]
|
414
431
|
# </div>
|
415
432
|
#
|
@@ -1539,7 +1556,7 @@ module Aws::APIGateway
|
|
1539
1556
|
|
1540
1557
|
# Deletes an existing Authorizer resource.
|
1541
1558
|
#
|
1542
|
-
# <div class="seeAlso">
|
1559
|
+
# <div class="seeAlso" markdown="1">
|
1543
1560
|
# [AWS CLI][1]
|
1544
1561
|
# </div>
|
1545
1562
|
#
|
@@ -2298,7 +2315,7 @@ module Aws::APIGateway
|
|
2298
2315
|
|
2299
2316
|
# Describe an existing Authorizer resource.
|
2300
2317
|
#
|
2301
|
-
# <div class="seeAlso">
|
2318
|
+
# <div class="seeAlso" markdown="1">
|
2302
2319
|
# [AWS CLI][1]
|
2303
2320
|
# </div>
|
2304
2321
|
#
|
@@ -2355,7 +2372,7 @@ module Aws::APIGateway
|
|
2355
2372
|
|
2356
2373
|
# Describe an existing Authorizers resource.
|
2357
2374
|
#
|
2358
|
-
# <div class="seeAlso">
|
2375
|
+
# <div class="seeAlso" markdown="1">
|
2359
2376
|
# [AWS CLI][1]
|
2360
2377
|
# </div>
|
2361
2378
|
#
|
@@ -4517,7 +4534,7 @@ module Aws::APIGateway
|
|
4517
4534
|
|
4518
4535
|
# Import API keys from an external source, such as a CSV-formatted file.
|
4519
4536
|
#
|
4520
|
-
# @option params [required, String,
|
4537
|
+
# @option params [required, String, StringIO, File] :body
|
4521
4538
|
# The payload of the POST request to import API keys. For the payload
|
4522
4539
|
# format, see [API Key File Format][1].
|
4523
4540
|
#
|
@@ -4573,7 +4590,7 @@ module Aws::APIGateway
|
|
4573
4590
|
# importation (`true`) or not (`false`) when a warning is encountered.
|
4574
4591
|
# The default value is `false`.
|
4575
4592
|
#
|
4576
|
-
# @option params [required, String,
|
4593
|
+
# @option params [required, String, StringIO, File] :body
|
4577
4594
|
# \[Required\] Raw byte array representing the to-be-imported
|
4578
4595
|
# documentation parts. To import from an OpenAPI file, this is a JSON
|
4579
4596
|
# object.
|
@@ -4641,7 +4658,7 @@ module Aws::APIGateway
|
|
4641
4658
|
#
|
4642
4659
|
# aws apigateway import-rest-api --parameters endpointConfigurationTypes=REGIONAL --body 'file:///path/to/imported-api-body.json'
|
4643
4660
|
#
|
4644
|
-
# @option params [required, String,
|
4661
|
+
# @option params [required, String, StringIO, File] :body
|
4645
4662
|
# \[Required\] The POST request body containing external API
|
4646
4663
|
# definitions. Currently, only OpenAPI definition JSON/YAML files are
|
4647
4664
|
# supported. The maximum size of the API definition file is 6MB.
|
@@ -5333,7 +5350,7 @@ module Aws::APIGateway
|
|
5333
5350
|
# command of `aws apigateway import-rest-api --parameters
|
5334
5351
|
# ignore=documentation --body 'file:///path/to/imported-api-body.json'`.
|
5335
5352
|
#
|
5336
|
-
# @option params [required, String,
|
5353
|
+
# @option params [required, String, StringIO, File] :body
|
5337
5354
|
# \[Required\] The PUT request body containing external API definitions.
|
5338
5355
|
# Currently, only OpenAPI definition JSON/YAML files are supported. The
|
5339
5356
|
# maximum size of the API definition file is 6MB.
|
@@ -5424,7 +5441,7 @@ module Aws::APIGateway
|
|
5424
5441
|
# Simulate the execution of an Authorizer in your RestApi with headers,
|
5425
5442
|
# parameters, and an incoming request body.
|
5426
5443
|
#
|
5427
|
-
# <div class="seeAlso">
|
5444
|
+
# <div class="seeAlso" markdown="1">
|
5428
5445
|
# [Use Lambda Function as Authorizer][1] [Use Cognito User Pool as
|
5429
5446
|
# Authorizer][2]
|
5430
5447
|
# </div>
|
@@ -5728,7 +5745,7 @@ module Aws::APIGateway
|
|
5728
5745
|
|
5729
5746
|
# Updates an existing Authorizer resource.
|
5730
5747
|
#
|
5731
|
-
# <div class="seeAlso">
|
5748
|
+
# <div class="seeAlso" markdown="1">
|
5732
5749
|
# [AWS CLI][1]
|
5733
5750
|
# </div>
|
5734
5751
|
#
|
@@ -7016,7 +7033,7 @@ module Aws::APIGateway
|
|
7016
7033
|
params: params,
|
7017
7034
|
config: config)
|
7018
7035
|
context[:gem_name] = 'aws-sdk-apigateway'
|
7019
|
-
context[:gem_version] = '1.
|
7036
|
+
context[:gem_version] = '1.51.0'
|
7020
7037
|
Seahorse::Client::Request.new(handlers, context)
|
7021
7038
|
end
|
7022
7039
|
|
@@ -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:
|
@@ -31,6 +33,7 @@ module Aws::APIGateway
|
|
31
33
|
class AccessLogSettings < Struct.new(
|
32
34
|
:format,
|
33
35
|
:destination_arn)
|
36
|
+
SENSITIVE = []
|
34
37
|
include Aws::Structure
|
35
38
|
end
|
36
39
|
|
@@ -68,7 +71,7 @@ module Aws::APIGateway
|
|
68
71
|
#
|
69
72
|
# </div>
|
70
73
|
#
|
71
|
-
# <div class="seeAlso">
|
74
|
+
# <div class="seeAlso" markdown="1">
|
72
75
|
# [API Gateway Limits][2] [Developer Guide][3], [AWS CLI][4]
|
73
76
|
# </div>
|
74
77
|
#
|
@@ -101,6 +104,7 @@ module Aws::APIGateway
|
|
101
104
|
:throttle_settings,
|
102
105
|
:features,
|
103
106
|
:api_key_version)
|
107
|
+
SENSITIVE = []
|
104
108
|
include Aws::Structure
|
105
109
|
end
|
106
110
|
|
@@ -109,7 +113,7 @@ module Aws::APIGateway
|
|
109
113
|
# on any RestApi, which indicates that the callers with the API key can
|
110
114
|
# make requests to that stage.
|
111
115
|
#
|
112
|
-
# <div class="seeAlso">
|
116
|
+
# <div class="seeAlso" markdown="1">
|
113
117
|
# [Use API Keys][1]
|
114
118
|
# </div>
|
115
119
|
#
|
@@ -171,6 +175,7 @@ module Aws::APIGateway
|
|
171
175
|
:last_updated_date,
|
172
176
|
:stage_keys,
|
173
177
|
:tags)
|
178
|
+
SENSITIVE = []
|
174
179
|
include Aws::Structure
|
175
180
|
end
|
176
181
|
|
@@ -187,13 +192,14 @@ module Aws::APIGateway
|
|
187
192
|
class ApiKeyIds < Struct.new(
|
188
193
|
:ids,
|
189
194
|
:warnings)
|
195
|
+
SENSITIVE = []
|
190
196
|
include Aws::Structure
|
191
197
|
end
|
192
198
|
|
193
199
|
# Represents a collection of API keys as represented by an ApiKeys
|
194
200
|
# resource.
|
195
201
|
#
|
196
|
-
# <div class="seeAlso">
|
202
|
+
# <div class="seeAlso" markdown="1">
|
197
203
|
# [Use API Keys][1]
|
198
204
|
# </div>
|
199
205
|
#
|
@@ -217,6 +223,7 @@ module Aws::APIGateway
|
|
217
223
|
:warnings,
|
218
224
|
:position,
|
219
225
|
:items)
|
226
|
+
SENSITIVE = []
|
220
227
|
include Aws::Structure
|
221
228
|
end
|
222
229
|
|
@@ -253,6 +260,7 @@ module Aws::APIGateway
|
|
253
260
|
:api_id,
|
254
261
|
:stage,
|
255
262
|
:throttle)
|
263
|
+
SENSITIVE = []
|
256
264
|
include Aws::Structure
|
257
265
|
end
|
258
266
|
|
@@ -260,7 +268,7 @@ module Aws::APIGateway
|
|
260
268
|
# API Gateway will activate the authorizer when a client calls the
|
261
269
|
# method.
|
262
270
|
#
|
263
|
-
# <div class="seeAlso">
|
271
|
+
# <div class="seeAlso" markdown="1">
|
264
272
|
# [Use Lambda Function as Authorizer][1] [Use Cognito User Pool as
|
265
273
|
# Authorizer][2]
|
266
274
|
# </div>
|
@@ -371,12 +379,13 @@ module Aws::APIGateway
|
|
371
379
|
:identity_source,
|
372
380
|
:identity_validation_expression,
|
373
381
|
:authorizer_result_ttl_in_seconds)
|
382
|
+
SENSITIVE = []
|
374
383
|
include Aws::Structure
|
375
384
|
end
|
376
385
|
|
377
386
|
# Represents a collection of Authorizer resources.
|
378
387
|
#
|
379
|
-
# <div class="seeAlso">
|
388
|
+
# <div class="seeAlso" markdown="1">
|
380
389
|
# [Use Lambda Function as Authorizer][1] [Use Cognito User Pool as
|
381
390
|
# Authorizer][2]
|
382
391
|
# </div>
|
@@ -396,6 +405,7 @@ module Aws::APIGateway
|
|
396
405
|
class Authorizers < Struct.new(
|
397
406
|
:position,
|
398
407
|
:items)
|
408
|
+
SENSITIVE = []
|
399
409
|
include Aws::Structure
|
400
410
|
end
|
401
411
|
|
@@ -408,18 +418,19 @@ module Aws::APIGateway
|
|
408
418
|
#
|
409
419
|
class BadRequestException < Struct.new(
|
410
420
|
:message)
|
421
|
+
SENSITIVE = []
|
411
422
|
include Aws::Structure
|
412
423
|
end
|
413
424
|
|
414
425
|
# Represents the base path that callers of the API must provide as part
|
415
426
|
# of the URL after the domain name.
|
416
427
|
#
|
417
|
-
# <div class="remarks">
|
428
|
+
# <div class="remarks" markdown="1">
|
418
429
|
# A custom domain name plus a `BasePathMapping` specification identifies
|
419
430
|
# a deployed RestApi in a given stage of the owner Account.
|
420
431
|
# </div>
|
421
432
|
#
|
422
|
-
# <div class="seeAlso">
|
433
|
+
# <div class="seeAlso" markdown="1">
|
423
434
|
# [Use Custom Domain Names][1]
|
424
435
|
# </div>
|
425
436
|
#
|
@@ -444,12 +455,13 @@ module Aws::APIGateway
|
|
444
455
|
:base_path,
|
445
456
|
:rest_api_id,
|
446
457
|
:stage)
|
458
|
+
SENSITIVE = []
|
447
459
|
include Aws::Structure
|
448
460
|
end
|
449
461
|
|
450
462
|
# Represents a collection of BasePathMapping resources.
|
451
463
|
#
|
452
|
-
# <div class="seeAlso">
|
464
|
+
# <div class="seeAlso" markdown="1">
|
453
465
|
# [Use Custom Domain Names][1]
|
454
466
|
# </div>
|
455
467
|
#
|
@@ -467,6 +479,7 @@ module Aws::APIGateway
|
|
467
479
|
class BasePathMappings < Struct.new(
|
468
480
|
:position,
|
469
481
|
:items)
|
482
|
+
SENSITIVE = []
|
470
483
|
include Aws::Structure
|
471
484
|
end
|
472
485
|
|
@@ -509,6 +522,7 @@ module Aws::APIGateway
|
|
509
522
|
:deployment_id,
|
510
523
|
:stage_variable_overrides,
|
511
524
|
:use_stage_cache)
|
525
|
+
SENSITIVE = []
|
512
526
|
include Aws::Structure
|
513
527
|
end
|
514
528
|
|
@@ -521,7 +535,7 @@ module Aws::APIGateway
|
|
521
535
|
# policies, a custom Authorizer or an Amazon Cognito user pool.
|
522
536
|
# </div>
|
523
537
|
#
|
524
|
-
# <div class="seeAlso">
|
538
|
+
# <div class="seeAlso" markdown="1">
|
525
539
|
# [Use Client-Side Certificate][1]
|
526
540
|
# </div>
|
527
541
|
#
|
@@ -563,12 +577,13 @@ module Aws::APIGateway
|
|
563
577
|
:created_date,
|
564
578
|
:expiration_date,
|
565
579
|
:tags)
|
580
|
+
SENSITIVE = []
|
566
581
|
include Aws::Structure
|
567
582
|
end
|
568
583
|
|
569
584
|
# Represents a collection of ClientCertificate resources.
|
570
585
|
#
|
571
|
-
# <div class="seeAlso">
|
586
|
+
# <div class="seeAlso" markdown="1">
|
572
587
|
# [Use Client-Side Certificate][1]
|
573
588
|
# </div>
|
574
589
|
#
|
@@ -586,6 +601,7 @@ module Aws::APIGateway
|
|
586
601
|
class ClientCertificates < Struct.new(
|
587
602
|
:position,
|
588
603
|
:items)
|
604
|
+
SENSITIVE = []
|
589
605
|
include Aws::Structure
|
590
606
|
end
|
591
607
|
|
@@ -597,6 +613,7 @@ module Aws::APIGateway
|
|
597
613
|
#
|
598
614
|
class ConflictException < Struct.new(
|
599
615
|
:message)
|
616
|
+
SENSITIVE = []
|
600
617
|
include Aws::Structure
|
601
618
|
end
|
602
619
|
|
@@ -670,6 +687,7 @@ module Aws::APIGateway
|
|
670
687
|
:stage_keys,
|
671
688
|
:customer_id,
|
672
689
|
:tags)
|
690
|
+
SENSITIVE = []
|
673
691
|
include Aws::Structure
|
674
692
|
end
|
675
693
|
|
@@ -793,6 +811,7 @@ module Aws::APIGateway
|
|
793
811
|
:identity_source,
|
794
812
|
:identity_validation_expression,
|
795
813
|
:authorizer_result_ttl_in_seconds)
|
814
|
+
SENSITIVE = []
|
796
815
|
include Aws::Structure
|
797
816
|
end
|
798
817
|
|
@@ -835,6 +854,7 @@ module Aws::APIGateway
|
|
835
854
|
:base_path,
|
836
855
|
:rest_api_id,
|
837
856
|
:stage)
|
857
|
+
SENSITIVE = []
|
838
858
|
include Aws::Structure
|
839
859
|
end
|
840
860
|
|
@@ -918,6 +938,7 @@ module Aws::APIGateway
|
|
918
938
|
:variables,
|
919
939
|
:canary_settings,
|
920
940
|
:tracing_enabled)
|
941
|
+
SENSITIVE = []
|
921
942
|
include Aws::Structure
|
922
943
|
end
|
923
944
|
|
@@ -958,6 +979,7 @@ module Aws::APIGateway
|
|
958
979
|
:rest_api_id,
|
959
980
|
:location,
|
960
981
|
:properties)
|
982
|
+
SENSITIVE = []
|
961
983
|
include Aws::Structure
|
962
984
|
end
|
963
985
|
|
@@ -994,6 +1016,7 @@ module Aws::APIGateway
|
|
994
1016
|
:documentation_version,
|
995
1017
|
:stage_name,
|
996
1018
|
:description)
|
1019
|
+
SENSITIVE = []
|
997
1020
|
include Aws::Structure
|
998
1021
|
end
|
999
1022
|
|
@@ -1097,6 +1120,7 @@ module Aws::APIGateway
|
|
1097
1120
|
:endpoint_configuration,
|
1098
1121
|
:tags,
|
1099
1122
|
:security_policy)
|
1123
|
+
SENSITIVE = []
|
1100
1124
|
include Aws::Structure
|
1101
1125
|
end
|
1102
1126
|
|
@@ -1145,6 +1169,7 @@ module Aws::APIGateway
|
|
1145
1169
|
:description,
|
1146
1170
|
:schema,
|
1147
1171
|
:content_type)
|
1172
|
+
SENSITIVE = []
|
1148
1173
|
include Aws::Structure
|
1149
1174
|
end
|
1150
1175
|
|
@@ -1184,6 +1209,7 @@ module Aws::APIGateway
|
|
1184
1209
|
:name,
|
1185
1210
|
:validate_request_body,
|
1186
1211
|
:validate_request_parameters)
|
1212
|
+
SENSITIVE = []
|
1187
1213
|
include Aws::Structure
|
1188
1214
|
end
|
1189
1215
|
|
@@ -1214,6 +1240,7 @@ module Aws::APIGateway
|
|
1214
1240
|
:rest_api_id,
|
1215
1241
|
:parent_id,
|
1216
1242
|
:path_part)
|
1243
|
+
SENSITIVE = []
|
1217
1244
|
include Aws::Structure
|
1218
1245
|
end
|
1219
1246
|
|
@@ -1305,6 +1332,7 @@ module Aws::APIGateway
|
|
1305
1332
|
:endpoint_configuration,
|
1306
1333
|
:policy,
|
1307
1334
|
:tags)
|
1335
|
+
SENSITIVE = []
|
1308
1336
|
include Aws::Structure
|
1309
1337
|
end
|
1310
1338
|
|
@@ -1402,6 +1430,7 @@ module Aws::APIGateway
|
|
1402
1430
|
:canary_settings,
|
1403
1431
|
:tracing_enabled,
|
1404
1432
|
:tags)
|
1433
|
+
SENSITIVE = []
|
1405
1434
|
include Aws::Structure
|
1406
1435
|
end
|
1407
1436
|
|
@@ -1437,6 +1466,7 @@ module Aws::APIGateway
|
|
1437
1466
|
:usage_plan_id,
|
1438
1467
|
:key_id,
|
1439
1468
|
:key_type)
|
1469
|
+
SENSITIVE = []
|
1440
1470
|
include Aws::Structure
|
1441
1471
|
end
|
1442
1472
|
|
@@ -1509,6 +1539,7 @@ module Aws::APIGateway
|
|
1509
1539
|
:throttle,
|
1510
1540
|
:quota,
|
1511
1541
|
:tags)
|
1542
|
+
SENSITIVE = []
|
1512
1543
|
include Aws::Structure
|
1513
1544
|
end
|
1514
1545
|
|
@@ -1554,6 +1585,7 @@ module Aws::APIGateway
|
|
1554
1585
|
:description,
|
1555
1586
|
:target_arns,
|
1556
1587
|
:tags)
|
1588
|
+
SENSITIVE = []
|
1557
1589
|
include Aws::Structure
|
1558
1590
|
end
|
1559
1591
|
|
@@ -1572,6 +1604,7 @@ module Aws::APIGateway
|
|
1572
1604
|
#
|
1573
1605
|
class DeleteApiKeyRequest < Struct.new(
|
1574
1606
|
:api_key)
|
1607
|
+
SENSITIVE = []
|
1575
1608
|
include Aws::Structure
|
1576
1609
|
end
|
1577
1610
|
|
@@ -1596,6 +1629,7 @@ module Aws::APIGateway
|
|
1596
1629
|
class DeleteAuthorizerRequest < Struct.new(
|
1597
1630
|
:rest_api_id,
|
1598
1631
|
:authorizer_id)
|
1632
|
+
SENSITIVE = []
|
1599
1633
|
include Aws::Structure
|
1600
1634
|
end
|
1601
1635
|
|
@@ -1624,6 +1658,7 @@ module Aws::APIGateway
|
|
1624
1658
|
class DeleteBasePathMappingRequest < Struct.new(
|
1625
1659
|
:domain_name,
|
1626
1660
|
:base_path)
|
1661
|
+
SENSITIVE = []
|
1627
1662
|
include Aws::Structure
|
1628
1663
|
end
|
1629
1664
|
|
@@ -1643,6 +1678,7 @@ module Aws::APIGateway
|
|
1643
1678
|
#
|
1644
1679
|
class DeleteClientCertificateRequest < Struct.new(
|
1645
1680
|
:client_certificate_id)
|
1681
|
+
SENSITIVE = []
|
1646
1682
|
include Aws::Structure
|
1647
1683
|
end
|
1648
1684
|
|
@@ -1667,6 +1703,7 @@ module Aws::APIGateway
|
|
1667
1703
|
class DeleteDeploymentRequest < Struct.new(
|
1668
1704
|
:rest_api_id,
|
1669
1705
|
:deployment_id)
|
1706
|
+
SENSITIVE = []
|
1670
1707
|
include Aws::Structure
|
1671
1708
|
end
|
1672
1709
|
|
@@ -1691,6 +1728,7 @@ module Aws::APIGateway
|
|
1691
1728
|
class DeleteDocumentationPartRequest < Struct.new(
|
1692
1729
|
:rest_api_id,
|
1693
1730
|
:documentation_part_id)
|
1731
|
+
SENSITIVE = []
|
1694
1732
|
include Aws::Structure
|
1695
1733
|
end
|
1696
1734
|
|
@@ -1716,6 +1754,7 @@ module Aws::APIGateway
|
|
1716
1754
|
class DeleteDocumentationVersionRequest < Struct.new(
|
1717
1755
|
:rest_api_id,
|
1718
1756
|
:documentation_version)
|
1757
|
+
SENSITIVE = []
|
1719
1758
|
include Aws::Structure
|
1720
1759
|
end
|
1721
1760
|
|
@@ -1734,6 +1773,7 @@ module Aws::APIGateway
|
|
1734
1773
|
#
|
1735
1774
|
class DeleteDomainNameRequest < Struct.new(
|
1736
1775
|
:domain_name)
|
1776
|
+
SENSITIVE = []
|
1737
1777
|
include Aws::Structure
|
1738
1778
|
end
|
1739
1779
|
|
@@ -1780,6 +1820,7 @@ module Aws::APIGateway
|
|
1780
1820
|
class DeleteGatewayResponseRequest < Struct.new(
|
1781
1821
|
:rest_api_id,
|
1782
1822
|
:response_type)
|
1823
|
+
SENSITIVE = []
|
1783
1824
|
include Aws::Structure
|
1784
1825
|
end
|
1785
1826
|
|
@@ -1811,6 +1852,7 @@ module Aws::APIGateway
|
|
1811
1852
|
:rest_api_id,
|
1812
1853
|
:resource_id,
|
1813
1854
|
:http_method)
|
1855
|
+
SENSITIVE = []
|
1814
1856
|
include Aws::Structure
|
1815
1857
|
end
|
1816
1858
|
|
@@ -1850,6 +1892,7 @@ module Aws::APIGateway
|
|
1850
1892
|
:resource_id,
|
1851
1893
|
:http_method,
|
1852
1894
|
:status_code)
|
1895
|
+
SENSITIVE = []
|
1853
1896
|
include Aws::Structure
|
1854
1897
|
end
|
1855
1898
|
|
@@ -1880,6 +1923,7 @@ module Aws::APIGateway
|
|
1880
1923
|
:rest_api_id,
|
1881
1924
|
:resource_id,
|
1882
1925
|
:http_method)
|
1926
|
+
SENSITIVE = []
|
1883
1927
|
include Aws::Structure
|
1884
1928
|
end
|
1885
1929
|
|
@@ -1918,6 +1962,7 @@ module Aws::APIGateway
|
|
1918
1962
|
:resource_id,
|
1919
1963
|
:http_method,
|
1920
1964
|
:status_code)
|
1965
|
+
SENSITIVE = []
|
1921
1966
|
include Aws::Structure
|
1922
1967
|
end
|
1923
1968
|
|
@@ -1942,6 +1987,7 @@ module Aws::APIGateway
|
|
1942
1987
|
class DeleteModelRequest < Struct.new(
|
1943
1988
|
:rest_api_id,
|
1944
1989
|
:model_name)
|
1990
|
+
SENSITIVE = []
|
1945
1991
|
include Aws::Structure
|
1946
1992
|
end
|
1947
1993
|
|
@@ -1966,6 +2012,7 @@ module Aws::APIGateway
|
|
1966
2012
|
class DeleteRequestValidatorRequest < Struct.new(
|
1967
2013
|
:rest_api_id,
|
1968
2014
|
:request_validator_id)
|
2015
|
+
SENSITIVE = []
|
1969
2016
|
include Aws::Structure
|
1970
2017
|
end
|
1971
2018
|
|
@@ -1990,6 +2037,7 @@ module Aws::APIGateway
|
|
1990
2037
|
class DeleteResourceRequest < Struct.new(
|
1991
2038
|
:rest_api_id,
|
1992
2039
|
:resource_id)
|
2040
|
+
SENSITIVE = []
|
1993
2041
|
include Aws::Structure
|
1994
2042
|
end
|
1995
2043
|
|
@@ -2008,6 +2056,7 @@ module Aws::APIGateway
|
|
2008
2056
|
#
|
2009
2057
|
class DeleteRestApiRequest < Struct.new(
|
2010
2058
|
:rest_api_id)
|
2059
|
+
SENSITIVE = []
|
2011
2060
|
include Aws::Structure
|
2012
2061
|
end
|
2013
2062
|
|
@@ -2032,6 +2081,7 @@ module Aws::APIGateway
|
|
2032
2081
|
class DeleteStageRequest < Struct.new(
|
2033
2082
|
:rest_api_id,
|
2034
2083
|
:stage_name)
|
2084
|
+
SENSITIVE = []
|
2035
2085
|
include Aws::Structure
|
2036
2086
|
end
|
2037
2087
|
|
@@ -2059,6 +2109,7 @@ module Aws::APIGateway
|
|
2059
2109
|
class DeleteUsagePlanKeyRequest < Struct.new(
|
2060
2110
|
:usage_plan_id,
|
2061
2111
|
:key_id)
|
2112
|
+
SENSITIVE = []
|
2062
2113
|
include Aws::Structure
|
2063
2114
|
end
|
2064
2115
|
|
@@ -2077,6 +2128,7 @@ module Aws::APIGateway
|
|
2077
2128
|
#
|
2078
2129
|
class DeleteUsagePlanRequest < Struct.new(
|
2079
2130
|
:usage_plan_id)
|
2131
|
+
SENSITIVE = []
|
2080
2132
|
include Aws::Structure
|
2081
2133
|
end
|
2082
2134
|
|
@@ -2096,6 +2148,7 @@ module Aws::APIGateway
|
|
2096
2148
|
#
|
2097
2149
|
class DeleteVpcLinkRequest < Struct.new(
|
2098
2150
|
:vpc_link_id)
|
2151
|
+
SENSITIVE = []
|
2099
2152
|
include Aws::Structure
|
2100
2153
|
end
|
2101
2154
|
|
@@ -2103,14 +2156,14 @@ module Aws::APIGateway
|
|
2103
2156
|
# by users using Stages. A deployment must be associated with a Stage
|
2104
2157
|
# for it to be callable over the Internet.
|
2105
2158
|
#
|
2106
|
-
# <div class="remarks">
|
2159
|
+
# <div class="remarks" markdown="1">
|
2107
2160
|
# To create a deployment, call `POST` on the Deployments resource of a
|
2108
2161
|
# RestApi. To view, update, or delete a deployment, call `GET`, `PATCH`,
|
2109
2162
|
# or `DELETE` on the specified deployment resource
|
2110
2163
|
# (`/restapis/\{restapi_id\}/deployments/\{deployment_id\}`).
|
2111
2164
|
# </div>
|
2112
2165
|
#
|
2113
|
-
# <div class="seeAlso">
|
2166
|
+
# <div class="seeAlso" markdown="1">
|
2114
2167
|
# RestApi, Deployments, Stage, [AWS CLI][1], [AWS SDKs][2]
|
2115
2168
|
# </div>
|
2116
2169
|
#
|
@@ -2141,6 +2194,7 @@ module Aws::APIGateway
|
|
2141
2194
|
:description,
|
2142
2195
|
:created_date,
|
2143
2196
|
:api_summary)
|
2197
|
+
SENSITIVE = []
|
2144
2198
|
include Aws::Structure
|
2145
2199
|
end
|
2146
2200
|
|
@@ -2179,6 +2233,7 @@ module Aws::APIGateway
|
|
2179
2233
|
:percent_traffic,
|
2180
2234
|
:stage_variable_overrides,
|
2181
2235
|
:use_stage_cache)
|
2236
|
+
SENSITIVE = []
|
2182
2237
|
include Aws::Structure
|
2183
2238
|
end
|
2184
2239
|
|
@@ -2187,14 +2242,14 @@ module Aws::APIGateway
|
|
2187
2242
|
# interact with your collection. The collection offers a paginated view
|
2188
2243
|
# of the contained deployments.
|
2189
2244
|
#
|
2190
|
-
# <div class="remarks">
|
2245
|
+
# <div class="remarks" markdown="1">
|
2191
2246
|
# To create a new deployment of a RestApi, make a `POST` request against
|
2192
2247
|
# this resource. To view, update, or delete an existing deployment, make
|
2193
2248
|
# a `GET`, `PATCH`, or `DELETE` request, respectively, on a specified
|
2194
2249
|
# Deployment resource.
|
2195
2250
|
# </div>
|
2196
2251
|
#
|
2197
|
-
# <div class="seeAlso">
|
2252
|
+
# <div class="seeAlso" markdown="1">
|
2198
2253
|
# [Deploying an API][1], [AWS CLI][2], [AWS SDKs][3]
|
2199
2254
|
# </div>
|
2200
2255
|
#
|
@@ -2214,6 +2269,7 @@ module Aws::APIGateway
|
|
2214
2269
|
class Deployments < Struct.new(
|
2215
2270
|
:position,
|
2216
2271
|
:items)
|
2272
|
+
SENSITIVE = []
|
2217
2273
|
include Aws::Structure
|
2218
2274
|
end
|
2219
2275
|
|
@@ -2236,7 +2292,7 @@ module Aws::APIGateway
|
|
2236
2292
|
#
|
2237
2293
|
# </div>
|
2238
2294
|
#
|
2239
|
-
# <div class="seeAlso">
|
2295
|
+
# <div class="seeAlso" markdown="1">
|
2240
2296
|
# [Documenting an API][1], DocumentationParts
|
2241
2297
|
# </div>
|
2242
2298
|
#
|
@@ -2274,6 +2330,7 @@ module Aws::APIGateway
|
|
2274
2330
|
:id,
|
2275
2331
|
:location,
|
2276
2332
|
:properties)
|
2333
|
+
SENSITIVE = []
|
2277
2334
|
include Aws::Structure
|
2278
2335
|
end
|
2279
2336
|
|
@@ -2284,7 +2341,7 @@ module Aws::APIGateway
|
|
2284
2341
|
# external (e.g., OpenAPI) file are imported into API Gateway
|
2285
2342
|
# </div>
|
2286
2343
|
#
|
2287
|
-
# <div class="seeAlso">
|
2344
|
+
# <div class="seeAlso" markdown="1">
|
2288
2345
|
# [Documenting an API][1], [documentationpart:import][2],
|
2289
2346
|
# DocumentationPart
|
2290
2347
|
# </div>
|
@@ -2306,6 +2363,7 @@ module Aws::APIGateway
|
|
2306
2363
|
class DocumentationPartIds < Struct.new(
|
2307
2364
|
:ids,
|
2308
2365
|
:warnings)
|
2366
|
+
SENSITIVE = []
|
2309
2367
|
include Aws::Structure
|
2310
2368
|
end
|
2311
2369
|
|
@@ -2378,6 +2436,7 @@ module Aws::APIGateway
|
|
2378
2436
|
:method,
|
2379
2437
|
:status_code,
|
2380
2438
|
:name)
|
2439
|
+
SENSITIVE = []
|
2381
2440
|
include Aws::Structure
|
2382
2441
|
end
|
2383
2442
|
|
@@ -2385,7 +2444,7 @@ module Aws::APIGateway
|
|
2385
2444
|
#
|
2386
2445
|
# <div class="remarks"></div>
|
2387
2446
|
#
|
2388
|
-
# <div class="seeAlso">
|
2447
|
+
# <div class="seeAlso" markdown="1">
|
2389
2448
|
# [Documenting an API][1], DocumentationPart
|
2390
2449
|
# </div>
|
2391
2450
|
#
|
@@ -2403,6 +2462,7 @@ module Aws::APIGateway
|
|
2403
2462
|
class DocumentationParts < Struct.new(
|
2404
2463
|
:position,
|
2405
2464
|
:items)
|
2465
|
+
SENSITIVE = []
|
2406
2466
|
include Aws::Structure
|
2407
2467
|
end
|
2408
2468
|
|
@@ -2415,7 +2475,7 @@ module Aws::APIGateway
|
|
2415
2475
|
#
|
2416
2476
|
# </div>
|
2417
2477
|
#
|
2418
|
-
# <div class="seeAlso">
|
2478
|
+
# <div class="seeAlso" markdown="1">
|
2419
2479
|
# [Documenting an API][1], DocumentationPart, DocumentationVersions
|
2420
2480
|
# </div>
|
2421
2481
|
#
|
@@ -2439,6 +2499,7 @@ module Aws::APIGateway
|
|
2439
2499
|
:version,
|
2440
2500
|
:created_date,
|
2441
2501
|
:description)
|
2502
|
+
SENSITIVE = []
|
2442
2503
|
include Aws::Structure
|
2443
2504
|
end
|
2444
2505
|
|
@@ -2450,7 +2511,7 @@ module Aws::APIGateway
|
|
2450
2511
|
#
|
2451
2512
|
# </div>
|
2452
2513
|
#
|
2453
|
-
# <div class="seeAlso">
|
2514
|
+
# <div class="seeAlso" markdown="1">
|
2454
2515
|
# [Documenting an API][1], DocumentationPart, DocumentationVersion
|
2455
2516
|
# </div>
|
2456
2517
|
#
|
@@ -2468,6 +2529,7 @@ module Aws::APIGateway
|
|
2468
2529
|
class DocumentationVersions < Struct.new(
|
2469
2530
|
:position,
|
2470
2531
|
:items)
|
2532
|
+
SENSITIVE = []
|
2471
2533
|
include Aws::Structure
|
2472
2534
|
end
|
2473
2535
|
|
@@ -2488,7 +2550,7 @@ module Aws::APIGateway
|
|
2488
2550
|
#
|
2489
2551
|
# </div>
|
2490
2552
|
#
|
2491
|
-
# <div class="seeAlso">
|
2553
|
+
# <div class="seeAlso" markdown="1">
|
2492
2554
|
# [Set a Custom Host Name for an API][1]
|
2493
2555
|
# </div>
|
2494
2556
|
#
|
@@ -2615,12 +2677,13 @@ module Aws::APIGateway
|
|
2615
2677
|
:domain_name_status_message,
|
2616
2678
|
:security_policy,
|
2617
2679
|
:tags)
|
2680
|
+
SENSITIVE = []
|
2618
2681
|
include Aws::Structure
|
2619
2682
|
end
|
2620
2683
|
|
2621
2684
|
# Represents a collection of DomainName resources.
|
2622
2685
|
#
|
2623
|
-
# <div class="seeAlso">
|
2686
|
+
# <div class="seeAlso" markdown="1">
|
2624
2687
|
# [Use Client-Side Certificate][1]
|
2625
2688
|
# </div>
|
2626
2689
|
#
|
@@ -2638,6 +2701,7 @@ module Aws::APIGateway
|
|
2638
2701
|
class DomainNames < Struct.new(
|
2639
2702
|
:position,
|
2640
2703
|
:items)
|
2704
|
+
SENSITIVE = []
|
2641
2705
|
include Aws::Structure
|
2642
2706
|
end
|
2643
2707
|
|
@@ -2668,6 +2732,7 @@ module Aws::APIGateway
|
|
2668
2732
|
class EndpointConfiguration < Struct.new(
|
2669
2733
|
:types,
|
2670
2734
|
:vpc_endpoint_ids)
|
2735
|
+
SENSITIVE = []
|
2671
2736
|
include Aws::Structure
|
2672
2737
|
end
|
2673
2738
|
|
@@ -2691,6 +2756,7 @@ module Aws::APIGateway
|
|
2691
2756
|
:content_type,
|
2692
2757
|
:content_disposition,
|
2693
2758
|
:body)
|
2759
|
+
SENSITIVE = []
|
2694
2760
|
include Aws::Structure
|
2695
2761
|
end
|
2696
2762
|
|
@@ -2715,6 +2781,7 @@ module Aws::APIGateway
|
|
2715
2781
|
class FlushStageAuthorizersCacheRequest < Struct.new(
|
2716
2782
|
:rest_api_id,
|
2717
2783
|
:stage_name)
|
2784
|
+
SENSITIVE = []
|
2718
2785
|
include Aws::Structure
|
2719
2786
|
end
|
2720
2787
|
|
@@ -2739,13 +2806,14 @@ module Aws::APIGateway
|
|
2739
2806
|
class FlushStageCacheRequest < Struct.new(
|
2740
2807
|
:rest_api_id,
|
2741
2808
|
:stage_name)
|
2809
|
+
SENSITIVE = []
|
2742
2810
|
include Aws::Structure
|
2743
2811
|
end
|
2744
2812
|
|
2745
2813
|
# A gateway response of a given response type and status code, with
|
2746
2814
|
# optional response parameters and mapping templates.
|
2747
2815
|
#
|
2748
|
-
# <div class="remarks">
|
2816
|
+
# <div class="remarks" markdown="1">
|
2749
2817
|
# For more information about valid gateway response types, see [Gateway
|
2750
2818
|
# Response Types Supported by API Gateway][1]
|
2751
2819
|
# <div class="example" markdown="1">
|
@@ -2772,7 +2840,7 @@ module Aws::APIGateway
|
|
2772
2840
|
# </div>
|
2773
2841
|
# </div>
|
2774
2842
|
#
|
2775
|
-
# <div class="seeAlso">
|
2843
|
+
# <div class="seeAlso" markdown="1">
|
2776
2844
|
# [Customize Gateway Responses][2]
|
2777
2845
|
# </div>
|
2778
2846
|
#
|
@@ -2832,6 +2900,7 @@ module Aws::APIGateway
|
|
2832
2900
|
:response_parameters,
|
2833
2901
|
:response_templates,
|
2834
2902
|
:default_response)
|
2903
|
+
SENSITIVE = []
|
2835
2904
|
include Aws::Structure
|
2836
2905
|
end
|
2837
2906
|
|
@@ -2839,7 +2908,7 @@ module Aws::APIGateway
|
|
2839
2908
|
# `responseType`-to-GatewayResponse object map of key-value pairs. As
|
2840
2909
|
# such, pagination is not supported for querying this collection.
|
2841
2910
|
#
|
2842
|
-
# <div class="remarks">
|
2911
|
+
# <div class="remarks" markdown="1">
|
2843
2912
|
# For more information about valid gateway response types, see [Gateway
|
2844
2913
|
# Response Types Supported by API Gateway][1]
|
2845
2914
|
# <div class="example" markdown="1">
|
@@ -2866,7 +2935,7 @@ module Aws::APIGateway
|
|
2866
2935
|
# </div>
|
2867
2936
|
# </div>
|
2868
2937
|
#
|
2869
|
-
# <div class="seeAlso">
|
2938
|
+
# <div class="seeAlso" markdown="1">
|
2870
2939
|
# [Customize Gateway Responses][2]
|
2871
2940
|
# </div>
|
2872
2941
|
#
|
@@ -2885,6 +2954,7 @@ module Aws::APIGateway
|
|
2885
2954
|
class GatewayResponses < Struct.new(
|
2886
2955
|
:position,
|
2887
2956
|
:items)
|
2957
|
+
SENSITIVE = []
|
2888
2958
|
include Aws::Structure
|
2889
2959
|
end
|
2890
2960
|
|
@@ -2913,6 +2983,7 @@ module Aws::APIGateway
|
|
2913
2983
|
class GenerateClientCertificateRequest < Struct.new(
|
2914
2984
|
:description,
|
2915
2985
|
:tags)
|
2986
|
+
SENSITIVE = []
|
2916
2987
|
include Aws::Structure
|
2917
2988
|
end
|
2918
2989
|
|
@@ -2945,6 +3016,7 @@ module Aws::APIGateway
|
|
2945
3016
|
class GetApiKeyRequest < Struct.new(
|
2946
3017
|
:api_key,
|
2947
3018
|
:include_value)
|
3019
|
+
SENSITIVE = []
|
2948
3020
|
include Aws::Structure
|
2949
3021
|
end
|
2950
3022
|
|
@@ -2990,6 +3062,7 @@ module Aws::APIGateway
|
|
2990
3062
|
:name_query,
|
2991
3063
|
:customer_id,
|
2992
3064
|
:include_values)
|
3065
|
+
SENSITIVE = []
|
2993
3066
|
include Aws::Structure
|
2994
3067
|
end
|
2995
3068
|
|
@@ -3014,6 +3087,7 @@ module Aws::APIGateway
|
|
3014
3087
|
class GetAuthorizerRequest < Struct.new(
|
3015
3088
|
:rest_api_id,
|
3016
3089
|
:authorizer_id)
|
3090
|
+
SENSITIVE = []
|
3017
3091
|
include Aws::Structure
|
3018
3092
|
end
|
3019
3093
|
|
@@ -3045,6 +3119,7 @@ module Aws::APIGateway
|
|
3045
3119
|
:rest_api_id,
|
3046
3120
|
:position,
|
3047
3121
|
:limit)
|
3122
|
+
SENSITIVE = []
|
3048
3123
|
include Aws::Structure
|
3049
3124
|
end
|
3050
3125
|
|
@@ -3074,6 +3149,7 @@ module Aws::APIGateway
|
|
3074
3149
|
class GetBasePathMappingRequest < Struct.new(
|
3075
3150
|
:domain_name,
|
3076
3151
|
:base_path)
|
3152
|
+
SENSITIVE = []
|
3077
3153
|
include Aws::Structure
|
3078
3154
|
end
|
3079
3155
|
|
@@ -3106,6 +3182,7 @@ module Aws::APIGateway
|
|
3106
3182
|
:domain_name,
|
3107
3183
|
:position,
|
3108
3184
|
:limit)
|
3185
|
+
SENSITIVE = []
|
3109
3186
|
include Aws::Structure
|
3110
3187
|
end
|
3111
3188
|
|
@@ -3126,6 +3203,7 @@ module Aws::APIGateway
|
|
3126
3203
|
#
|
3127
3204
|
class GetClientCertificateRequest < Struct.new(
|
3128
3205
|
:client_certificate_id)
|
3206
|
+
SENSITIVE = []
|
3129
3207
|
include Aws::Structure
|
3130
3208
|
end
|
3131
3209
|
|
@@ -3152,6 +3230,7 @@ module Aws::APIGateway
|
|
3152
3230
|
class GetClientCertificatesRequest < Struct.new(
|
3153
3231
|
:position,
|
3154
3232
|
:limit)
|
3233
|
+
SENSITIVE = []
|
3155
3234
|
include Aws::Structure
|
3156
3235
|
end
|
3157
3236
|
|
@@ -3193,6 +3272,7 @@ module Aws::APIGateway
|
|
3193
3272
|
:rest_api_id,
|
3194
3273
|
:deployment_id,
|
3195
3274
|
:embed)
|
3275
|
+
SENSITIVE = []
|
3196
3276
|
include Aws::Structure
|
3197
3277
|
end
|
3198
3278
|
|
@@ -3225,6 +3305,7 @@ module Aws::APIGateway
|
|
3225
3305
|
:rest_api_id,
|
3226
3306
|
:position,
|
3227
3307
|
:limit)
|
3308
|
+
SENSITIVE = []
|
3228
3309
|
include Aws::Structure
|
3229
3310
|
end
|
3230
3311
|
|
@@ -3249,6 +3330,7 @@ module Aws::APIGateway
|
|
3249
3330
|
class GetDocumentationPartRequest < Struct.new(
|
3250
3331
|
:rest_api_id,
|
3251
3332
|
:documentation_part_id)
|
3333
|
+
SENSITIVE = []
|
3252
3334
|
include Aws::Structure
|
3253
3335
|
end
|
3254
3336
|
|
@@ -3308,6 +3390,7 @@ module Aws::APIGateway
|
|
3308
3390
|
:position,
|
3309
3391
|
:limit,
|
3310
3392
|
:location_status)
|
3393
|
+
SENSITIVE = []
|
3311
3394
|
include Aws::Structure
|
3312
3395
|
end
|
3313
3396
|
|
@@ -3333,6 +3416,7 @@ module Aws::APIGateway
|
|
3333
3416
|
class GetDocumentationVersionRequest < Struct.new(
|
3334
3417
|
:rest_api_id,
|
3335
3418
|
:documentation_version)
|
3419
|
+
SENSITIVE = []
|
3336
3420
|
include Aws::Structure
|
3337
3421
|
end
|
3338
3422
|
|
@@ -3364,6 +3448,7 @@ module Aws::APIGateway
|
|
3364
3448
|
:rest_api_id,
|
3365
3449
|
:position,
|
3366
3450
|
:limit)
|
3451
|
+
SENSITIVE = []
|
3367
3452
|
include Aws::Structure
|
3368
3453
|
end
|
3369
3454
|
|
@@ -3382,6 +3467,7 @@ module Aws::APIGateway
|
|
3382
3467
|
#
|
3383
3468
|
class GetDomainNameRequest < Struct.new(
|
3384
3469
|
:domain_name)
|
3470
|
+
SENSITIVE = []
|
3385
3471
|
include Aws::Structure
|
3386
3472
|
end
|
3387
3473
|
|
@@ -3407,6 +3493,7 @@ module Aws::APIGateway
|
|
3407
3493
|
class GetDomainNamesRequest < Struct.new(
|
3408
3494
|
:position,
|
3409
3495
|
:limit)
|
3496
|
+
SENSITIVE = []
|
3410
3497
|
include Aws::Structure
|
3411
3498
|
end
|
3412
3499
|
|
@@ -3463,6 +3550,7 @@ module Aws::APIGateway
|
|
3463
3550
|
:export_type,
|
3464
3551
|
:parameters,
|
3465
3552
|
:accepts)
|
3553
|
+
SENSITIVE = []
|
3466
3554
|
include Aws::Structure
|
3467
3555
|
end
|
3468
3556
|
|
@@ -3509,6 +3597,7 @@ module Aws::APIGateway
|
|
3509
3597
|
class GetGatewayResponseRequest < Struct.new(
|
3510
3598
|
:rest_api_id,
|
3511
3599
|
:response_type)
|
3600
|
+
SENSITIVE = []
|
3512
3601
|
include Aws::Structure
|
3513
3602
|
end
|
3514
3603
|
|
@@ -3546,6 +3635,7 @@ module Aws::APIGateway
|
|
3546
3635
|
:rest_api_id,
|
3547
3636
|
:position,
|
3548
3637
|
:limit)
|
3638
|
+
SENSITIVE = []
|
3549
3639
|
include Aws::Structure
|
3550
3640
|
end
|
3551
3641
|
|
@@ -3577,6 +3667,7 @@ module Aws::APIGateway
|
|
3577
3667
|
:rest_api_id,
|
3578
3668
|
:resource_id,
|
3579
3669
|
:http_method)
|
3670
|
+
SENSITIVE = []
|
3580
3671
|
include Aws::Structure
|
3581
3672
|
end
|
3582
3673
|
|
@@ -3616,6 +3707,7 @@ module Aws::APIGateway
|
|
3616
3707
|
:resource_id,
|
3617
3708
|
:http_method,
|
3618
3709
|
:status_code)
|
3710
|
+
SENSITIVE = []
|
3619
3711
|
include Aws::Structure
|
3620
3712
|
end
|
3621
3713
|
|
@@ -3646,6 +3738,7 @@ module Aws::APIGateway
|
|
3646
3738
|
:rest_api_id,
|
3647
3739
|
:resource_id,
|
3648
3740
|
:http_method)
|
3741
|
+
SENSITIVE = []
|
3649
3742
|
include Aws::Structure
|
3650
3743
|
end
|
3651
3744
|
|
@@ -3683,6 +3776,7 @@ module Aws::APIGateway
|
|
3683
3776
|
:resource_id,
|
3684
3777
|
:http_method,
|
3685
3778
|
:status_code)
|
3779
|
+
SENSITIVE = []
|
3686
3780
|
include Aws::Structure
|
3687
3781
|
end
|
3688
3782
|
|
@@ -3716,6 +3810,7 @@ module Aws::APIGateway
|
|
3716
3810
|
:rest_api_id,
|
3717
3811
|
:model_name,
|
3718
3812
|
:flatten)
|
3813
|
+
SENSITIVE = []
|
3719
3814
|
include Aws::Structure
|
3720
3815
|
end
|
3721
3816
|
|
@@ -3741,6 +3836,7 @@ module Aws::APIGateway
|
|
3741
3836
|
class GetModelTemplateRequest < Struct.new(
|
3742
3837
|
:rest_api_id,
|
3743
3838
|
:model_name)
|
3839
|
+
SENSITIVE = []
|
3744
3840
|
include Aws::Structure
|
3745
3841
|
end
|
3746
3842
|
|
@@ -3772,6 +3868,7 @@ module Aws::APIGateway
|
|
3772
3868
|
:rest_api_id,
|
3773
3869
|
:position,
|
3774
3870
|
:limit)
|
3871
|
+
SENSITIVE = []
|
3775
3872
|
include Aws::Structure
|
3776
3873
|
end
|
3777
3874
|
|
@@ -3796,6 +3893,7 @@ module Aws::APIGateway
|
|
3796
3893
|
class GetRequestValidatorRequest < Struct.new(
|
3797
3894
|
:rest_api_id,
|
3798
3895
|
:request_validator_id)
|
3896
|
+
SENSITIVE = []
|
3799
3897
|
include Aws::Structure
|
3800
3898
|
end
|
3801
3899
|
|
@@ -3827,6 +3925,7 @@ module Aws::APIGateway
|
|
3827
3925
|
:rest_api_id,
|
3828
3926
|
:position,
|
3829
3927
|
:limit)
|
3928
|
+
SENSITIVE = []
|
3830
3929
|
include Aws::Structure
|
3831
3930
|
end
|
3832
3931
|
|
@@ -3863,6 +3962,7 @@ module Aws::APIGateway
|
|
3863
3962
|
:rest_api_id,
|
3864
3963
|
:resource_id,
|
3865
3964
|
:embed)
|
3965
|
+
SENSITIVE = []
|
3866
3966
|
include Aws::Structure
|
3867
3967
|
end
|
3868
3968
|
|
@@ -3906,6 +4006,7 @@ module Aws::APIGateway
|
|
3906
4006
|
:position,
|
3907
4007
|
:limit,
|
3908
4008
|
:embed)
|
4009
|
+
SENSITIVE = []
|
3909
4010
|
include Aws::Structure
|
3910
4011
|
end
|
3911
4012
|
|
@@ -3925,6 +4026,7 @@ module Aws::APIGateway
|
|
3925
4026
|
#
|
3926
4027
|
class GetRestApiRequest < Struct.new(
|
3927
4028
|
:rest_api_id)
|
4029
|
+
SENSITIVE = []
|
3928
4030
|
include Aws::Structure
|
3929
4031
|
end
|
3930
4032
|
|
@@ -3950,6 +4052,7 @@ module Aws::APIGateway
|
|
3950
4052
|
class GetRestApisRequest < Struct.new(
|
3951
4053
|
:position,
|
3952
4054
|
:limit)
|
4055
|
+
SENSITIVE = []
|
3953
4056
|
include Aws::Structure
|
3954
4057
|
end
|
3955
4058
|
|
@@ -3996,6 +4099,7 @@ module Aws::APIGateway
|
|
3996
4099
|
:stage_name,
|
3997
4100
|
:sdk_type,
|
3998
4101
|
:parameters)
|
4102
|
+
SENSITIVE = []
|
3999
4103
|
include Aws::Structure
|
4000
4104
|
end
|
4001
4105
|
|
@@ -4014,6 +4118,7 @@ module Aws::APIGateway
|
|
4014
4118
|
#
|
4015
4119
|
class GetSdkTypeRequest < Struct.new(
|
4016
4120
|
:id)
|
4121
|
+
SENSITIVE = []
|
4017
4122
|
include Aws::Structure
|
4018
4123
|
end
|
4019
4124
|
|
@@ -4039,6 +4144,7 @@ module Aws::APIGateway
|
|
4039
4144
|
class GetSdkTypesRequest < Struct.new(
|
4040
4145
|
:position,
|
4041
4146
|
:limit)
|
4147
|
+
SENSITIVE = []
|
4042
4148
|
include Aws::Structure
|
4043
4149
|
end
|
4044
4150
|
|
@@ -4064,6 +4170,7 @@ module Aws::APIGateway
|
|
4064
4170
|
class GetStageRequest < Struct.new(
|
4065
4171
|
:rest_api_id,
|
4066
4172
|
:stage_name)
|
4173
|
+
SENSITIVE = []
|
4067
4174
|
include Aws::Structure
|
4068
4175
|
end
|
4069
4176
|
|
@@ -4089,6 +4196,7 @@ module Aws::APIGateway
|
|
4089
4196
|
class GetStagesRequest < Struct.new(
|
4090
4197
|
:rest_api_id,
|
4091
4198
|
:deployment_id)
|
4199
|
+
SENSITIVE = []
|
4092
4200
|
include Aws::Structure
|
4093
4201
|
end
|
4094
4202
|
|
@@ -4121,6 +4229,7 @@ module Aws::APIGateway
|
|
4121
4229
|
:resource_arn,
|
4122
4230
|
:position,
|
4123
4231
|
:limit)
|
4232
|
+
SENSITIVE = []
|
4124
4233
|
include Aws::Structure
|
4125
4234
|
end
|
4126
4235
|
|
@@ -4148,6 +4257,7 @@ module Aws::APIGateway
|
|
4148
4257
|
class GetUsagePlanKeyRequest < Struct.new(
|
4149
4258
|
:usage_plan_id,
|
4150
4259
|
:key_id)
|
4260
|
+
SENSITIVE = []
|
4151
4261
|
include Aws::Structure
|
4152
4262
|
end
|
4153
4263
|
|
@@ -4189,6 +4299,7 @@ module Aws::APIGateway
|
|
4189
4299
|
:position,
|
4190
4300
|
:limit,
|
4191
4301
|
:name_query)
|
4302
|
+
SENSITIVE = []
|
4192
4303
|
include Aws::Structure
|
4193
4304
|
end
|
4194
4305
|
|
@@ -4208,6 +4319,7 @@ module Aws::APIGateway
|
|
4208
4319
|
#
|
4209
4320
|
class GetUsagePlanRequest < Struct.new(
|
4210
4321
|
:usage_plan_id)
|
4322
|
+
SENSITIVE = []
|
4211
4323
|
include Aws::Structure
|
4212
4324
|
end
|
4213
4325
|
|
@@ -4239,6 +4351,7 @@ module Aws::APIGateway
|
|
4239
4351
|
:position,
|
4240
4352
|
:key_id,
|
4241
4353
|
:limit)
|
4354
|
+
SENSITIVE = []
|
4242
4355
|
include Aws::Structure
|
4243
4356
|
end
|
4244
4357
|
|
@@ -4290,6 +4403,7 @@ module Aws::APIGateway
|
|
4290
4403
|
:end_date,
|
4291
4404
|
:position,
|
4292
4405
|
:limit)
|
4406
|
+
SENSITIVE = []
|
4293
4407
|
include Aws::Structure
|
4294
4408
|
end
|
4295
4409
|
|
@@ -4309,6 +4423,7 @@ module Aws::APIGateway
|
|
4309
4423
|
#
|
4310
4424
|
class GetVpcLinkRequest < Struct.new(
|
4311
4425
|
:vpc_link_id)
|
4426
|
+
SENSITIVE = []
|
4312
4427
|
include Aws::Structure
|
4313
4428
|
end
|
4314
4429
|
|
@@ -4335,6 +4450,7 @@ module Aws::APIGateway
|
|
4335
4450
|
class GetVpcLinksRequest < Struct.new(
|
4336
4451
|
:position,
|
4337
4452
|
:limit)
|
4453
|
+
SENSITIVE = []
|
4338
4454
|
include Aws::Structure
|
4339
4455
|
end
|
4340
4456
|
|
@@ -4373,6 +4489,7 @@ module Aws::APIGateway
|
|
4373
4489
|
:body,
|
4374
4490
|
:format,
|
4375
4491
|
:fail_on_warnings)
|
4492
|
+
SENSITIVE = []
|
4376
4493
|
include Aws::Structure
|
4377
4494
|
end
|
4378
4495
|
|
@@ -4416,6 +4533,7 @@ module Aws::APIGateway
|
|
4416
4533
|
:mode,
|
4417
4534
|
:fail_on_warnings,
|
4418
4535
|
:body)
|
4536
|
+
SENSITIVE = []
|
4419
4537
|
include Aws::Structure
|
4420
4538
|
end
|
4421
4539
|
|
@@ -4478,6 +4596,7 @@ module Aws::APIGateway
|
|
4478
4596
|
:fail_on_warnings,
|
4479
4597
|
:parameters,
|
4480
4598
|
:body)
|
4599
|
+
SENSITIVE = []
|
4481
4600
|
include Aws::Structure
|
4482
4601
|
end
|
4483
4602
|
|
@@ -4488,7 +4607,7 @@ module Aws::APIGateway
|
|
4488
4607
|
# integration.
|
4489
4608
|
# </div>
|
4490
4609
|
#
|
4491
|
-
# <div class="seeAlso">
|
4610
|
+
# <div class="seeAlso" markdown="1">
|
4492
4611
|
# [Creating an API][1]
|
4493
4612
|
# </div>
|
4494
4613
|
#
|
@@ -4699,7 +4818,7 @@ module Aws::APIGateway
|
|
4699
4818
|
#
|
4700
4819
|
# </div>
|
4701
4820
|
#
|
4702
|
-
# <div class="seeAlso">
|
4821
|
+
# <div class="seeAlso" markdown="1">
|
4703
4822
|
# [Creating an API][1]
|
4704
4823
|
# </div>
|
4705
4824
|
#
|
@@ -4728,6 +4847,7 @@ module Aws::APIGateway
|
|
4728
4847
|
:cache_key_parameters,
|
4729
4848
|
:integration_responses,
|
4730
4849
|
:tls_config)
|
4850
|
+
SENSITIVE = []
|
4731
4851
|
include Aws::Structure
|
4732
4852
|
end
|
4733
4853
|
|
@@ -4735,7 +4855,7 @@ module Aws::APIGateway
|
|
4735
4855
|
# existing MethodResponse, and parameters and templates can be used to
|
4736
4856
|
# transform the back-end response.
|
4737
4857
|
#
|
4738
|
-
# <div class="seeAlso">
|
4858
|
+
# <div class="seeAlso" markdown="1">
|
4739
4859
|
# [Creating an API][1]
|
4740
4860
|
# </div>
|
4741
4861
|
#
|
@@ -4803,6 +4923,7 @@ module Aws::APIGateway
|
|
4803
4923
|
:response_parameters,
|
4804
4924
|
:response_templates,
|
4805
4925
|
:content_handling)
|
4926
|
+
SENSITIVE = []
|
4806
4927
|
include Aws::Structure
|
4807
4928
|
end
|
4808
4929
|
|
@@ -4818,6 +4939,7 @@ module Aws::APIGateway
|
|
4818
4939
|
class LimitExceededException < Struct.new(
|
4819
4940
|
:retry_after_seconds,
|
4820
4941
|
:message)
|
4942
|
+
SENSITIVE = []
|
4821
4943
|
include Aws::Structure
|
4822
4944
|
end
|
4823
4945
|
|
@@ -4861,7 +4983,7 @@ module Aws::APIGateway
|
|
4861
4983
|
#
|
4862
4984
|
# </div>
|
4863
4985
|
#
|
4864
|
-
# <div class="seeAlso">
|
4986
|
+
# <div class="seeAlso" markdown="1">
|
4865
4987
|
# MethodResponse, Integration, IntegrationResponse, Resource, [Set up an
|
4866
4988
|
# API's method][2]
|
4867
4989
|
# </div>
|
@@ -4949,7 +5071,7 @@ module Aws::APIGateway
|
|
4949
5071
|
#
|
4950
5072
|
# </div>
|
4951
5073
|
#
|
4952
|
-
# <div class="seeAlso">
|
5074
|
+
# <div class="seeAlso" markdown="1">
|
4953
5075
|
# [AWS CLI][1]
|
4954
5076
|
# </div>
|
4955
5077
|
#
|
@@ -4985,7 +5107,7 @@ module Aws::APIGateway
|
|
4985
5107
|
#
|
4986
5108
|
# </div>
|
4987
5109
|
#
|
4988
|
-
# <div class="seeAlso">
|
5110
|
+
# <div class="seeAlso" markdown="1">
|
4989
5111
|
# [AWS CLI][1]
|
4990
5112
|
# </div>
|
4991
5113
|
#
|
@@ -5018,6 +5140,7 @@ module Aws::APIGateway
|
|
5018
5140
|
:method_responses,
|
5019
5141
|
:method_integration,
|
5020
5142
|
:authorization_scopes)
|
5143
|
+
SENSITIVE = []
|
5021
5144
|
include Aws::Structure
|
5022
5145
|
end
|
5023
5146
|
|
@@ -5049,7 +5172,7 @@ module Aws::APIGateway
|
|
5049
5172
|
#
|
5050
5173
|
# </div>
|
5051
5174
|
#
|
5052
|
-
# <div class="seeAlso">
|
5175
|
+
# <div class="seeAlso" markdown="1">
|
5053
5176
|
# Method, IntegrationResponse, Integration [Creating an API][1]
|
5054
5177
|
# </div>
|
5055
5178
|
#
|
@@ -5090,6 +5213,7 @@ module Aws::APIGateway
|
|
5090
5213
|
:status_code,
|
5091
5214
|
:response_parameters,
|
5092
5215
|
:response_models)
|
5216
|
+
SENSITIVE = []
|
5093
5217
|
include Aws::Structure
|
5094
5218
|
end
|
5095
5219
|
|
@@ -5179,6 +5303,7 @@ module Aws::APIGateway
|
|
5179
5303
|
:cache_data_encrypted,
|
5180
5304
|
:require_authorization_for_cache_control,
|
5181
5305
|
:unauthorized_cache_control_header_strategy)
|
5306
|
+
SENSITIVE = []
|
5182
5307
|
include Aws::Structure
|
5183
5308
|
end
|
5184
5309
|
|
@@ -5199,6 +5324,7 @@ module Aws::APIGateway
|
|
5199
5324
|
class MethodSnapshot < Struct.new(
|
5200
5325
|
:authorization_type,
|
5201
5326
|
:api_key_required)
|
5327
|
+
SENSITIVE = []
|
5202
5328
|
include Aws::Structure
|
5203
5329
|
end
|
5204
5330
|
|
@@ -5217,7 +5343,7 @@ module Aws::APIGateway
|
|
5217
5343
|
#
|
5218
5344
|
# </div>
|
5219
5345
|
#
|
5220
|
-
# <div class="seeAlso">
|
5346
|
+
# <div class="seeAlso" markdown="1">
|
5221
5347
|
# Method, MethodResponse, [Models and Mappings][1]
|
5222
5348
|
# </div>
|
5223
5349
|
#
|
@@ -5260,12 +5386,13 @@ module Aws::APIGateway
|
|
5260
5386
|
:description,
|
5261
5387
|
:schema,
|
5262
5388
|
:content_type)
|
5389
|
+
SENSITIVE = []
|
5263
5390
|
include Aws::Structure
|
5264
5391
|
end
|
5265
5392
|
|
5266
5393
|
# Represents a collection of Model resources.
|
5267
5394
|
#
|
5268
|
-
# <div class="seeAlso">
|
5395
|
+
# <div class="seeAlso" markdown="1">
|
5269
5396
|
# Method, MethodResponse, [Models and Mappings][1]
|
5270
5397
|
# </div>
|
5271
5398
|
#
|
@@ -5283,6 +5410,7 @@ module Aws::APIGateway
|
|
5283
5410
|
class Models < Struct.new(
|
5284
5411
|
:position,
|
5285
5412
|
:items)
|
5413
|
+
SENSITIVE = []
|
5286
5414
|
include Aws::Structure
|
5287
5415
|
end
|
5288
5416
|
|
@@ -5294,6 +5422,7 @@ module Aws::APIGateway
|
|
5294
5422
|
#
|
5295
5423
|
class NotFoundException < Struct.new(
|
5296
5424
|
:message)
|
5425
|
+
SENSITIVE = []
|
5297
5426
|
include Aws::Structure
|
5298
5427
|
end
|
5299
5428
|
|
@@ -5364,6 +5493,7 @@ module Aws::APIGateway
|
|
5364
5493
|
:path,
|
5365
5494
|
:value,
|
5366
5495
|
:from)
|
5496
|
+
SENSITIVE = []
|
5367
5497
|
include Aws::Structure
|
5368
5498
|
end
|
5369
5499
|
|
@@ -5434,6 +5564,7 @@ module Aws::APIGateway
|
|
5434
5564
|
:status_code,
|
5435
5565
|
:response_parameters,
|
5436
5566
|
:response_templates)
|
5567
|
+
SENSITIVE = []
|
5437
5568
|
include Aws::Structure
|
5438
5569
|
end
|
5439
5570
|
|
@@ -5638,6 +5769,7 @@ module Aws::APIGateway
|
|
5638
5769
|
:content_handling,
|
5639
5770
|
:timeout_in_millis,
|
5640
5771
|
:tls_config)
|
5772
|
+
SENSITIVE = []
|
5641
5773
|
include Aws::Structure
|
5642
5774
|
end
|
5643
5775
|
|
@@ -5728,6 +5860,7 @@ module Aws::APIGateway
|
|
5728
5860
|
:response_parameters,
|
5729
5861
|
:response_templates,
|
5730
5862
|
:content_handling)
|
5863
|
+
SENSITIVE = []
|
5731
5864
|
include Aws::Structure
|
5732
5865
|
end
|
5733
5866
|
|
@@ -5838,6 +5971,7 @@ module Aws::APIGateway
|
|
5838
5971
|
:request_models,
|
5839
5972
|
:request_validator_id,
|
5840
5973
|
:authorization_scopes)
|
5974
|
+
SENSITIVE = []
|
5841
5975
|
include Aws::Structure
|
5842
5976
|
end
|
5843
5977
|
|
@@ -5906,6 +6040,7 @@ module Aws::APIGateway
|
|
5906
6040
|
:status_code,
|
5907
6041
|
:response_parameters,
|
5908
6042
|
:response_models)
|
6043
|
+
SENSITIVE = []
|
5909
6044
|
include Aws::Structure
|
5910
6045
|
end
|
5911
6046
|
|
@@ -5962,6 +6097,7 @@ module Aws::APIGateway
|
|
5962
6097
|
:fail_on_warnings,
|
5963
6098
|
:parameters,
|
5964
6099
|
:body)
|
6100
|
+
SENSITIVE = []
|
5965
6101
|
include Aws::Structure
|
5966
6102
|
end
|
5967
6103
|
|
@@ -5995,6 +6131,7 @@ module Aws::APIGateway
|
|
5995
6131
|
:limit,
|
5996
6132
|
:offset,
|
5997
6133
|
:period)
|
6134
|
+
SENSITIVE = []
|
5998
6135
|
include Aws::Structure
|
5999
6136
|
end
|
6000
6137
|
|
@@ -6008,7 +6145,7 @@ module Aws::APIGateway
|
|
6008
6145
|
#
|
6009
6146
|
# </div>
|
6010
6147
|
#
|
6011
|
-
# <div class="seeAlso">
|
6148
|
+
# <div class="seeAlso" markdown="1">
|
6012
6149
|
# [Enable Basic Request Validation in API Gateway][3]
|
6013
6150
|
# </div>
|
6014
6151
|
#
|
@@ -6041,6 +6178,7 @@ module Aws::APIGateway
|
|
6041
6178
|
:name,
|
6042
6179
|
:validate_request_body,
|
6043
6180
|
:validate_request_parameters)
|
6181
|
+
SENSITIVE = []
|
6044
6182
|
include Aws::Structure
|
6045
6183
|
end
|
6046
6184
|
|
@@ -6052,7 +6190,7 @@ module Aws::APIGateway
|
|
6052
6190
|
#
|
6053
6191
|
# </div>
|
6054
6192
|
#
|
6055
|
-
# <div class="seeAlso">
|
6193
|
+
# <div class="seeAlso" markdown="1">
|
6056
6194
|
# [Enable Basic Request Validation in API Gateway][2]
|
6057
6195
|
# </div>
|
6058
6196
|
#
|
@@ -6071,12 +6209,13 @@ module Aws::APIGateway
|
|
6071
6209
|
class RequestValidators < Struct.new(
|
6072
6210
|
:position,
|
6073
6211
|
:items)
|
6212
|
+
SENSITIVE = []
|
6074
6213
|
include Aws::Structure
|
6075
6214
|
end
|
6076
6215
|
|
6077
6216
|
# Represents an API resource.
|
6078
6217
|
#
|
6079
|
-
# <div class="seeAlso">
|
6218
|
+
# <div class="seeAlso" markdown="1">
|
6080
6219
|
# [Create an API][1]
|
6081
6220
|
# </div>
|
6082
6221
|
#
|
@@ -6136,12 +6275,13 @@ module Aws::APIGateway
|
|
6136
6275
|
:path_part,
|
6137
6276
|
:path,
|
6138
6277
|
:resource_methods)
|
6278
|
+
SENSITIVE = []
|
6139
6279
|
include Aws::Structure
|
6140
6280
|
end
|
6141
6281
|
|
6142
6282
|
# Represents a collection of Resource resources.
|
6143
6283
|
#
|
6144
|
-
# <div class="seeAlso">
|
6284
|
+
# <div class="seeAlso" markdown="1">
|
6145
6285
|
# [Create an API][1]
|
6146
6286
|
# </div>
|
6147
6287
|
#
|
@@ -6159,12 +6299,13 @@ module Aws::APIGateway
|
|
6159
6299
|
class Resources < Struct.new(
|
6160
6300
|
:position,
|
6161
6301
|
:items)
|
6302
|
+
SENSITIVE = []
|
6162
6303
|
include Aws::Structure
|
6163
6304
|
end
|
6164
6305
|
|
6165
6306
|
# Represents a REST API.
|
6166
6307
|
#
|
6167
|
-
# <div class="seeAlso">
|
6308
|
+
# <div class="seeAlso" markdown="1">
|
6168
6309
|
# [Create an API][1]
|
6169
6310
|
# </div>
|
6170
6311
|
#
|
@@ -6248,6 +6389,7 @@ module Aws::APIGateway
|
|
6248
6389
|
:endpoint_configuration,
|
6249
6390
|
:policy,
|
6250
6391
|
:tags)
|
6392
|
+
SENSITIVE = []
|
6251
6393
|
include Aws::Structure
|
6252
6394
|
end
|
6253
6395
|
|
@@ -6255,7 +6397,7 @@ module Aws::APIGateway
|
|
6255
6397
|
# interact with your collection. A collection offers a paginated view of
|
6256
6398
|
# your APIs.
|
6257
6399
|
#
|
6258
|
-
# <div class="seeAlso">
|
6400
|
+
# <div class="seeAlso" markdown="1">
|
6259
6401
|
# [Create an API][1]
|
6260
6402
|
# </div>
|
6261
6403
|
#
|
@@ -6273,6 +6415,7 @@ module Aws::APIGateway
|
|
6273
6415
|
class RestApis < Struct.new(
|
6274
6416
|
:position,
|
6275
6417
|
:items)
|
6418
|
+
SENSITIVE = []
|
6276
6419
|
include Aws::Structure
|
6277
6420
|
end
|
6278
6421
|
|
@@ -6306,6 +6449,7 @@ module Aws::APIGateway
|
|
6306
6449
|
:description,
|
6307
6450
|
:required,
|
6308
6451
|
:default_value)
|
6452
|
+
SENSITIVE = []
|
6309
6453
|
include Aws::Structure
|
6310
6454
|
end
|
6311
6455
|
|
@@ -6328,6 +6472,7 @@ module Aws::APIGateway
|
|
6328
6472
|
:content_type,
|
6329
6473
|
:content_disposition,
|
6330
6474
|
:body)
|
6475
|
+
SENSITIVE = []
|
6331
6476
|
include Aws::Structure
|
6332
6477
|
end
|
6333
6478
|
|
@@ -6354,6 +6499,7 @@ module Aws::APIGateway
|
|
6354
6499
|
:friendly_name,
|
6355
6500
|
:description,
|
6356
6501
|
:configuration_properties)
|
6502
|
+
SENSITIVE = []
|
6357
6503
|
include Aws::Structure
|
6358
6504
|
end
|
6359
6505
|
|
@@ -6369,6 +6515,7 @@ module Aws::APIGateway
|
|
6369
6515
|
class SdkTypes < Struct.new(
|
6370
6516
|
:position,
|
6371
6517
|
:items)
|
6518
|
+
SENSITIVE = []
|
6372
6519
|
include Aws::Structure
|
6373
6520
|
end
|
6374
6521
|
|
@@ -6384,13 +6531,14 @@ module Aws::APIGateway
|
|
6384
6531
|
class ServiceUnavailableException < Struct.new(
|
6385
6532
|
:retry_after_seconds,
|
6386
6533
|
:message)
|
6534
|
+
SENSITIVE = []
|
6387
6535
|
include Aws::Structure
|
6388
6536
|
end
|
6389
6537
|
|
6390
6538
|
# Represents a unique identifier for a version of a deployed RestApi
|
6391
6539
|
# that is callable by users.
|
6392
6540
|
#
|
6393
|
-
# <div class="seeAlso">
|
6541
|
+
# <div class="seeAlso" markdown="1">
|
6394
6542
|
# [Deploy an API][1]
|
6395
6543
|
# </div>
|
6396
6544
|
#
|
@@ -6495,6 +6643,7 @@ module Aws::APIGateway
|
|
6495
6643
|
:tags,
|
6496
6644
|
:created_date,
|
6497
6645
|
:last_updated_date)
|
6646
|
+
SENSITIVE = []
|
6498
6647
|
include Aws::Structure
|
6499
6648
|
end
|
6500
6649
|
|
@@ -6520,13 +6669,14 @@ module Aws::APIGateway
|
|
6520
6669
|
class StageKey < Struct.new(
|
6521
6670
|
:rest_api_id,
|
6522
6671
|
:stage_name)
|
6672
|
+
SENSITIVE = []
|
6523
6673
|
include Aws::Structure
|
6524
6674
|
end
|
6525
6675
|
|
6526
6676
|
# A list of Stage resources that are associated with the ApiKey
|
6527
6677
|
# resource.
|
6528
6678
|
#
|
6529
|
-
# <div class="seeAlso">
|
6679
|
+
# <div class="seeAlso" markdown="1">
|
6530
6680
|
# [Deploying API in Stages][1]
|
6531
6681
|
# </div>
|
6532
6682
|
#
|
@@ -6540,6 +6690,7 @@ module Aws::APIGateway
|
|
6540
6690
|
#
|
6541
6691
|
class Stages < Struct.new(
|
6542
6692
|
:item)
|
6693
|
+
SENSITIVE = []
|
6543
6694
|
include Aws::Structure
|
6544
6695
|
end
|
6545
6696
|
|
@@ -6569,6 +6720,7 @@ module Aws::APIGateway
|
|
6569
6720
|
class TagResourceRequest < Struct.new(
|
6570
6721
|
:resource_arn,
|
6571
6722
|
:tags)
|
6723
|
+
SENSITIVE = []
|
6572
6724
|
include Aws::Structure
|
6573
6725
|
end
|
6574
6726
|
|
@@ -6582,12 +6734,13 @@ module Aws::APIGateway
|
|
6582
6734
|
#
|
6583
6735
|
class Tags < Struct.new(
|
6584
6736
|
:tags)
|
6737
|
+
SENSITIVE = []
|
6585
6738
|
include Aws::Structure
|
6586
6739
|
end
|
6587
6740
|
|
6588
6741
|
# Represents a mapping template used to transform a payload.
|
6589
6742
|
#
|
6590
|
-
# <div class="seeAlso">
|
6743
|
+
# <div class="seeAlso" markdown="1">
|
6591
6744
|
# [Mapping Templates][1]
|
6592
6745
|
# </div>
|
6593
6746
|
#
|
@@ -6606,6 +6759,7 @@ module Aws::APIGateway
|
|
6606
6759
|
#
|
6607
6760
|
class Template < Struct.new(
|
6608
6761
|
:value)
|
6762
|
+
SENSITIVE = []
|
6609
6763
|
include Aws::Structure
|
6610
6764
|
end
|
6611
6765
|
|
@@ -6683,6 +6837,7 @@ module Aws::APIGateway
|
|
6683
6837
|
:body,
|
6684
6838
|
:stage_variables,
|
6685
6839
|
:additional_context)
|
6840
|
+
SENSITIVE = []
|
6686
6841
|
include Aws::Structure
|
6687
6842
|
end
|
6688
6843
|
|
@@ -6730,6 +6885,7 @@ module Aws::APIGateway
|
|
6730
6885
|
:policy,
|
6731
6886
|
:authorization,
|
6732
6887
|
:claims)
|
6888
|
+
SENSITIVE = []
|
6733
6889
|
include Aws::Structure
|
6734
6890
|
end
|
6735
6891
|
|
@@ -6809,12 +6965,13 @@ module Aws::APIGateway
|
|
6809
6965
|
:multi_value_headers,
|
6810
6966
|
:client_certificate_id,
|
6811
6967
|
:stage_variables)
|
6968
|
+
SENSITIVE = []
|
6812
6969
|
include Aws::Structure
|
6813
6970
|
end
|
6814
6971
|
|
6815
6972
|
# Represents the response of the test invoke request in the HTTP method.
|
6816
6973
|
#
|
6817
|
-
# <div class="seeAlso">
|
6974
|
+
# <div class="seeAlso" markdown="1">
|
6818
6975
|
# [Test API using the API Gateway console][1]
|
6819
6976
|
# </div>
|
6820
6977
|
#
|
@@ -6854,6 +7011,7 @@ module Aws::APIGateway
|
|
6854
7011
|
:multi_value_headers,
|
6855
7012
|
:log,
|
6856
7013
|
:latency)
|
7014
|
+
SENSITIVE = []
|
6857
7015
|
include Aws::Structure
|
6858
7016
|
end
|
6859
7017
|
|
@@ -6880,6 +7038,7 @@ module Aws::APIGateway
|
|
6880
7038
|
class ThrottleSettings < Struct.new(
|
6881
7039
|
:burst_limit,
|
6882
7040
|
:rate_limit)
|
7041
|
+
SENSITIVE = []
|
6883
7042
|
include Aws::Structure
|
6884
7043
|
end
|
6885
7044
|
|
@@ -6908,6 +7067,7 @@ module Aws::APIGateway
|
|
6908
7067
|
#
|
6909
7068
|
class TlsConfig < Struct.new(
|
6910
7069
|
:insecure_skip_verification)
|
7070
|
+
SENSITIVE = []
|
6911
7071
|
include Aws::Structure
|
6912
7072
|
end
|
6913
7073
|
|
@@ -6923,6 +7083,7 @@ module Aws::APIGateway
|
|
6923
7083
|
class TooManyRequestsException < Struct.new(
|
6924
7084
|
:retry_after_seconds,
|
6925
7085
|
:message)
|
7086
|
+
SENSITIVE = []
|
6926
7087
|
include Aws::Structure
|
6927
7088
|
end
|
6928
7089
|
|
@@ -6933,6 +7094,7 @@ module Aws::APIGateway
|
|
6933
7094
|
#
|
6934
7095
|
class UnauthorizedException < Struct.new(
|
6935
7096
|
:message)
|
7097
|
+
SENSITIVE = []
|
6936
7098
|
include Aws::Structure
|
6937
7099
|
end
|
6938
7100
|
|
@@ -6957,6 +7119,7 @@ module Aws::APIGateway
|
|
6957
7119
|
class UntagResourceRequest < Struct.new(
|
6958
7120
|
:resource_arn,
|
6959
7121
|
:tag_keys)
|
7122
|
+
SENSITIVE = []
|
6960
7123
|
include Aws::Structure
|
6961
7124
|
end
|
6962
7125
|
|
@@ -6984,6 +7147,7 @@ module Aws::APIGateway
|
|
6984
7147
|
#
|
6985
7148
|
class UpdateAccountRequest < Struct.new(
|
6986
7149
|
:patch_operations)
|
7150
|
+
SENSITIVE = []
|
6987
7151
|
include Aws::Structure
|
6988
7152
|
end
|
6989
7153
|
|
@@ -7016,6 +7180,7 @@ module Aws::APIGateway
|
|
7016
7180
|
class UpdateApiKeyRequest < Struct.new(
|
7017
7181
|
:api_key,
|
7018
7182
|
:patch_operations)
|
7183
|
+
SENSITIVE = []
|
7019
7184
|
include Aws::Structure
|
7020
7185
|
end
|
7021
7186
|
|
@@ -7054,6 +7219,7 @@ module Aws::APIGateway
|
|
7054
7219
|
:rest_api_id,
|
7055
7220
|
:authorizer_id,
|
7056
7221
|
:patch_operations)
|
7222
|
+
SENSITIVE = []
|
7057
7223
|
include Aws::Structure
|
7058
7224
|
end
|
7059
7225
|
|
@@ -7096,6 +7262,7 @@ module Aws::APIGateway
|
|
7096
7262
|
:domain_name,
|
7097
7263
|
:base_path,
|
7098
7264
|
:patch_operations)
|
7265
|
+
SENSITIVE = []
|
7099
7266
|
include Aws::Structure
|
7100
7267
|
end
|
7101
7268
|
|
@@ -7129,6 +7296,7 @@ module Aws::APIGateway
|
|
7129
7296
|
class UpdateClientCertificateRequest < Struct.new(
|
7130
7297
|
:client_certificate_id,
|
7131
7298
|
:patch_operations)
|
7299
|
+
SENSITIVE = []
|
7132
7300
|
include Aws::Structure
|
7133
7301
|
end
|
7134
7302
|
|
@@ -7169,6 +7337,7 @@ module Aws::APIGateway
|
|
7169
7337
|
:rest_api_id,
|
7170
7338
|
:deployment_id,
|
7171
7339
|
:patch_operations)
|
7340
|
+
SENSITIVE = []
|
7172
7341
|
include Aws::Structure
|
7173
7342
|
end
|
7174
7343
|
|
@@ -7207,6 +7376,7 @@ module Aws::APIGateway
|
|
7207
7376
|
:rest_api_id,
|
7208
7377
|
:documentation_part_id,
|
7209
7378
|
:patch_operations)
|
7379
|
+
SENSITIVE = []
|
7210
7380
|
include Aws::Structure
|
7211
7381
|
end
|
7212
7382
|
|
@@ -7246,6 +7416,7 @@ module Aws::APIGateway
|
|
7246
7416
|
:rest_api_id,
|
7247
7417
|
:documentation_version,
|
7248
7418
|
:patch_operations)
|
7419
|
+
SENSITIVE = []
|
7249
7420
|
include Aws::Structure
|
7250
7421
|
end
|
7251
7422
|
|
@@ -7278,6 +7449,7 @@ module Aws::APIGateway
|
|
7278
7449
|
class UpdateDomainNameRequest < Struct.new(
|
7279
7450
|
:domain_name,
|
7280
7451
|
:patch_operations)
|
7452
|
+
SENSITIVE = []
|
7281
7453
|
include Aws::Structure
|
7282
7454
|
end
|
7283
7455
|
|
@@ -7338,6 +7510,7 @@ module Aws::APIGateway
|
|
7338
7510
|
:rest_api_id,
|
7339
7511
|
:response_type,
|
7340
7512
|
:patch_operations)
|
7513
|
+
SENSITIVE = []
|
7341
7514
|
include Aws::Structure
|
7342
7515
|
end
|
7343
7516
|
|
@@ -7384,6 +7557,7 @@ module Aws::APIGateway
|
|
7384
7557
|
:resource_id,
|
7385
7558
|
:http_method,
|
7386
7559
|
:patch_operations)
|
7560
|
+
SENSITIVE = []
|
7387
7561
|
include Aws::Structure
|
7388
7562
|
end
|
7389
7563
|
|
@@ -7437,6 +7611,7 @@ module Aws::APIGateway
|
|
7437
7611
|
:http_method,
|
7438
7612
|
:status_code,
|
7439
7613
|
:patch_operations)
|
7614
|
+
SENSITIVE = []
|
7440
7615
|
include Aws::Structure
|
7441
7616
|
end
|
7442
7617
|
|
@@ -7481,6 +7656,7 @@ module Aws::APIGateway
|
|
7481
7656
|
:resource_id,
|
7482
7657
|
:http_method,
|
7483
7658
|
:patch_operations)
|
7659
|
+
SENSITIVE = []
|
7484
7660
|
include Aws::Structure
|
7485
7661
|
end
|
7486
7662
|
|
@@ -7532,6 +7708,7 @@ module Aws::APIGateway
|
|
7532
7708
|
:http_method,
|
7533
7709
|
:status_code,
|
7534
7710
|
:patch_operations)
|
7711
|
+
SENSITIVE = []
|
7535
7712
|
include Aws::Structure
|
7536
7713
|
end
|
7537
7714
|
|
@@ -7570,6 +7747,7 @@ module Aws::APIGateway
|
|
7570
7747
|
:rest_api_id,
|
7571
7748
|
:model_name,
|
7572
7749
|
:patch_operations)
|
7750
|
+
SENSITIVE = []
|
7573
7751
|
include Aws::Structure
|
7574
7752
|
end
|
7575
7753
|
|
@@ -7608,6 +7786,7 @@ module Aws::APIGateway
|
|
7608
7786
|
:rest_api_id,
|
7609
7787
|
:request_validator_id,
|
7610
7788
|
:patch_operations)
|
7789
|
+
SENSITIVE = []
|
7611
7790
|
include Aws::Structure
|
7612
7791
|
end
|
7613
7792
|
|
@@ -7646,6 +7825,7 @@ module Aws::APIGateway
|
|
7646
7825
|
:rest_api_id,
|
7647
7826
|
:resource_id,
|
7648
7827
|
:patch_operations)
|
7828
|
+
SENSITIVE = []
|
7649
7829
|
include Aws::Structure
|
7650
7830
|
end
|
7651
7831
|
|
@@ -7678,6 +7858,7 @@ module Aws::APIGateway
|
|
7678
7858
|
class UpdateRestApiRequest < Struct.new(
|
7679
7859
|
:rest_api_id,
|
7680
7860
|
:patch_operations)
|
7861
|
+
SENSITIVE = []
|
7681
7862
|
include Aws::Structure
|
7682
7863
|
end
|
7683
7864
|
|
@@ -7717,6 +7898,7 @@ module Aws::APIGateway
|
|
7717
7898
|
:rest_api_id,
|
7718
7899
|
:stage_name,
|
7719
7900
|
:patch_operations)
|
7901
|
+
SENSITIVE = []
|
7720
7902
|
include Aws::Structure
|
7721
7903
|
end
|
7722
7904
|
|
@@ -7749,6 +7931,7 @@ module Aws::APIGateway
|
|
7749
7931
|
class UpdateUsagePlanRequest < Struct.new(
|
7750
7932
|
:usage_plan_id,
|
7751
7933
|
:patch_operations)
|
7934
|
+
SENSITIVE = []
|
7752
7935
|
include Aws::Structure
|
7753
7936
|
end
|
7754
7937
|
|
@@ -7791,6 +7974,7 @@ module Aws::APIGateway
|
|
7791
7974
|
:usage_plan_id,
|
7792
7975
|
:key_id,
|
7793
7976
|
:patch_operations)
|
7977
|
+
SENSITIVE = []
|
7794
7978
|
include Aws::Structure
|
7795
7979
|
end
|
7796
7980
|
|
@@ -7824,6 +8008,7 @@ module Aws::APIGateway
|
|
7824
8008
|
class UpdateVpcLinkRequest < Struct.new(
|
7825
8009
|
:vpc_link_id,
|
7826
8010
|
:patch_operations)
|
8011
|
+
SENSITIVE = []
|
7827
8012
|
include Aws::Structure
|
7828
8013
|
end
|
7829
8014
|
|
@@ -7831,7 +8016,7 @@ module Aws::APIGateway
|
|
7831
8016
|
#
|
7832
8017
|
# <div class="remarks"></div>
|
7833
8018
|
#
|
7834
|
-
# <div class="seeAlso">
|
8019
|
+
# <div class="seeAlso" markdown="1">
|
7835
8020
|
# [Create and Use Usage Plans][1], [Manage Usage in a Usage Plan][2]
|
7836
8021
|
# </div>
|
7837
8022
|
#
|
@@ -7870,6 +8055,7 @@ module Aws::APIGateway
|
|
7870
8055
|
:end_date,
|
7871
8056
|
:position,
|
7872
8057
|
:items)
|
8058
|
+
SENSITIVE = []
|
7873
8059
|
include Aws::Structure
|
7874
8060
|
end
|
7875
8061
|
|
@@ -7883,7 +8069,7 @@ module Aws::APIGateway
|
|
7883
8069
|
#
|
7884
8070
|
# </div>
|
7885
8071
|
#
|
7886
|
-
# <div class="seeAlso">
|
8072
|
+
# <div class="seeAlso" markdown="1">
|
7887
8073
|
# [Create and Use Usage Plans][1]
|
7888
8074
|
# </div>
|
7889
8075
|
#
|
@@ -7935,6 +8121,7 @@ module Aws::APIGateway
|
|
7935
8121
|
:quota,
|
7936
8122
|
:product_code,
|
7937
8123
|
:tags)
|
8124
|
+
SENSITIVE = []
|
7938
8125
|
include Aws::Structure
|
7939
8126
|
end
|
7940
8127
|
|
@@ -7946,7 +8133,7 @@ module Aws::APIGateway
|
|
7946
8133
|
#
|
7947
8134
|
# </div>
|
7948
8135
|
#
|
7949
|
-
# " <div class="seeAlso">
|
8136
|
+
# " <div class="seeAlso" markdown="1">
|
7950
8137
|
# [Create and Use Usage Plans][1]
|
7951
8138
|
# </div>
|
7952
8139
|
#
|
@@ -7976,13 +8163,14 @@ module Aws::APIGateway
|
|
7976
8163
|
:type,
|
7977
8164
|
:value,
|
7978
8165
|
:name)
|
8166
|
+
SENSITIVE = []
|
7979
8167
|
include Aws::Structure
|
7980
8168
|
end
|
7981
8169
|
|
7982
8170
|
# Represents the collection of usage plan keys added to usage plans for
|
7983
8171
|
# the associated API keys and, possibly, other types of keys.
|
7984
8172
|
#
|
7985
|
-
# <div class="seeAlso">
|
8173
|
+
# <div class="seeAlso" markdown="1">
|
7986
8174
|
# [Create and Use Usage Plans][1]
|
7987
8175
|
# </div>
|
7988
8176
|
#
|
@@ -8000,12 +8188,13 @@ module Aws::APIGateway
|
|
8000
8188
|
class UsagePlanKeys < Struct.new(
|
8001
8189
|
:position,
|
8002
8190
|
:items)
|
8191
|
+
SENSITIVE = []
|
8003
8192
|
include Aws::Structure
|
8004
8193
|
end
|
8005
8194
|
|
8006
8195
|
# Represents a collection of usage plans for an AWS account.
|
8007
8196
|
#
|
8008
|
-
# <div class="seeAlso">
|
8197
|
+
# <div class="seeAlso" markdown="1">
|
8009
8198
|
# [Create and Use Usage Plans][1]
|
8010
8199
|
# </div>
|
8011
8200
|
#
|
@@ -8023,6 +8212,7 @@ module Aws::APIGateway
|
|
8023
8212
|
class UsagePlans < Struct.new(
|
8024
8213
|
:position,
|
8025
8214
|
:items)
|
8215
|
+
SENSITIVE = []
|
8026
8216
|
include Aws::Structure
|
8027
8217
|
end
|
8028
8218
|
|
@@ -8083,12 +8273,13 @@ module Aws::APIGateway
|
|
8083
8273
|
:status,
|
8084
8274
|
:status_message,
|
8085
8275
|
:tags)
|
8276
|
+
SENSITIVE = []
|
8086
8277
|
include Aws::Structure
|
8087
8278
|
end
|
8088
8279
|
|
8089
8280
|
# The collection of VPC links under the caller's account in a region.
|
8090
8281
|
#
|
8091
|
-
# <div class="seeAlso">
|
8282
|
+
# <div class="seeAlso" markdown="1">
|
8092
8283
|
# [Getting Started with Private Integrations][1], [Set up Private
|
8093
8284
|
# Integrations][2]
|
8094
8285
|
# </div>
|
@@ -8108,6 +8299,7 @@ module Aws::APIGateway
|
|
8108
8299
|
class VpcLinks < Struct.new(
|
8109
8300
|
:position,
|
8110
8301
|
:items)
|
8302
|
+
SENSITIVE = []
|
8111
8303
|
include Aws::Structure
|
8112
8304
|
end
|
8113
8305
|
|