aws-sdk-apigatewayv2 1.19.0 → 1.25.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-apigatewayv2.rb +4 -2
- data/lib/aws-sdk-apigatewayv2/client.rb +56 -11
- data/lib/aws-sdk-apigatewayv2/client_api.rb +16 -0
- data/lib/aws-sdk-apigatewayv2/errors.rb +2 -0
- data/lib/aws-sdk-apigatewayv2/resource.rb +2 -0
- data/lib/aws-sdk-apigatewayv2/types.rb +342 -36
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2140d149dcae53b5a51681ebe96222f01f0414e11a2ce6f93aaaafd8c9239d7b
|
4
|
+
data.tar.gz: 0dee9eb711e6e07e47e0979776e46ed57d008d3d5e12b76b379231f37c641326
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2756b95fd724ffc221505f8c1fd2acefce3da0782620847ca0096bb172be098edeeab9d289bfa78e892cc27f7842fcb4de87fd9a732bb167ee7c34a5ed3a760d
|
7
|
+
data.tar.gz: cc2cad511c15504b94259c2dc95bbf1e694faa66e48dad77318ff4ad8ddca245d34eb677b5aaa073ee92103cb900962e593005c9143114867d59a12d4ffc9fca
|
data/lib/aws-sdk-apigatewayv2.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-apigatewayv2/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::ApiGatewayV2
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.25.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::ApiGatewayV2
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::ApiGatewayV2
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::ApiGatewayV2
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::ApiGatewayV2
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::ApiGatewayV2
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -370,6 +389,7 @@ module Aws::ApiGatewayV2
|
|
370
389
|
# @return [Types::CreateApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
371
390
|
#
|
372
391
|
# * {Types::CreateApiResponse#api_endpoint #api_endpoint} => String
|
392
|
+
# * {Types::CreateApiResponse#api_gateway_managed #api_gateway_managed} => Boolean
|
373
393
|
# * {Types::CreateApiResponse#api_id #api_id} => String
|
374
394
|
# * {Types::CreateApiResponse#api_key_selection_expression #api_key_selection_expression} => String
|
375
395
|
# * {Types::CreateApiResponse#cors_configuration #cors_configuration} => Types::Cors
|
@@ -413,6 +433,7 @@ module Aws::ApiGatewayV2
|
|
413
433
|
# @example Response structure
|
414
434
|
#
|
415
435
|
# resp.api_endpoint #=> String
|
436
|
+
# resp.api_gateway_managed #=> Boolean
|
416
437
|
# resp.api_id #=> String
|
417
438
|
# resp.api_key_selection_expression #=> String
|
418
439
|
# resp.cors_configuration.allow_credentials #=> Boolean
|
@@ -722,6 +743,9 @@ module Aws::ApiGatewayV2
|
|
722
743
|
# @option params [String] :integration_method
|
723
744
|
# A string with a length between \[1-64\].
|
724
745
|
#
|
746
|
+
# @option params [String] :integration_subtype
|
747
|
+
# A string with a length between \[1-128\].
|
748
|
+
#
|
725
749
|
# @option params [required, String] :integration_type
|
726
750
|
# Represents an API method integration type.
|
727
751
|
#
|
@@ -780,6 +804,7 @@ module Aws::ApiGatewayV2
|
|
780
804
|
# * {Types::CreateIntegrationResult#integration_id #integration_id} => String
|
781
805
|
# * {Types::CreateIntegrationResult#integration_method #integration_method} => String
|
782
806
|
# * {Types::CreateIntegrationResult#integration_response_selection_expression #integration_response_selection_expression} => String
|
807
|
+
# * {Types::CreateIntegrationResult#integration_subtype #integration_subtype} => String
|
783
808
|
# * {Types::CreateIntegrationResult#integration_type #integration_type} => String
|
784
809
|
# * {Types::CreateIntegrationResult#integration_uri #integration_uri} => String
|
785
810
|
# * {Types::CreateIntegrationResult#passthrough_behavior #passthrough_behavior} => String
|
@@ -800,6 +825,7 @@ module Aws::ApiGatewayV2
|
|
800
825
|
# credentials_arn: "Arn",
|
801
826
|
# description: "StringWithLengthBetween0And1024",
|
802
827
|
# integration_method: "StringWithLengthBetween1And64",
|
828
|
+
# integration_subtype: "StringWithLengthBetween1And128",
|
803
829
|
# integration_type: "AWS", # required, accepts AWS, HTTP, MOCK, HTTP_PROXY, AWS_PROXY
|
804
830
|
# integration_uri: "UriWithLengthBetween1And2048",
|
805
831
|
# passthrough_behavior: "WHEN_NO_MATCH", # accepts WHEN_NO_MATCH, NEVER, WHEN_NO_TEMPLATES
|
@@ -828,6 +854,7 @@ module Aws::ApiGatewayV2
|
|
828
854
|
# resp.integration_id #=> String
|
829
855
|
# resp.integration_method #=> String
|
830
856
|
# resp.integration_response_selection_expression #=> String
|
857
|
+
# resp.integration_subtype #=> String
|
831
858
|
# resp.integration_type #=> String, one of "AWS", "HTTP", "MOCK", "HTTP_PROXY", "AWS_PROXY"
|
832
859
|
# resp.integration_uri #=> String
|
833
860
|
# resp.passthrough_behavior #=> String, one of "WHEN_NO_MATCH", "NEVER", "WHEN_NO_TEMPLATES"
|
@@ -1768,6 +1795,7 @@ module Aws::ApiGatewayV2
|
|
1768
1795
|
# @return [Types::GetApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1769
1796
|
#
|
1770
1797
|
# * {Types::GetApiResponse#api_endpoint #api_endpoint} => String
|
1798
|
+
# * {Types::GetApiResponse#api_gateway_managed #api_gateway_managed} => Boolean
|
1771
1799
|
# * {Types::GetApiResponse#api_id #api_id} => String
|
1772
1800
|
# * {Types::GetApiResponse#api_key_selection_expression #api_key_selection_expression} => String
|
1773
1801
|
# * {Types::GetApiResponse#cors_configuration #cors_configuration} => Types::Cors
|
@@ -1791,6 +1819,7 @@ module Aws::ApiGatewayV2
|
|
1791
1819
|
# @example Response structure
|
1792
1820
|
#
|
1793
1821
|
# resp.api_endpoint #=> String
|
1822
|
+
# resp.api_gateway_managed #=> Boolean
|
1794
1823
|
# resp.api_id #=> String
|
1795
1824
|
# resp.api_key_selection_expression #=> String
|
1796
1825
|
# resp.cors_configuration.allow_credentials #=> Boolean
|
@@ -1917,6 +1946,7 @@ module Aws::ApiGatewayV2
|
|
1917
1946
|
#
|
1918
1947
|
# resp.items #=> Array
|
1919
1948
|
# resp.items[0].api_endpoint #=> String
|
1949
|
+
# resp.items[0].api_gateway_managed #=> Boolean
|
1920
1950
|
# resp.items[0].api_id #=> String
|
1921
1951
|
# resp.items[0].api_key_selection_expression #=> String
|
1922
1952
|
# resp.items[0].cors_configuration.allow_credentials #=> Boolean
|
@@ -2222,6 +2252,7 @@ module Aws::ApiGatewayV2
|
|
2222
2252
|
# * {Types::GetIntegrationResult#integration_id #integration_id} => String
|
2223
2253
|
# * {Types::GetIntegrationResult#integration_method #integration_method} => String
|
2224
2254
|
# * {Types::GetIntegrationResult#integration_response_selection_expression #integration_response_selection_expression} => String
|
2255
|
+
# * {Types::GetIntegrationResult#integration_subtype #integration_subtype} => String
|
2225
2256
|
# * {Types::GetIntegrationResult#integration_type #integration_type} => String
|
2226
2257
|
# * {Types::GetIntegrationResult#integration_uri #integration_uri} => String
|
2227
2258
|
# * {Types::GetIntegrationResult#passthrough_behavior #passthrough_behavior} => String
|
@@ -2250,6 +2281,7 @@ module Aws::ApiGatewayV2
|
|
2250
2281
|
# resp.integration_id #=> String
|
2251
2282
|
# resp.integration_method #=> String
|
2252
2283
|
# resp.integration_response_selection_expression #=> String
|
2284
|
+
# resp.integration_subtype #=> String
|
2253
2285
|
# resp.integration_type #=> String, one of "AWS", "HTTP", "MOCK", "HTTP_PROXY", "AWS_PROXY"
|
2254
2286
|
# resp.integration_uri #=> String
|
2255
2287
|
# resp.passthrough_behavior #=> String, one of "WHEN_NO_MATCH", "NEVER", "WHEN_NO_TEMPLATES"
|
@@ -2389,6 +2421,7 @@ module Aws::ApiGatewayV2
|
|
2389
2421
|
# resp.items[0].integration_id #=> String
|
2390
2422
|
# resp.items[0].integration_method #=> String
|
2391
2423
|
# resp.items[0].integration_response_selection_expression #=> String
|
2424
|
+
# resp.items[0].integration_subtype #=> String
|
2392
2425
|
# resp.items[0].integration_type #=> String, one of "AWS", "HTTP", "MOCK", "HTTP_PROXY", "AWS_PROXY"
|
2393
2426
|
# resp.items[0].integration_uri #=> String
|
2394
2427
|
# resp.items[0].passthrough_behavior #=> String, one of "WHEN_NO_MATCH", "NEVER", "WHEN_NO_TEMPLATES"
|
@@ -2947,6 +2980,7 @@ module Aws::ApiGatewayV2
|
|
2947
2980
|
# @return [Types::ImportApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2948
2981
|
#
|
2949
2982
|
# * {Types::ImportApiResponse#api_endpoint #api_endpoint} => String
|
2983
|
+
# * {Types::ImportApiResponse#api_gateway_managed #api_gateway_managed} => Boolean
|
2950
2984
|
# * {Types::ImportApiResponse#api_id #api_id} => String
|
2951
2985
|
# * {Types::ImportApiResponse#api_key_selection_expression #api_key_selection_expression} => String
|
2952
2986
|
# * {Types::ImportApiResponse#cors_configuration #cors_configuration} => Types::Cors
|
@@ -2972,6 +3006,7 @@ module Aws::ApiGatewayV2
|
|
2972
3006
|
# @example Response structure
|
2973
3007
|
#
|
2974
3008
|
# resp.api_endpoint #=> String
|
3009
|
+
# resp.api_gateway_managed #=> Boolean
|
2975
3010
|
# resp.api_id #=> String
|
2976
3011
|
# resp.api_key_selection_expression #=> String
|
2977
3012
|
# resp.cors_configuration.allow_credentials #=> Boolean
|
@@ -3018,6 +3053,7 @@ module Aws::ApiGatewayV2
|
|
3018
3053
|
# @return [Types::ReimportApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3019
3054
|
#
|
3020
3055
|
# * {Types::ReimportApiResponse#api_endpoint #api_endpoint} => String
|
3056
|
+
# * {Types::ReimportApiResponse#api_gateway_managed #api_gateway_managed} => Boolean
|
3021
3057
|
# * {Types::ReimportApiResponse#api_id #api_id} => String
|
3022
3058
|
# * {Types::ReimportApiResponse#api_key_selection_expression #api_key_selection_expression} => String
|
3023
3059
|
# * {Types::ReimportApiResponse#cors_configuration #cors_configuration} => Types::Cors
|
@@ -3044,6 +3080,7 @@ module Aws::ApiGatewayV2
|
|
3044
3080
|
# @example Response structure
|
3045
3081
|
#
|
3046
3082
|
# resp.api_endpoint #=> String
|
3083
|
+
# resp.api_gateway_managed #=> Boolean
|
3047
3084
|
# resp.api_id #=> String
|
3048
3085
|
# resp.api_key_selection_expression #=> String
|
3049
3086
|
# resp.cors_configuration.allow_credentials #=> Boolean
|
@@ -3182,6 +3219,7 @@ module Aws::ApiGatewayV2
|
|
3182
3219
|
# @return [Types::UpdateApiResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3183
3220
|
#
|
3184
3221
|
# * {Types::UpdateApiResponse#api_endpoint #api_endpoint} => String
|
3222
|
+
# * {Types::UpdateApiResponse#api_gateway_managed #api_gateway_managed} => Boolean
|
3185
3223
|
# * {Types::UpdateApiResponse#api_id #api_id} => String
|
3186
3224
|
# * {Types::UpdateApiResponse#api_key_selection_expression #api_key_selection_expression} => String
|
3187
3225
|
# * {Types::UpdateApiResponse#cors_configuration #cors_configuration} => Types::Cors
|
@@ -3222,6 +3260,7 @@ module Aws::ApiGatewayV2
|
|
3222
3260
|
# @example Response structure
|
3223
3261
|
#
|
3224
3262
|
# resp.api_endpoint #=> String
|
3263
|
+
# resp.api_gateway_managed #=> Boolean
|
3225
3264
|
# resp.api_id #=> String
|
3226
3265
|
# resp.api_key_selection_expression #=> String
|
3227
3266
|
# resp.cors_configuration.allow_credentials #=> Boolean
|
@@ -3531,6 +3570,9 @@ module Aws::ApiGatewayV2
|
|
3531
3570
|
# @option params [String] :integration_method
|
3532
3571
|
# A string with a length between \[1-64\].
|
3533
3572
|
#
|
3573
|
+
# @option params [String] :integration_subtype
|
3574
|
+
# A string with a length between \[1-128\].
|
3575
|
+
#
|
3534
3576
|
# @option params [String] :integration_type
|
3535
3577
|
# Represents an API method integration type.
|
3536
3578
|
#
|
@@ -3589,6 +3631,7 @@ module Aws::ApiGatewayV2
|
|
3589
3631
|
# * {Types::UpdateIntegrationResult#integration_id #integration_id} => String
|
3590
3632
|
# * {Types::UpdateIntegrationResult#integration_method #integration_method} => String
|
3591
3633
|
# * {Types::UpdateIntegrationResult#integration_response_selection_expression #integration_response_selection_expression} => String
|
3634
|
+
# * {Types::UpdateIntegrationResult#integration_subtype #integration_subtype} => String
|
3592
3635
|
# * {Types::UpdateIntegrationResult#integration_type #integration_type} => String
|
3593
3636
|
# * {Types::UpdateIntegrationResult#integration_uri #integration_uri} => String
|
3594
3637
|
# * {Types::UpdateIntegrationResult#passthrough_behavior #passthrough_behavior} => String
|
@@ -3610,6 +3653,7 @@ module Aws::ApiGatewayV2
|
|
3610
3653
|
# description: "StringWithLengthBetween0And1024",
|
3611
3654
|
# integration_id: "__string", # required
|
3612
3655
|
# integration_method: "StringWithLengthBetween1And64",
|
3656
|
+
# integration_subtype: "StringWithLengthBetween1And128",
|
3613
3657
|
# integration_type: "AWS", # accepts AWS, HTTP, MOCK, HTTP_PROXY, AWS_PROXY
|
3614
3658
|
# integration_uri: "UriWithLengthBetween1And2048",
|
3615
3659
|
# passthrough_behavior: "WHEN_NO_MATCH", # accepts WHEN_NO_MATCH, NEVER, WHEN_NO_TEMPLATES
|
@@ -3638,6 +3682,7 @@ module Aws::ApiGatewayV2
|
|
3638
3682
|
# resp.integration_id #=> String
|
3639
3683
|
# resp.integration_method #=> String
|
3640
3684
|
# resp.integration_response_selection_expression #=> String
|
3685
|
+
# resp.integration_subtype #=> String
|
3641
3686
|
# resp.integration_type #=> String, one of "AWS", "HTTP", "MOCK", "HTTP_PROXY", "AWS_PROXY"
|
3642
3687
|
# resp.integration_uri #=> String
|
3643
3688
|
# resp.passthrough_behavior #=> String, one of "WHEN_NO_MATCH", "NEVER", "WHEN_NO_TEMPLATES"
|
@@ -4184,7 +4229,7 @@ module Aws::ApiGatewayV2
|
|
4184
4229
|
params: params,
|
4185
4230
|
config: config)
|
4186
4231
|
context[:gem_name] = 'aws-sdk-apigatewayv2'
|
4187
|
-
context[:gem_version] = '1.
|
4232
|
+
context[:gem_version] = '1.25.0'
|
4188
4233
|
Seahorse::Client::Request.new(handlers, context)
|
4189
4234
|
end
|
4190
4235
|
|
@@ -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:
|
@@ -280,6 +282,7 @@ module Aws::ApiGatewayV2
|
|
280
282
|
AccessLogSettings.struct_class = Types::AccessLogSettings
|
281
283
|
|
282
284
|
Api.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
285
|
+
Api.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
283
286
|
Api.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
284
287
|
Api.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
285
288
|
Api.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -392,6 +395,7 @@ module Aws::ApiGatewayV2
|
|
392
395
|
CreateApiRequest.struct_class = Types::CreateApiRequest
|
393
396
|
|
394
397
|
CreateApiResponse.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
398
|
+
CreateApiResponse.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
395
399
|
CreateApiResponse.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
396
400
|
CreateApiResponse.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
397
401
|
CreateApiResponse.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -478,6 +482,7 @@ module Aws::ApiGatewayV2
|
|
478
482
|
CreateIntegrationInput.add_member(:credentials_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "credentialsArn"))
|
479
483
|
CreateIntegrationInput.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
|
480
484
|
CreateIntegrationInput.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
485
|
+
CreateIntegrationInput.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
481
486
|
CreateIntegrationInput.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, required: true, location_name: "integrationType"))
|
482
487
|
CreateIntegrationInput.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
483
488
|
CreateIntegrationInput.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -496,6 +501,7 @@ module Aws::ApiGatewayV2
|
|
496
501
|
CreateIntegrationRequest.add_member(:credentials_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "credentialsArn"))
|
497
502
|
CreateIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
|
498
503
|
CreateIntegrationRequest.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
504
|
+
CreateIntegrationRequest.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
499
505
|
CreateIntegrationRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, required: true, location_name: "integrationType"))
|
500
506
|
CreateIntegrationRequest.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
501
507
|
CreateIntegrationRequest.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -540,6 +546,7 @@ module Aws::ApiGatewayV2
|
|
540
546
|
CreateIntegrationResult.add_member(:integration_id, Shapes::ShapeRef.new(shape: Id, location_name: "integrationId"))
|
541
547
|
CreateIntegrationResult.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
542
548
|
CreateIntegrationResult.add_member(:integration_response_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "integrationResponseSelectionExpression"))
|
549
|
+
CreateIntegrationResult.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
543
550
|
CreateIntegrationResult.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
544
551
|
CreateIntegrationResult.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
545
552
|
CreateIntegrationResult.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -835,6 +842,7 @@ module Aws::ApiGatewayV2
|
|
835
842
|
GetApiRequest.struct_class = Types::GetApiRequest
|
836
843
|
|
837
844
|
GetApiResponse.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
845
|
+
GetApiResponse.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
838
846
|
GetApiResponse.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
839
847
|
GetApiResponse.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
840
848
|
GetApiResponse.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -956,6 +964,7 @@ module Aws::ApiGatewayV2
|
|
956
964
|
GetIntegrationResult.add_member(:integration_id, Shapes::ShapeRef.new(shape: Id, location_name: "integrationId"))
|
957
965
|
GetIntegrationResult.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
958
966
|
GetIntegrationResult.add_member(:integration_response_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "integrationResponseSelectionExpression"))
|
967
|
+
GetIntegrationResult.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
959
968
|
GetIntegrationResult.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
960
969
|
GetIntegrationResult.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
961
970
|
GetIntegrationResult.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -1121,6 +1130,7 @@ module Aws::ApiGatewayV2
|
|
1121
1130
|
ImportApiRequest.struct_class = Types::ImportApiRequest
|
1122
1131
|
|
1123
1132
|
ImportApiResponse.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
1133
|
+
ImportApiResponse.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
1124
1134
|
ImportApiResponse.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
1125
1135
|
ImportApiResponse.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
1126
1136
|
ImportApiResponse.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -1145,6 +1155,7 @@ module Aws::ApiGatewayV2
|
|
1145
1155
|
Integration.add_member(:integration_id, Shapes::ShapeRef.new(shape: Id, location_name: "integrationId"))
|
1146
1156
|
Integration.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
1147
1157
|
Integration.add_member(:integration_response_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "integrationResponseSelectionExpression"))
|
1158
|
+
Integration.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
1148
1159
|
Integration.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
1149
1160
|
Integration.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
1150
1161
|
Integration.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -1211,6 +1222,7 @@ module Aws::ApiGatewayV2
|
|
1211
1222
|
ReimportApiRequest.struct_class = Types::ReimportApiRequest
|
1212
1223
|
|
1213
1224
|
ReimportApiResponse.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
1225
|
+
ReimportApiResponse.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
1214
1226
|
ReimportApiResponse.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
1215
1227
|
ReimportApiResponse.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
1216
1228
|
ReimportApiResponse.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -1375,6 +1387,7 @@ module Aws::ApiGatewayV2
|
|
1375
1387
|
UpdateApiRequest.struct_class = Types::UpdateApiRequest
|
1376
1388
|
|
1377
1389
|
UpdateApiResponse.add_member(:api_endpoint, Shapes::ShapeRef.new(shape: __string, location_name: "apiEndpoint"))
|
1390
|
+
UpdateApiResponse.add_member(:api_gateway_managed, Shapes::ShapeRef.new(shape: __boolean, location_name: "apiGatewayManaged"))
|
1378
1391
|
UpdateApiResponse.add_member(:api_id, Shapes::ShapeRef.new(shape: Id, location_name: "apiId"))
|
1379
1392
|
UpdateApiResponse.add_member(:api_key_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "apiKeySelectionExpression"))
|
1380
1393
|
UpdateApiResponse.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: Cors, location_name: "corsConfiguration"))
|
@@ -1458,6 +1471,7 @@ module Aws::ApiGatewayV2
|
|
1458
1471
|
UpdateIntegrationInput.add_member(:credentials_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "credentialsArn"))
|
1459
1472
|
UpdateIntegrationInput.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
|
1460
1473
|
UpdateIntegrationInput.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
1474
|
+
UpdateIntegrationInput.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
1461
1475
|
UpdateIntegrationInput.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
1462
1476
|
UpdateIntegrationInput.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
1463
1477
|
UpdateIntegrationInput.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -1477,6 +1491,7 @@ module Aws::ApiGatewayV2
|
|
1477
1491
|
UpdateIntegrationRequest.add_member(:description, Shapes::ShapeRef.new(shape: StringWithLengthBetween0And1024, location_name: "description"))
|
1478
1492
|
UpdateIntegrationRequest.add_member(:integration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "integrationId"))
|
1479
1493
|
UpdateIntegrationRequest.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
1494
|
+
UpdateIntegrationRequest.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
1480
1495
|
UpdateIntegrationRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
1481
1496
|
UpdateIntegrationRequest.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
1482
1497
|
UpdateIntegrationRequest.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -1522,6 +1537,7 @@ module Aws::ApiGatewayV2
|
|
1522
1537
|
UpdateIntegrationResult.add_member(:integration_id, Shapes::ShapeRef.new(shape: Id, location_name: "integrationId"))
|
1523
1538
|
UpdateIntegrationResult.add_member(:integration_method, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And64, location_name: "integrationMethod"))
|
1524
1539
|
UpdateIntegrationResult.add_member(:integration_response_selection_expression, Shapes::ShapeRef.new(shape: SelectionExpression, location_name: "integrationResponseSelectionExpression"))
|
1540
|
+
UpdateIntegrationResult.add_member(:integration_subtype, Shapes::ShapeRef.new(shape: StringWithLengthBetween1And128, location_name: "integrationSubtype"))
|
1525
1541
|
UpdateIntegrationResult.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location_name: "integrationType"))
|
1526
1542
|
UpdateIntegrationResult.add_member(:integration_uri, Shapes::ShapeRef.new(shape: UriWithLengthBetween1And2048, location_name: "integrationUri"))
|
1527
1543
|
UpdateIntegrationResult.add_member(:passthrough_behavior, Shapes::ShapeRef.new(shape: PassthroughBehavior, location_name: "passthroughBehavior"))
|
@@ -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:
|
@@ -13,6 +15,7 @@ module Aws::ApiGatewayV2
|
|
13
15
|
#
|
14
16
|
class AccessDeniedException < Struct.new(
|
15
17
|
:message)
|
18
|
+
SENSITIVE = []
|
16
19
|
include Aws::Structure
|
17
20
|
end
|
18
21
|
|
@@ -39,6 +42,7 @@ module Aws::ApiGatewayV2
|
|
39
42
|
class AccessLogSettings < Struct.new(
|
40
43
|
:destination_arn,
|
41
44
|
:format)
|
45
|
+
SENSITIVE = []
|
42
46
|
include Aws::Structure
|
43
47
|
end
|
44
48
|
|
@@ -51,6 +55,12 @@ module Aws::ApiGatewayV2
|
|
51
55
|
# deployed API stage.
|
52
56
|
# @return [String]
|
53
57
|
#
|
58
|
+
# @!attribute [rw] api_gateway_managed
|
59
|
+
# Specifies whether an API is managed by API Gateway. You can't
|
60
|
+
# update or delete a managed API by using API Gateway. A managed API
|
61
|
+
# can be deleted only through the tooling or service that created it.
|
62
|
+
# @return [Boolean]
|
63
|
+
#
|
54
64
|
# @!attribute [rw] api_id
|
55
65
|
# The API ID.
|
56
66
|
# @return [String]
|
@@ -117,6 +127,7 @@ module Aws::ApiGatewayV2
|
|
117
127
|
#
|
118
128
|
class Api < Struct.new(
|
119
129
|
:api_endpoint,
|
130
|
+
:api_gateway_managed,
|
120
131
|
:api_id,
|
121
132
|
:api_key_selection_expression,
|
122
133
|
:cors_configuration,
|
@@ -130,6 +141,7 @@ module Aws::ApiGatewayV2
|
|
130
141
|
:tags,
|
131
142
|
:version,
|
132
143
|
:warnings)
|
144
|
+
SENSITIVE = []
|
133
145
|
include Aws::Structure
|
134
146
|
end
|
135
147
|
|
@@ -156,6 +168,7 @@ module Aws::ApiGatewayV2
|
|
156
168
|
:api_mapping_id,
|
157
169
|
:api_mapping_key,
|
158
170
|
:stage)
|
171
|
+
SENSITIVE = []
|
159
172
|
include Aws::Structure
|
160
173
|
end
|
161
174
|
|
@@ -173,6 +186,7 @@ module Aws::ApiGatewayV2
|
|
173
186
|
class ApiMappings < Struct.new(
|
174
187
|
:items,
|
175
188
|
:next_token)
|
189
|
+
SENSITIVE = []
|
176
190
|
include Aws::Structure
|
177
191
|
end
|
178
192
|
|
@@ -190,6 +204,7 @@ module Aws::ApiGatewayV2
|
|
190
204
|
class Apis < Struct.new(
|
191
205
|
:items,
|
192
206
|
:next_token)
|
207
|
+
SENSITIVE = []
|
193
208
|
include Aws::Structure
|
194
209
|
end
|
195
210
|
|
@@ -281,6 +296,7 @@ module Aws::ApiGatewayV2
|
|
281
296
|
:identity_validation_expression,
|
282
297
|
:jwt_configuration,
|
283
298
|
:name)
|
299
|
+
SENSITIVE = []
|
284
300
|
include Aws::Structure
|
285
301
|
end
|
286
302
|
|
@@ -298,6 +314,7 @@ module Aws::ApiGatewayV2
|
|
298
314
|
class Authorizers < Struct.new(
|
299
315
|
:items,
|
300
316
|
:next_token)
|
317
|
+
SENSITIVE = []
|
301
318
|
include Aws::Structure
|
302
319
|
end
|
303
320
|
|
@@ -310,6 +327,7 @@ module Aws::ApiGatewayV2
|
|
310
327
|
#
|
311
328
|
class BadRequestException < Struct.new(
|
312
329
|
:message)
|
330
|
+
SENSITIVE = []
|
313
331
|
include Aws::Structure
|
314
332
|
end
|
315
333
|
|
@@ -324,6 +342,7 @@ module Aws::ApiGatewayV2
|
|
324
342
|
#
|
325
343
|
class ConflictException < Struct.new(
|
326
344
|
:message)
|
345
|
+
SENSITIVE = []
|
327
346
|
include Aws::Structure
|
328
347
|
end
|
329
348
|
|
@@ -383,6 +402,7 @@ module Aws::ApiGatewayV2
|
|
383
402
|
:allow_origins,
|
384
403
|
:expose_headers,
|
385
404
|
:max_age)
|
405
|
+
SENSITIVE = []
|
386
406
|
include Aws::Structure
|
387
407
|
end
|
388
408
|
|
@@ -482,6 +502,7 @@ module Aws::ApiGatewayV2
|
|
482
502
|
:tags,
|
483
503
|
:target,
|
484
504
|
:version)
|
505
|
+
SENSITIVE = []
|
485
506
|
include Aws::Structure
|
486
507
|
end
|
487
508
|
|
@@ -503,6 +524,7 @@ module Aws::ApiGatewayV2
|
|
503
524
|
:api_id,
|
504
525
|
:api_mapping_key,
|
505
526
|
:stage)
|
527
|
+
SENSITIVE = []
|
506
528
|
include Aws::Structure
|
507
529
|
end
|
508
530
|
|
@@ -543,6 +565,7 @@ module Aws::ApiGatewayV2
|
|
543
565
|
:api_mapping_key,
|
544
566
|
:domain_name,
|
545
567
|
:stage)
|
568
|
+
SENSITIVE = []
|
546
569
|
include Aws::Structure
|
547
570
|
end
|
548
571
|
|
@@ -574,6 +597,7 @@ module Aws::ApiGatewayV2
|
|
574
597
|
:api_mapping_id,
|
575
598
|
:api_mapping_key,
|
576
599
|
:stage)
|
600
|
+
SENSITIVE = []
|
577
601
|
include Aws::Structure
|
578
602
|
end
|
579
603
|
|
@@ -686,12 +710,16 @@ module Aws::ApiGatewayV2
|
|
686
710
|
:tags,
|
687
711
|
:target,
|
688
712
|
:version)
|
713
|
+
SENSITIVE = []
|
689
714
|
include Aws::Structure
|
690
715
|
end
|
691
716
|
|
692
717
|
# @!attribute [rw] api_endpoint
|
693
718
|
# @return [String]
|
694
719
|
#
|
720
|
+
# @!attribute [rw] api_gateway_managed
|
721
|
+
# @return [Boolean]
|
722
|
+
#
|
695
723
|
# @!attribute [rw] api_id
|
696
724
|
# The identifier.
|
697
725
|
# @return [String]
|
@@ -757,6 +785,7 @@ module Aws::ApiGatewayV2
|
|
757
785
|
#
|
758
786
|
class CreateApiResponse < Struct.new(
|
759
787
|
:api_endpoint,
|
788
|
+
:api_gateway_managed,
|
760
789
|
:api_id,
|
761
790
|
:api_key_selection_expression,
|
762
791
|
:cors_configuration,
|
@@ -770,6 +799,7 @@ module Aws::ApiGatewayV2
|
|
770
799
|
:tags,
|
771
800
|
:version,
|
772
801
|
:warnings)
|
802
|
+
SENSITIVE = []
|
773
803
|
include Aws::Structure
|
774
804
|
end
|
775
805
|
|
@@ -856,6 +886,7 @@ module Aws::ApiGatewayV2
|
|
856
886
|
:identity_validation_expression,
|
857
887
|
:jwt_configuration,
|
858
888
|
:name)
|
889
|
+
SENSITIVE = []
|
859
890
|
include Aws::Structure
|
860
891
|
end
|
861
892
|
|
@@ -940,6 +971,7 @@ module Aws::ApiGatewayV2
|
|
940
971
|
:identity_validation_expression,
|
941
972
|
:jwt_configuration,
|
942
973
|
:name)
|
974
|
+
SENSITIVE = []
|
943
975
|
include Aws::Structure
|
944
976
|
end
|
945
977
|
|
@@ -1007,6 +1039,7 @@ module Aws::ApiGatewayV2
|
|
1007
1039
|
:identity_validation_expression,
|
1008
1040
|
:jwt_configuration,
|
1009
1041
|
:name)
|
1042
|
+
SENSITIVE = []
|
1010
1043
|
include Aws::Structure
|
1011
1044
|
end
|
1012
1045
|
|
@@ -1024,6 +1057,7 @@ module Aws::ApiGatewayV2
|
|
1024
1057
|
class CreateDeploymentInput < Struct.new(
|
1025
1058
|
:description,
|
1026
1059
|
:stage_name)
|
1060
|
+
SENSITIVE = []
|
1027
1061
|
include Aws::Structure
|
1028
1062
|
end
|
1029
1063
|
|
@@ -1051,6 +1085,7 @@ module Aws::ApiGatewayV2
|
|
1051
1085
|
:api_id,
|
1052
1086
|
:description,
|
1053
1087
|
:stage_name)
|
1088
|
+
SENSITIVE = []
|
1054
1089
|
include Aws::Structure
|
1055
1090
|
end
|
1056
1091
|
|
@@ -1082,6 +1117,7 @@ module Aws::ApiGatewayV2
|
|
1082
1117
|
:deployment_status,
|
1083
1118
|
:deployment_status_message,
|
1084
1119
|
:description)
|
1120
|
+
SENSITIVE = []
|
1085
1121
|
include Aws::Structure
|
1086
1122
|
end
|
1087
1123
|
|
@@ -1103,6 +1139,7 @@ module Aws::ApiGatewayV2
|
|
1103
1139
|
:domain_name,
|
1104
1140
|
:domain_name_configurations,
|
1105
1141
|
:tags)
|
1142
|
+
SENSITIVE = []
|
1106
1143
|
include Aws::Structure
|
1107
1144
|
end
|
1108
1145
|
|
@@ -1145,6 +1182,7 @@ module Aws::ApiGatewayV2
|
|
1145
1182
|
:domain_name,
|
1146
1183
|
:domain_name_configurations,
|
1147
1184
|
:tags)
|
1185
|
+
SENSITIVE = []
|
1148
1186
|
include Aws::Structure
|
1149
1187
|
end
|
1150
1188
|
|
@@ -1174,6 +1212,7 @@ module Aws::ApiGatewayV2
|
|
1174
1212
|
:domain_name,
|
1175
1213
|
:domain_name_configurations,
|
1176
1214
|
:tags)
|
1215
|
+
SENSITIVE = []
|
1177
1216
|
include Aws::Structure
|
1178
1217
|
end
|
1179
1218
|
|
@@ -1225,6 +1264,16 @@ module Aws::ApiGatewayV2
|
|
1225
1264
|
# Specifies the integration's HTTP method type.
|
1226
1265
|
# @return [String]
|
1227
1266
|
#
|
1267
|
+
# @!attribute [rw] integration_subtype
|
1268
|
+
# Supported only for HTTP API AWS\_PROXY integrations. Specifies the
|
1269
|
+
# AWS service action to invoke. To learn more, see [Integration
|
1270
|
+
# subtype reference][1].
|
1271
|
+
#
|
1272
|
+
#
|
1273
|
+
#
|
1274
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services-reference.html
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1228
1277
|
# @!attribute [rw] integration_type
|
1229
1278
|
# The integration type of an integration. One of the following:
|
1230
1279
|
#
|
@@ -1234,10 +1283,9 @@ module Aws::ApiGatewayV2
|
|
1234
1283
|
# custom integration. With any other AWS service action, this is known
|
1235
1284
|
# as AWS integration. Supported only for WebSocket APIs.
|
1236
1285
|
#
|
1237
|
-
# AWS\_PROXY: for integrating the route or method request with
|
1238
|
-
# Lambda function
|
1239
|
-
#
|
1240
|
-
# integration.
|
1286
|
+
# AWS\_PROXY: for integrating the route or method request with a
|
1287
|
+
# Lambda function or other AWS service action. This integration is
|
1288
|
+
# also referred to as a Lambda proxy integration.
|
1241
1289
|
#
|
1242
1290
|
# HTTP: for integrating the route or method request with an HTTP
|
1243
1291
|
# endpoint. This integration is also referred to as the HTTP custom
|
@@ -1296,16 +1344,26 @@ module Aws::ApiGatewayV2
|
|
1296
1344
|
# @return [String]
|
1297
1345
|
#
|
1298
1346
|
# @!attribute [rw] request_parameters
|
1299
|
-
#
|
1300
|
-
# the method request to the backend. The key is
|
1301
|
-
# parameter name and the associated value is a
|
1302
|
-
# parameter value or static value that must be enclosed
|
1303
|
-
# quotes and pre-encoded as required by the backend. The
|
1304
|
-
# request parameter value must match the pattern of
|
1347
|
+
# For WebSocket APIs, a key-value map specifying request parameters
|
1348
|
+
# that are passed from the method request to the backend. The key is
|
1349
|
+
# an integration request parameter name and the associated value is a
|
1350
|
+
# method request parameter value or static value that must be enclosed
|
1351
|
+
# within single quotes and pre-encoded as required by the backend. The
|
1352
|
+
# method request parameter value must match the pattern of
|
1305
1353
|
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
1306
1354
|
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
1307
|
-
# must be a valid and unique method request parameter name.
|
1308
|
-
#
|
1355
|
+
# must be a valid and unique method request parameter name.
|
1356
|
+
#
|
1357
|
+
# For HTTP APIs, request parameters are a key-value map specifying
|
1358
|
+
# parameters that are passed to AWS\_PROXY integrations with a
|
1359
|
+
# specified integrationSubtype. You can provide static values, or map
|
1360
|
+
# request data, stage variables, or context variables that are
|
1361
|
+
# evaluated at runtime. To learn more, see [Working with AWS service
|
1362
|
+
# integrations for HTTP APIs][1].
|
1363
|
+
#
|
1364
|
+
#
|
1365
|
+
#
|
1366
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services.html
|
1309
1367
|
# @return [Hash<String,String>]
|
1310
1368
|
#
|
1311
1369
|
# @!attribute [rw] request_templates
|
@@ -1340,6 +1398,7 @@ module Aws::ApiGatewayV2
|
|
1340
1398
|
:credentials_arn,
|
1341
1399
|
:description,
|
1342
1400
|
:integration_method,
|
1401
|
+
:integration_subtype,
|
1343
1402
|
:integration_type,
|
1344
1403
|
:integration_uri,
|
1345
1404
|
:passthrough_behavior,
|
@@ -1349,6 +1408,7 @@ module Aws::ApiGatewayV2
|
|
1349
1408
|
:template_selection_expression,
|
1350
1409
|
:timeout_in_millis,
|
1351
1410
|
:tls_config)
|
1411
|
+
SENSITIVE = []
|
1352
1412
|
include Aws::Structure
|
1353
1413
|
end
|
1354
1414
|
|
@@ -1363,6 +1423,7 @@ module Aws::ApiGatewayV2
|
|
1363
1423
|
# credentials_arn: "Arn",
|
1364
1424
|
# description: "StringWithLengthBetween0And1024",
|
1365
1425
|
# integration_method: "StringWithLengthBetween1And64",
|
1426
|
+
# integration_subtype: "StringWithLengthBetween1And128",
|
1366
1427
|
# integration_type: "AWS", # required, accepts AWS, HTTP, MOCK, HTTP_PROXY, AWS_PROXY
|
1367
1428
|
# integration_uri: "UriWithLengthBetween1And2048",
|
1368
1429
|
# passthrough_behavior: "WHEN_NO_MATCH", # accepts WHEN_NO_MATCH, NEVER, WHEN_NO_TEMPLATES
|
@@ -1408,6 +1469,10 @@ module Aws::ApiGatewayV2
|
|
1408
1469
|
# A string with a length between \[1-64\].
|
1409
1470
|
# @return [String]
|
1410
1471
|
#
|
1472
|
+
# @!attribute [rw] integration_subtype
|
1473
|
+
# A string with a length between \[1-128\].
|
1474
|
+
# @return [String]
|
1475
|
+
#
|
1411
1476
|
# @!attribute [rw] integration_type
|
1412
1477
|
# Represents an API method integration type.
|
1413
1478
|
# @return [String]
|
@@ -1473,6 +1538,7 @@ module Aws::ApiGatewayV2
|
|
1473
1538
|
:credentials_arn,
|
1474
1539
|
:description,
|
1475
1540
|
:integration_method,
|
1541
|
+
:integration_subtype,
|
1476
1542
|
:integration_type,
|
1477
1543
|
:integration_uri,
|
1478
1544
|
:passthrough_behavior,
|
@@ -1482,6 +1548,7 @@ module Aws::ApiGatewayV2
|
|
1482
1548
|
:template_selection_expression,
|
1483
1549
|
:timeout_in_millis,
|
1484
1550
|
:tls_config)
|
1551
|
+
SENSITIVE = []
|
1485
1552
|
include Aws::Structure
|
1486
1553
|
end
|
1487
1554
|
|
@@ -1526,6 +1593,10 @@ module Aws::ApiGatewayV2
|
|
1526
1593
|
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions
|
1527
1594
|
# @return [String]
|
1528
1595
|
#
|
1596
|
+
# @!attribute [rw] integration_subtype
|
1597
|
+
# A string with a length between \[1-128\].
|
1598
|
+
# @return [String]
|
1599
|
+
#
|
1529
1600
|
# @!attribute [rw] integration_type
|
1530
1601
|
# Represents an API method integration type.
|
1531
1602
|
# @return [String]
|
@@ -1593,6 +1664,7 @@ module Aws::ApiGatewayV2
|
|
1593
1664
|
:integration_id,
|
1594
1665
|
:integration_method,
|
1595
1666
|
:integration_response_selection_expression,
|
1667
|
+
:integration_subtype,
|
1596
1668
|
:integration_type,
|
1597
1669
|
:integration_uri,
|
1598
1670
|
:passthrough_behavior,
|
@@ -1602,6 +1674,7 @@ module Aws::ApiGatewayV2
|
|
1602
1674
|
:template_selection_expression,
|
1603
1675
|
:timeout_in_millis,
|
1604
1676
|
:tls_config)
|
1677
|
+
SENSITIVE = []
|
1605
1678
|
include Aws::Structure
|
1606
1679
|
end
|
1607
1680
|
|
@@ -1662,6 +1735,7 @@ module Aws::ApiGatewayV2
|
|
1662
1735
|
:response_parameters,
|
1663
1736
|
:response_templates,
|
1664
1737
|
:template_selection_expression)
|
1738
|
+
SENSITIVE = []
|
1665
1739
|
include Aws::Structure
|
1666
1740
|
end
|
1667
1741
|
|
@@ -1742,6 +1816,7 @@ module Aws::ApiGatewayV2
|
|
1742
1816
|
:response_parameters,
|
1743
1817
|
:response_templates,
|
1744
1818
|
:template_selection_expression)
|
1819
|
+
SENSITIVE = []
|
1745
1820
|
include Aws::Structure
|
1746
1821
|
end
|
1747
1822
|
|
@@ -1802,6 +1877,7 @@ module Aws::ApiGatewayV2
|
|
1802
1877
|
:response_parameters,
|
1803
1878
|
:response_templates,
|
1804
1879
|
:template_selection_expression)
|
1880
|
+
SENSITIVE = []
|
1805
1881
|
include Aws::Structure
|
1806
1882
|
end
|
1807
1883
|
|
@@ -1829,6 +1905,7 @@ module Aws::ApiGatewayV2
|
|
1829
1905
|
:description,
|
1830
1906
|
:name,
|
1831
1907
|
:schema)
|
1908
|
+
SENSITIVE = []
|
1832
1909
|
include Aws::Structure
|
1833
1910
|
end
|
1834
1911
|
|
@@ -1868,6 +1945,7 @@ module Aws::ApiGatewayV2
|
|
1868
1945
|
:description,
|
1869
1946
|
:name,
|
1870
1947
|
:schema)
|
1948
|
+
SENSITIVE = []
|
1871
1949
|
include Aws::Structure
|
1872
1950
|
end
|
1873
1951
|
|
@@ -1897,6 +1975,7 @@ module Aws::ApiGatewayV2
|
|
1897
1975
|
:model_id,
|
1898
1976
|
:name,
|
1899
1977
|
:schema)
|
1978
|
+
SENSITIVE = []
|
1900
1979
|
include Aws::Structure
|
1901
1980
|
end
|
1902
1981
|
|
@@ -1968,6 +2047,7 @@ module Aws::ApiGatewayV2
|
|
1968
2047
|
:route_key,
|
1969
2048
|
:route_response_selection_expression,
|
1970
2049
|
:target)
|
2050
|
+
SENSITIVE = []
|
1971
2051
|
include Aws::Structure
|
1972
2052
|
end
|
1973
2053
|
|
@@ -2082,6 +2162,7 @@ module Aws::ApiGatewayV2
|
|
2082
2162
|
:route_key,
|
2083
2163
|
:route_response_selection_expression,
|
2084
2164
|
:target)
|
2165
|
+
SENSITIVE = []
|
2085
2166
|
include Aws::Structure
|
2086
2167
|
end
|
2087
2168
|
|
@@ -2177,6 +2258,7 @@ module Aws::ApiGatewayV2
|
|
2177
2258
|
:route_key,
|
2178
2259
|
:route_response_selection_expression,
|
2179
2260
|
:target)
|
2261
|
+
SENSITIVE = []
|
2180
2262
|
include Aws::Structure
|
2181
2263
|
end
|
2182
2264
|
|
@@ -2204,6 +2286,7 @@ module Aws::ApiGatewayV2
|
|
2204
2286
|
:response_models,
|
2205
2287
|
:response_parameters,
|
2206
2288
|
:route_response_key)
|
2289
|
+
SENSITIVE = []
|
2207
2290
|
include Aws::Structure
|
2208
2291
|
end
|
2209
2292
|
|
@@ -2266,6 +2349,7 @@ module Aws::ApiGatewayV2
|
|
2266
2349
|
:response_parameters,
|
2267
2350
|
:route_id,
|
2268
2351
|
:route_response_key)
|
2352
|
+
SENSITIVE = []
|
2269
2353
|
include Aws::Structure
|
2270
2354
|
end
|
2271
2355
|
|
@@ -2307,6 +2391,7 @@ module Aws::ApiGatewayV2
|
|
2307
2391
|
:response_parameters,
|
2308
2392
|
:route_response_id,
|
2309
2393
|
:route_response_key)
|
2394
|
+
SENSITIVE = []
|
2310
2395
|
include Aws::Structure
|
2311
2396
|
end
|
2312
2397
|
|
@@ -2368,6 +2453,7 @@ module Aws::ApiGatewayV2
|
|
2368
2453
|
:stage_name,
|
2369
2454
|
:stage_variables,
|
2370
2455
|
:tags)
|
2456
|
+
SENSITIVE = []
|
2371
2457
|
include Aws::Structure
|
2372
2458
|
end
|
2373
2459
|
|
@@ -2463,6 +2549,7 @@ module Aws::ApiGatewayV2
|
|
2463
2549
|
:stage_name,
|
2464
2550
|
:stage_variables,
|
2465
2551
|
:tags)
|
2552
|
+
SENSITIVE = []
|
2466
2553
|
include Aws::Structure
|
2467
2554
|
end
|
2468
2555
|
|
@@ -2532,6 +2619,7 @@ module Aws::ApiGatewayV2
|
|
2532
2619
|
:stage_name,
|
2533
2620
|
:stage_variables,
|
2534
2621
|
:tags)
|
2622
|
+
SENSITIVE = []
|
2535
2623
|
include Aws::Structure
|
2536
2624
|
end
|
2537
2625
|
|
@@ -2558,6 +2646,7 @@ module Aws::ApiGatewayV2
|
|
2558
2646
|
:security_group_ids,
|
2559
2647
|
:subnet_ids,
|
2560
2648
|
:tags)
|
2649
|
+
SENSITIVE = []
|
2561
2650
|
include Aws::Structure
|
2562
2651
|
end
|
2563
2652
|
|
@@ -2594,6 +2683,7 @@ module Aws::ApiGatewayV2
|
|
2594
2683
|
:security_group_ids,
|
2595
2684
|
:subnet_ids,
|
2596
2685
|
:tags)
|
2686
|
+
SENSITIVE = []
|
2597
2687
|
include Aws::Structure
|
2598
2688
|
end
|
2599
2689
|
|
@@ -2642,6 +2732,7 @@ module Aws::ApiGatewayV2
|
|
2642
2732
|
:vpc_link_status,
|
2643
2733
|
:vpc_link_status_message,
|
2644
2734
|
:vpc_link_version)
|
2735
|
+
SENSITIVE = []
|
2645
2736
|
include Aws::Structure
|
2646
2737
|
end
|
2647
2738
|
|
@@ -2662,6 +2753,7 @@ module Aws::ApiGatewayV2
|
|
2662
2753
|
class DeleteAccessLogSettingsRequest < Struct.new(
|
2663
2754
|
:api_id,
|
2664
2755
|
:stage_name)
|
2756
|
+
SENSITIVE = []
|
2665
2757
|
include Aws::Structure
|
2666
2758
|
end
|
2667
2759
|
|
@@ -2682,6 +2774,7 @@ module Aws::ApiGatewayV2
|
|
2682
2774
|
class DeleteApiMappingRequest < Struct.new(
|
2683
2775
|
:api_mapping_id,
|
2684
2776
|
:domain_name)
|
2777
|
+
SENSITIVE = []
|
2685
2778
|
include Aws::Structure
|
2686
2779
|
end
|
2687
2780
|
|
@@ -2697,6 +2790,7 @@ module Aws::ApiGatewayV2
|
|
2697
2790
|
#
|
2698
2791
|
class DeleteApiRequest < Struct.new(
|
2699
2792
|
:api_id)
|
2793
|
+
SENSITIVE = []
|
2700
2794
|
include Aws::Structure
|
2701
2795
|
end
|
2702
2796
|
|
@@ -2717,6 +2811,7 @@ module Aws::ApiGatewayV2
|
|
2717
2811
|
class DeleteAuthorizerRequest < Struct.new(
|
2718
2812
|
:api_id,
|
2719
2813
|
:authorizer_id)
|
2814
|
+
SENSITIVE = []
|
2720
2815
|
include Aws::Structure
|
2721
2816
|
end
|
2722
2817
|
|
@@ -2732,6 +2827,7 @@ module Aws::ApiGatewayV2
|
|
2732
2827
|
#
|
2733
2828
|
class DeleteCorsConfigurationRequest < Struct.new(
|
2734
2829
|
:api_id)
|
2830
|
+
SENSITIVE = []
|
2735
2831
|
include Aws::Structure
|
2736
2832
|
end
|
2737
2833
|
|
@@ -2752,6 +2848,7 @@ module Aws::ApiGatewayV2
|
|
2752
2848
|
class DeleteDeploymentRequest < Struct.new(
|
2753
2849
|
:api_id,
|
2754
2850
|
:deployment_id)
|
2851
|
+
SENSITIVE = []
|
2755
2852
|
include Aws::Structure
|
2756
2853
|
end
|
2757
2854
|
|
@@ -2767,6 +2864,7 @@ module Aws::ApiGatewayV2
|
|
2767
2864
|
#
|
2768
2865
|
class DeleteDomainNameRequest < Struct.new(
|
2769
2866
|
:domain_name)
|
2867
|
+
SENSITIVE = []
|
2770
2868
|
include Aws::Structure
|
2771
2869
|
end
|
2772
2870
|
|
@@ -2787,6 +2885,7 @@ module Aws::ApiGatewayV2
|
|
2787
2885
|
class DeleteIntegrationRequest < Struct.new(
|
2788
2886
|
:api_id,
|
2789
2887
|
:integration_id)
|
2888
|
+
SENSITIVE = []
|
2790
2889
|
include Aws::Structure
|
2791
2890
|
end
|
2792
2891
|
|
@@ -2812,6 +2911,7 @@ module Aws::ApiGatewayV2
|
|
2812
2911
|
:api_id,
|
2813
2912
|
:integration_id,
|
2814
2913
|
:integration_response_id)
|
2914
|
+
SENSITIVE = []
|
2815
2915
|
include Aws::Structure
|
2816
2916
|
end
|
2817
2917
|
|
@@ -2832,6 +2932,7 @@ module Aws::ApiGatewayV2
|
|
2832
2932
|
class DeleteModelRequest < Struct.new(
|
2833
2933
|
:api_id,
|
2834
2934
|
:model_id)
|
2935
|
+
SENSITIVE = []
|
2835
2936
|
include Aws::Structure
|
2836
2937
|
end
|
2837
2938
|
|
@@ -2852,6 +2953,7 @@ module Aws::ApiGatewayV2
|
|
2852
2953
|
class DeleteRouteRequest < Struct.new(
|
2853
2954
|
:api_id,
|
2854
2955
|
:route_id)
|
2956
|
+
SENSITIVE = []
|
2855
2957
|
include Aws::Structure
|
2856
2958
|
end
|
2857
2959
|
|
@@ -2877,6 +2979,7 @@ module Aws::ApiGatewayV2
|
|
2877
2979
|
:api_id,
|
2878
2980
|
:request_parameter_key,
|
2879
2981
|
:route_id)
|
2982
|
+
SENSITIVE = []
|
2880
2983
|
include Aws::Structure
|
2881
2984
|
end
|
2882
2985
|
|
@@ -2902,6 +3005,7 @@ module Aws::ApiGatewayV2
|
|
2902
3005
|
:api_id,
|
2903
3006
|
:route_id,
|
2904
3007
|
:route_response_id)
|
3008
|
+
SENSITIVE = []
|
2905
3009
|
include Aws::Structure
|
2906
3010
|
end
|
2907
3011
|
|
@@ -2927,6 +3031,7 @@ module Aws::ApiGatewayV2
|
|
2927
3031
|
:api_id,
|
2928
3032
|
:route_key,
|
2929
3033
|
:stage_name)
|
3034
|
+
SENSITIVE = []
|
2930
3035
|
include Aws::Structure
|
2931
3036
|
end
|
2932
3037
|
|
@@ -2947,6 +3052,7 @@ module Aws::ApiGatewayV2
|
|
2947
3052
|
class DeleteStageRequest < Struct.new(
|
2948
3053
|
:api_id,
|
2949
3054
|
:stage_name)
|
3055
|
+
SENSITIVE = []
|
2950
3056
|
include Aws::Structure
|
2951
3057
|
end
|
2952
3058
|
|
@@ -2962,6 +3068,7 @@ module Aws::ApiGatewayV2
|
|
2962
3068
|
#
|
2963
3069
|
class DeleteVpcLinkRequest < Struct.new(
|
2964
3070
|
:vpc_link_id)
|
3071
|
+
SENSITIVE = []
|
2965
3072
|
include Aws::Structure
|
2966
3073
|
end
|
2967
3074
|
|
@@ -3002,6 +3109,7 @@ module Aws::ApiGatewayV2
|
|
3002
3109
|
:deployment_status,
|
3003
3110
|
:deployment_status_message,
|
3004
3111
|
:description)
|
3112
|
+
SENSITIVE = []
|
3005
3113
|
include Aws::Structure
|
3006
3114
|
end
|
3007
3115
|
|
@@ -3022,6 +3130,7 @@ module Aws::ApiGatewayV2
|
|
3022
3130
|
class Deployments < Struct.new(
|
3023
3131
|
:items,
|
3024
3132
|
:next_token)
|
3133
|
+
SENSITIVE = []
|
3025
3134
|
include Aws::Structure
|
3026
3135
|
end
|
3027
3136
|
|
@@ -3048,6 +3157,7 @@ module Aws::ApiGatewayV2
|
|
3048
3157
|
:domain_name,
|
3049
3158
|
:domain_name_configurations,
|
3050
3159
|
:tags)
|
3160
|
+
SENSITIVE = []
|
3051
3161
|
include Aws::Structure
|
3052
3162
|
end
|
3053
3163
|
|
@@ -3123,6 +3233,7 @@ module Aws::ApiGatewayV2
|
|
3123
3233
|
:endpoint_type,
|
3124
3234
|
:hosted_zone_id,
|
3125
3235
|
:security_policy)
|
3236
|
+
SENSITIVE = []
|
3126
3237
|
include Aws::Structure
|
3127
3238
|
end
|
3128
3239
|
|
@@ -3140,6 +3251,7 @@ module Aws::ApiGatewayV2
|
|
3140
3251
|
class DomainNames < Struct.new(
|
3141
3252
|
:items,
|
3142
3253
|
:next_token)
|
3254
|
+
SENSITIVE = []
|
3143
3255
|
include Aws::Structure
|
3144
3256
|
end
|
3145
3257
|
|
@@ -3180,6 +3292,7 @@ module Aws::ApiGatewayV2
|
|
3180
3292
|
:output_type,
|
3181
3293
|
:specification,
|
3182
3294
|
:stage_name)
|
3295
|
+
SENSITIVE = []
|
3183
3296
|
include Aws::Structure
|
3184
3297
|
end
|
3185
3298
|
|
@@ -3191,6 +3304,7 @@ module Aws::ApiGatewayV2
|
|
3191
3304
|
#
|
3192
3305
|
class ExportApiResponse < Struct.new(
|
3193
3306
|
:body)
|
3307
|
+
SENSITIVE = []
|
3194
3308
|
include Aws::Structure
|
3195
3309
|
end
|
3196
3310
|
|
@@ -3211,6 +3325,7 @@ module Aws::ApiGatewayV2
|
|
3211
3325
|
class GetApiMappingRequest < Struct.new(
|
3212
3326
|
:api_mapping_id,
|
3213
3327
|
:domain_name)
|
3328
|
+
SENSITIVE = []
|
3214
3329
|
include Aws::Structure
|
3215
3330
|
end
|
3216
3331
|
|
@@ -3242,6 +3357,7 @@ module Aws::ApiGatewayV2
|
|
3242
3357
|
:api_mapping_id,
|
3243
3358
|
:api_mapping_key,
|
3244
3359
|
:stage)
|
3360
|
+
SENSITIVE = []
|
3245
3361
|
include Aws::Structure
|
3246
3362
|
end
|
3247
3363
|
|
@@ -3267,6 +3383,7 @@ module Aws::ApiGatewayV2
|
|
3267
3383
|
:domain_name,
|
3268
3384
|
:max_results,
|
3269
3385
|
:next_token)
|
3386
|
+
SENSITIVE = []
|
3270
3387
|
include Aws::Structure
|
3271
3388
|
end
|
3272
3389
|
|
@@ -3281,6 +3398,7 @@ module Aws::ApiGatewayV2
|
|
3281
3398
|
class GetApiMappingsResponse < Struct.new(
|
3282
3399
|
:items,
|
3283
3400
|
:next_token)
|
3401
|
+
SENSITIVE = []
|
3284
3402
|
include Aws::Structure
|
3285
3403
|
end
|
3286
3404
|
|
@@ -3296,12 +3414,16 @@ module Aws::ApiGatewayV2
|
|
3296
3414
|
#
|
3297
3415
|
class GetApiRequest < Struct.new(
|
3298
3416
|
:api_id)
|
3417
|
+
SENSITIVE = []
|
3299
3418
|
include Aws::Structure
|
3300
3419
|
end
|
3301
3420
|
|
3302
3421
|
# @!attribute [rw] api_endpoint
|
3303
3422
|
# @return [String]
|
3304
3423
|
#
|
3424
|
+
# @!attribute [rw] api_gateway_managed
|
3425
|
+
# @return [Boolean]
|
3426
|
+
#
|
3305
3427
|
# @!attribute [rw] api_id
|
3306
3428
|
# The identifier.
|
3307
3429
|
# @return [String]
|
@@ -3367,6 +3489,7 @@ module Aws::ApiGatewayV2
|
|
3367
3489
|
#
|
3368
3490
|
class GetApiResponse < Struct.new(
|
3369
3491
|
:api_endpoint,
|
3492
|
+
:api_gateway_managed,
|
3370
3493
|
:api_id,
|
3371
3494
|
:api_key_selection_expression,
|
3372
3495
|
:cors_configuration,
|
@@ -3380,6 +3503,7 @@ module Aws::ApiGatewayV2
|
|
3380
3503
|
:tags,
|
3381
3504
|
:version,
|
3382
3505
|
:warnings)
|
3506
|
+
SENSITIVE = []
|
3383
3507
|
include Aws::Structure
|
3384
3508
|
end
|
3385
3509
|
|
@@ -3400,6 +3524,7 @@ module Aws::ApiGatewayV2
|
|
3400
3524
|
class GetApisRequest < Struct.new(
|
3401
3525
|
:max_results,
|
3402
3526
|
:next_token)
|
3527
|
+
SENSITIVE = []
|
3403
3528
|
include Aws::Structure
|
3404
3529
|
end
|
3405
3530
|
|
@@ -3414,6 +3539,7 @@ module Aws::ApiGatewayV2
|
|
3414
3539
|
class GetApisResponse < Struct.new(
|
3415
3540
|
:items,
|
3416
3541
|
:next_token)
|
3542
|
+
SENSITIVE = []
|
3417
3543
|
include Aws::Structure
|
3418
3544
|
end
|
3419
3545
|
|
@@ -3434,6 +3560,7 @@ module Aws::ApiGatewayV2
|
|
3434
3560
|
class GetAuthorizerRequest < Struct.new(
|
3435
3561
|
:api_id,
|
3436
3562
|
:authorizer_id)
|
3563
|
+
SENSITIVE = []
|
3437
3564
|
include Aws::Structure
|
3438
3565
|
end
|
3439
3566
|
|
@@ -3501,6 +3628,7 @@ module Aws::ApiGatewayV2
|
|
3501
3628
|
:identity_validation_expression,
|
3502
3629
|
:jwt_configuration,
|
3503
3630
|
:name)
|
3631
|
+
SENSITIVE = []
|
3504
3632
|
include Aws::Structure
|
3505
3633
|
end
|
3506
3634
|
|
@@ -3526,6 +3654,7 @@ module Aws::ApiGatewayV2
|
|
3526
3654
|
:api_id,
|
3527
3655
|
:max_results,
|
3528
3656
|
:next_token)
|
3657
|
+
SENSITIVE = []
|
3529
3658
|
include Aws::Structure
|
3530
3659
|
end
|
3531
3660
|
|
@@ -3540,6 +3669,7 @@ module Aws::ApiGatewayV2
|
|
3540
3669
|
class GetAuthorizersResponse < Struct.new(
|
3541
3670
|
:items,
|
3542
3671
|
:next_token)
|
3672
|
+
SENSITIVE = []
|
3543
3673
|
include Aws::Structure
|
3544
3674
|
end
|
3545
3675
|
|
@@ -3560,6 +3690,7 @@ module Aws::ApiGatewayV2
|
|
3560
3690
|
class GetDeploymentRequest < Struct.new(
|
3561
3691
|
:api_id,
|
3562
3692
|
:deployment_id)
|
3693
|
+
SENSITIVE = []
|
3563
3694
|
include Aws::Structure
|
3564
3695
|
end
|
3565
3696
|
|
@@ -3591,6 +3722,7 @@ module Aws::ApiGatewayV2
|
|
3591
3722
|
:deployment_status,
|
3592
3723
|
:deployment_status_message,
|
3593
3724
|
:description)
|
3725
|
+
SENSITIVE = []
|
3594
3726
|
include Aws::Structure
|
3595
3727
|
end
|
3596
3728
|
|
@@ -3616,6 +3748,7 @@ module Aws::ApiGatewayV2
|
|
3616
3748
|
:api_id,
|
3617
3749
|
:max_results,
|
3618
3750
|
:next_token)
|
3751
|
+
SENSITIVE = []
|
3619
3752
|
include Aws::Structure
|
3620
3753
|
end
|
3621
3754
|
|
@@ -3630,6 +3763,7 @@ module Aws::ApiGatewayV2
|
|
3630
3763
|
class GetDeploymentsResponse < Struct.new(
|
3631
3764
|
:items,
|
3632
3765
|
:next_token)
|
3766
|
+
SENSITIVE = []
|
3633
3767
|
include Aws::Structure
|
3634
3768
|
end
|
3635
3769
|
|
@@ -3645,6 +3779,7 @@ module Aws::ApiGatewayV2
|
|
3645
3779
|
#
|
3646
3780
|
class GetDomainNameRequest < Struct.new(
|
3647
3781
|
:domain_name)
|
3782
|
+
SENSITIVE = []
|
3648
3783
|
include Aws::Structure
|
3649
3784
|
end
|
3650
3785
|
|
@@ -3674,6 +3809,7 @@ module Aws::ApiGatewayV2
|
|
3674
3809
|
:domain_name,
|
3675
3810
|
:domain_name_configurations,
|
3676
3811
|
:tags)
|
3812
|
+
SENSITIVE = []
|
3677
3813
|
include Aws::Structure
|
3678
3814
|
end
|
3679
3815
|
|
@@ -3694,6 +3830,7 @@ module Aws::ApiGatewayV2
|
|
3694
3830
|
class GetDomainNamesRequest < Struct.new(
|
3695
3831
|
:max_results,
|
3696
3832
|
:next_token)
|
3833
|
+
SENSITIVE = []
|
3697
3834
|
include Aws::Structure
|
3698
3835
|
end
|
3699
3836
|
|
@@ -3708,6 +3845,7 @@ module Aws::ApiGatewayV2
|
|
3708
3845
|
class GetDomainNamesResponse < Struct.new(
|
3709
3846
|
:items,
|
3710
3847
|
:next_token)
|
3848
|
+
SENSITIVE = []
|
3711
3849
|
include Aws::Structure
|
3712
3850
|
end
|
3713
3851
|
|
@@ -3728,6 +3866,7 @@ module Aws::ApiGatewayV2
|
|
3728
3866
|
class GetIntegrationRequest < Struct.new(
|
3729
3867
|
:api_id,
|
3730
3868
|
:integration_id)
|
3869
|
+
SENSITIVE = []
|
3731
3870
|
include Aws::Structure
|
3732
3871
|
end
|
3733
3872
|
|
@@ -3772,6 +3911,10 @@ module Aws::ApiGatewayV2
|
|
3772
3911
|
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions
|
3773
3912
|
# @return [String]
|
3774
3913
|
#
|
3914
|
+
# @!attribute [rw] integration_subtype
|
3915
|
+
# A string with a length between \[1-128\].
|
3916
|
+
# @return [String]
|
3917
|
+
#
|
3775
3918
|
# @!attribute [rw] integration_type
|
3776
3919
|
# Represents an API method integration type.
|
3777
3920
|
# @return [String]
|
@@ -3839,6 +3982,7 @@ module Aws::ApiGatewayV2
|
|
3839
3982
|
:integration_id,
|
3840
3983
|
:integration_method,
|
3841
3984
|
:integration_response_selection_expression,
|
3985
|
+
:integration_subtype,
|
3842
3986
|
:integration_type,
|
3843
3987
|
:integration_uri,
|
3844
3988
|
:passthrough_behavior,
|
@@ -3848,6 +3992,7 @@ module Aws::ApiGatewayV2
|
|
3848
3992
|
:template_selection_expression,
|
3849
3993
|
:timeout_in_millis,
|
3850
3994
|
:tls_config)
|
3995
|
+
SENSITIVE = []
|
3851
3996
|
include Aws::Structure
|
3852
3997
|
end
|
3853
3998
|
|
@@ -3873,6 +4018,7 @@ module Aws::ApiGatewayV2
|
|
3873
4018
|
:api_id,
|
3874
4019
|
:integration_id,
|
3875
4020
|
:integration_response_id)
|
4021
|
+
SENSITIVE = []
|
3876
4022
|
include Aws::Structure
|
3877
4023
|
end
|
3878
4024
|
|
@@ -3933,6 +4079,7 @@ module Aws::ApiGatewayV2
|
|
3933
4079
|
:response_parameters,
|
3934
4080
|
:response_templates,
|
3935
4081
|
:template_selection_expression)
|
4082
|
+
SENSITIVE = []
|
3936
4083
|
include Aws::Structure
|
3937
4084
|
end
|
3938
4085
|
|
@@ -3963,6 +4110,7 @@ module Aws::ApiGatewayV2
|
|
3963
4110
|
:integration_id,
|
3964
4111
|
:max_results,
|
3965
4112
|
:next_token)
|
4113
|
+
SENSITIVE = []
|
3966
4114
|
include Aws::Structure
|
3967
4115
|
end
|
3968
4116
|
|
@@ -3977,6 +4125,7 @@ module Aws::ApiGatewayV2
|
|
3977
4125
|
class GetIntegrationResponsesResponse < Struct.new(
|
3978
4126
|
:items,
|
3979
4127
|
:next_token)
|
4128
|
+
SENSITIVE = []
|
3980
4129
|
include Aws::Structure
|
3981
4130
|
end
|
3982
4131
|
|
@@ -4002,6 +4151,7 @@ module Aws::ApiGatewayV2
|
|
4002
4151
|
:api_id,
|
4003
4152
|
:max_results,
|
4004
4153
|
:next_token)
|
4154
|
+
SENSITIVE = []
|
4005
4155
|
include Aws::Structure
|
4006
4156
|
end
|
4007
4157
|
|
@@ -4016,6 +4166,7 @@ module Aws::ApiGatewayV2
|
|
4016
4166
|
class GetIntegrationsResponse < Struct.new(
|
4017
4167
|
:items,
|
4018
4168
|
:next_token)
|
4169
|
+
SENSITIVE = []
|
4019
4170
|
include Aws::Structure
|
4020
4171
|
end
|
4021
4172
|
|
@@ -4036,6 +4187,7 @@ module Aws::ApiGatewayV2
|
|
4036
4187
|
class GetModelRequest < Struct.new(
|
4037
4188
|
:api_id,
|
4038
4189
|
:model_id)
|
4190
|
+
SENSITIVE = []
|
4039
4191
|
include Aws::Structure
|
4040
4192
|
end
|
4041
4193
|
|
@@ -4065,6 +4217,7 @@ module Aws::ApiGatewayV2
|
|
4065
4217
|
:model_id,
|
4066
4218
|
:name,
|
4067
4219
|
:schema)
|
4220
|
+
SENSITIVE = []
|
4068
4221
|
include Aws::Structure
|
4069
4222
|
end
|
4070
4223
|
|
@@ -4085,6 +4238,7 @@ module Aws::ApiGatewayV2
|
|
4085
4238
|
class GetModelTemplateRequest < Struct.new(
|
4086
4239
|
:api_id,
|
4087
4240
|
:model_id)
|
4241
|
+
SENSITIVE = []
|
4088
4242
|
include Aws::Structure
|
4089
4243
|
end
|
4090
4244
|
|
@@ -4093,6 +4247,7 @@ module Aws::ApiGatewayV2
|
|
4093
4247
|
#
|
4094
4248
|
class GetModelTemplateResponse < Struct.new(
|
4095
4249
|
:value)
|
4250
|
+
SENSITIVE = []
|
4096
4251
|
include Aws::Structure
|
4097
4252
|
end
|
4098
4253
|
|
@@ -4118,6 +4273,7 @@ module Aws::ApiGatewayV2
|
|
4118
4273
|
:api_id,
|
4119
4274
|
:max_results,
|
4120
4275
|
:next_token)
|
4276
|
+
SENSITIVE = []
|
4121
4277
|
include Aws::Structure
|
4122
4278
|
end
|
4123
4279
|
|
@@ -4132,6 +4288,7 @@ module Aws::ApiGatewayV2
|
|
4132
4288
|
class GetModelsResponse < Struct.new(
|
4133
4289
|
:items,
|
4134
4290
|
:next_token)
|
4291
|
+
SENSITIVE = []
|
4135
4292
|
include Aws::Structure
|
4136
4293
|
end
|
4137
4294
|
|
@@ -4152,6 +4309,7 @@ module Aws::ApiGatewayV2
|
|
4152
4309
|
class GetRouteRequest < Struct.new(
|
4153
4310
|
:api_id,
|
4154
4311
|
:route_id)
|
4312
|
+
SENSITIVE = []
|
4155
4313
|
include Aws::Structure
|
4156
4314
|
end
|
4157
4315
|
|
@@ -4247,6 +4405,7 @@ module Aws::ApiGatewayV2
|
|
4247
4405
|
:route_key,
|
4248
4406
|
:route_response_selection_expression,
|
4249
4407
|
:target)
|
4408
|
+
SENSITIVE = []
|
4250
4409
|
include Aws::Structure
|
4251
4410
|
end
|
4252
4411
|
|
@@ -4272,6 +4431,7 @@ module Aws::ApiGatewayV2
|
|
4272
4431
|
:api_id,
|
4273
4432
|
:route_id,
|
4274
4433
|
:route_response_id)
|
4434
|
+
SENSITIVE = []
|
4275
4435
|
include Aws::Structure
|
4276
4436
|
end
|
4277
4437
|
|
@@ -4313,6 +4473,7 @@ module Aws::ApiGatewayV2
|
|
4313
4473
|
:response_parameters,
|
4314
4474
|
:route_response_id,
|
4315
4475
|
:route_response_key)
|
4476
|
+
SENSITIVE = []
|
4316
4477
|
include Aws::Structure
|
4317
4478
|
end
|
4318
4479
|
|
@@ -4343,6 +4504,7 @@ module Aws::ApiGatewayV2
|
|
4343
4504
|
:max_results,
|
4344
4505
|
:next_token,
|
4345
4506
|
:route_id)
|
4507
|
+
SENSITIVE = []
|
4346
4508
|
include Aws::Structure
|
4347
4509
|
end
|
4348
4510
|
|
@@ -4357,6 +4519,7 @@ module Aws::ApiGatewayV2
|
|
4357
4519
|
class GetRouteResponsesResponse < Struct.new(
|
4358
4520
|
:items,
|
4359
4521
|
:next_token)
|
4522
|
+
SENSITIVE = []
|
4360
4523
|
include Aws::Structure
|
4361
4524
|
end
|
4362
4525
|
|
@@ -4382,6 +4545,7 @@ module Aws::ApiGatewayV2
|
|
4382
4545
|
:api_id,
|
4383
4546
|
:max_results,
|
4384
4547
|
:next_token)
|
4548
|
+
SENSITIVE = []
|
4385
4549
|
include Aws::Structure
|
4386
4550
|
end
|
4387
4551
|
|
@@ -4396,6 +4560,7 @@ module Aws::ApiGatewayV2
|
|
4396
4560
|
class GetRoutesResponse < Struct.new(
|
4397
4561
|
:items,
|
4398
4562
|
:next_token)
|
4563
|
+
SENSITIVE = []
|
4399
4564
|
include Aws::Structure
|
4400
4565
|
end
|
4401
4566
|
|
@@ -4416,6 +4581,7 @@ module Aws::ApiGatewayV2
|
|
4416
4581
|
class GetStageRequest < Struct.new(
|
4417
4582
|
:api_id,
|
4418
4583
|
:stage_name)
|
4584
|
+
SENSITIVE = []
|
4419
4585
|
include Aws::Structure
|
4420
4586
|
end
|
4421
4587
|
|
@@ -4485,6 +4651,7 @@ module Aws::ApiGatewayV2
|
|
4485
4651
|
:stage_name,
|
4486
4652
|
:stage_variables,
|
4487
4653
|
:tags)
|
4654
|
+
SENSITIVE = []
|
4488
4655
|
include Aws::Structure
|
4489
4656
|
end
|
4490
4657
|
|
@@ -4510,6 +4677,7 @@ module Aws::ApiGatewayV2
|
|
4510
4677
|
:api_id,
|
4511
4678
|
:max_results,
|
4512
4679
|
:next_token)
|
4680
|
+
SENSITIVE = []
|
4513
4681
|
include Aws::Structure
|
4514
4682
|
end
|
4515
4683
|
|
@@ -4524,6 +4692,7 @@ module Aws::ApiGatewayV2
|
|
4524
4692
|
class GetStagesResponse < Struct.new(
|
4525
4693
|
:items,
|
4526
4694
|
:next_token)
|
4695
|
+
SENSITIVE = []
|
4527
4696
|
include Aws::Structure
|
4528
4697
|
end
|
4529
4698
|
|
@@ -4539,6 +4708,7 @@ module Aws::ApiGatewayV2
|
|
4539
4708
|
#
|
4540
4709
|
class GetTagsRequest < Struct.new(
|
4541
4710
|
:resource_arn)
|
4711
|
+
SENSITIVE = []
|
4542
4712
|
include Aws::Structure
|
4543
4713
|
end
|
4544
4714
|
|
@@ -4548,6 +4718,7 @@ module Aws::ApiGatewayV2
|
|
4548
4718
|
#
|
4549
4719
|
class GetTagsResponse < Struct.new(
|
4550
4720
|
:tags)
|
4721
|
+
SENSITIVE = []
|
4551
4722
|
include Aws::Structure
|
4552
4723
|
end
|
4553
4724
|
|
@@ -4563,6 +4734,7 @@ module Aws::ApiGatewayV2
|
|
4563
4734
|
#
|
4564
4735
|
class GetVpcLinkRequest < Struct.new(
|
4565
4736
|
:vpc_link_id)
|
4737
|
+
SENSITIVE = []
|
4566
4738
|
include Aws::Structure
|
4567
4739
|
end
|
4568
4740
|
|
@@ -4611,6 +4783,7 @@ module Aws::ApiGatewayV2
|
|
4611
4783
|
:vpc_link_status,
|
4612
4784
|
:vpc_link_status_message,
|
4613
4785
|
:vpc_link_version)
|
4786
|
+
SENSITIVE = []
|
4614
4787
|
include Aws::Structure
|
4615
4788
|
end
|
4616
4789
|
|
@@ -4631,6 +4804,7 @@ module Aws::ApiGatewayV2
|
|
4631
4804
|
class GetVpcLinksRequest < Struct.new(
|
4632
4805
|
:max_results,
|
4633
4806
|
:next_token)
|
4807
|
+
SENSITIVE = []
|
4634
4808
|
include Aws::Structure
|
4635
4809
|
end
|
4636
4810
|
|
@@ -4645,6 +4819,7 @@ module Aws::ApiGatewayV2
|
|
4645
4819
|
class GetVpcLinksResponse < Struct.new(
|
4646
4820
|
:items,
|
4647
4821
|
:next_token)
|
4822
|
+
SENSITIVE = []
|
4648
4823
|
include Aws::Structure
|
4649
4824
|
end
|
4650
4825
|
|
@@ -4656,6 +4831,7 @@ module Aws::ApiGatewayV2
|
|
4656
4831
|
#
|
4657
4832
|
class ImportApiInput < Struct.new(
|
4658
4833
|
:body)
|
4834
|
+
SENSITIVE = []
|
4659
4835
|
include Aws::Structure
|
4660
4836
|
end
|
4661
4837
|
|
@@ -4681,12 +4857,16 @@ module Aws::ApiGatewayV2
|
|
4681
4857
|
:basepath,
|
4682
4858
|
:body,
|
4683
4859
|
:fail_on_warnings)
|
4860
|
+
SENSITIVE = []
|
4684
4861
|
include Aws::Structure
|
4685
4862
|
end
|
4686
4863
|
|
4687
4864
|
# @!attribute [rw] api_endpoint
|
4688
4865
|
# @return [String]
|
4689
4866
|
#
|
4867
|
+
# @!attribute [rw] api_gateway_managed
|
4868
|
+
# @return [Boolean]
|
4869
|
+
#
|
4690
4870
|
# @!attribute [rw] api_id
|
4691
4871
|
# The identifier.
|
4692
4872
|
# @return [String]
|
@@ -4752,6 +4932,7 @@ module Aws::ApiGatewayV2
|
|
4752
4932
|
#
|
4753
4933
|
class ImportApiResponse < Struct.new(
|
4754
4934
|
:api_endpoint,
|
4935
|
+
:api_gateway_managed,
|
4755
4936
|
:api_id,
|
4756
4937
|
:api_key_selection_expression,
|
4757
4938
|
:cors_configuration,
|
@@ -4765,6 +4946,7 @@ module Aws::ApiGatewayV2
|
|
4765
4946
|
:tags,
|
4766
4947
|
:version,
|
4767
4948
|
:warnings)
|
4949
|
+
SENSITIVE = []
|
4768
4950
|
include Aws::Structure
|
4769
4951
|
end
|
4770
4952
|
|
@@ -4837,6 +5019,16 @@ module Aws::ApiGatewayV2
|
|
4837
5019
|
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-integration-response-selection-expressions
|
4838
5020
|
# @return [String]
|
4839
5021
|
#
|
5022
|
+
# @!attribute [rw] integration_subtype
|
5023
|
+
# Supported only for HTTP API AWS\_PROXY integrations. Specifies the
|
5024
|
+
# AWS service action to invoke. To learn more, see [Integration
|
5025
|
+
# subtype reference][1].
|
5026
|
+
#
|
5027
|
+
#
|
5028
|
+
#
|
5029
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services-reference.html
|
5030
|
+
# @return [String]
|
5031
|
+
#
|
4840
5032
|
# @!attribute [rw] integration_type
|
4841
5033
|
# The integration type of an integration. One of the following:
|
4842
5034
|
#
|
@@ -4846,10 +5038,9 @@ module Aws::ApiGatewayV2
|
|
4846
5038
|
# custom integration. With any other AWS service action, this is known
|
4847
5039
|
# as AWS integration. Supported only for WebSocket APIs.
|
4848
5040
|
#
|
4849
|
-
# AWS\_PROXY: for integrating the route or method request with
|
4850
|
-
# Lambda function
|
4851
|
-
#
|
4852
|
-
# integration.
|
5041
|
+
# AWS\_PROXY: for integrating the route or method request with a
|
5042
|
+
# Lambda function or other AWS service action. This integration is
|
5043
|
+
# also referred to as a Lambda proxy integration.
|
4853
5044
|
#
|
4854
5045
|
# HTTP: for integrating the route or method request with an HTTP
|
4855
5046
|
# endpoint. This integration is also referred to as the HTTP custom
|
@@ -4907,16 +5098,26 @@ module Aws::ApiGatewayV2
|
|
4907
5098
|
# @return [String]
|
4908
5099
|
#
|
4909
5100
|
# @!attribute [rw] request_parameters
|
4910
|
-
#
|
4911
|
-
# the method request to the backend. The key is
|
4912
|
-
# parameter name and the associated value is a
|
4913
|
-
# parameter value or static value that must be enclosed
|
4914
|
-
# quotes and pre-encoded as required by the backend. The
|
4915
|
-
# request parameter value must match the pattern of
|
5101
|
+
# For WebSocket APIs, a key-value map specifying request parameters
|
5102
|
+
# that are passed from the method request to the backend. The key is
|
5103
|
+
# an integration request parameter name and the associated value is a
|
5104
|
+
# method request parameter value or static value that must be enclosed
|
5105
|
+
# within single quotes and pre-encoded as required by the backend. The
|
5106
|
+
# method request parameter value must match the pattern of
|
4916
5107
|
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
4917
5108
|
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
4918
|
-
# must be a valid and unique method request parameter name.
|
4919
|
-
#
|
5109
|
+
# must be a valid and unique method request parameter name.
|
5110
|
+
#
|
5111
|
+
# For HTTP APIs, request parameters are a key-value map specifying
|
5112
|
+
# parameters that are passed to AWS\_PROXY integrations with a
|
5113
|
+
# specified integrationSubtype. You can provide static values, or map
|
5114
|
+
# request data, stage variables, or context variables that are
|
5115
|
+
# evaluated at runtime. To learn more, see [Working with AWS service
|
5116
|
+
# integrations for HTTP APIs][1].
|
5117
|
+
#
|
5118
|
+
#
|
5119
|
+
#
|
5120
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services.html
|
4920
5121
|
# @return [Hash<String,String>]
|
4921
5122
|
#
|
4922
5123
|
# @!attribute [rw] request_templates
|
@@ -4955,6 +5156,7 @@ module Aws::ApiGatewayV2
|
|
4955
5156
|
:integration_id,
|
4956
5157
|
:integration_method,
|
4957
5158
|
:integration_response_selection_expression,
|
5159
|
+
:integration_subtype,
|
4958
5160
|
:integration_type,
|
4959
5161
|
:integration_uri,
|
4960
5162
|
:passthrough_behavior,
|
@@ -4964,6 +5166,7 @@ module Aws::ApiGatewayV2
|
|
4964
5166
|
:template_selection_expression,
|
4965
5167
|
:timeout_in_millis,
|
4966
5168
|
:tls_config)
|
5169
|
+
SENSITIVE = []
|
4967
5170
|
include Aws::Structure
|
4968
5171
|
end
|
4969
5172
|
|
@@ -5027,6 +5230,7 @@ module Aws::ApiGatewayV2
|
|
5027
5230
|
:response_parameters,
|
5028
5231
|
:response_templates,
|
5029
5232
|
:template_selection_expression)
|
5233
|
+
SENSITIVE = []
|
5030
5234
|
include Aws::Structure
|
5031
5235
|
end
|
5032
5236
|
|
@@ -5044,6 +5248,7 @@ module Aws::ApiGatewayV2
|
|
5044
5248
|
class IntegrationResponses < Struct.new(
|
5045
5249
|
:items,
|
5046
5250
|
:next_token)
|
5251
|
+
SENSITIVE = []
|
5047
5252
|
include Aws::Structure
|
5048
5253
|
end
|
5049
5254
|
|
@@ -5061,6 +5266,7 @@ module Aws::ApiGatewayV2
|
|
5061
5266
|
class Integrations < Struct.new(
|
5062
5267
|
:items,
|
5063
5268
|
:next_token)
|
5269
|
+
SENSITIVE = []
|
5064
5270
|
include Aws::Structure
|
5065
5271
|
end
|
5066
5272
|
|
@@ -5097,6 +5303,7 @@ module Aws::ApiGatewayV2
|
|
5097
5303
|
class JWTConfiguration < Struct.new(
|
5098
5304
|
:audience,
|
5099
5305
|
:issuer)
|
5306
|
+
SENSITIVE = []
|
5100
5307
|
include Aws::Structure
|
5101
5308
|
end
|
5102
5309
|
|
@@ -5114,6 +5321,7 @@ module Aws::ApiGatewayV2
|
|
5114
5321
|
class LimitExceededException < Struct.new(
|
5115
5322
|
:limit_type,
|
5116
5323
|
:message)
|
5324
|
+
SENSITIVE = []
|
5117
5325
|
include Aws::Structure
|
5118
5326
|
end
|
5119
5327
|
|
@@ -5152,6 +5360,7 @@ module Aws::ApiGatewayV2
|
|
5152
5360
|
:model_id,
|
5153
5361
|
:name,
|
5154
5362
|
:schema)
|
5363
|
+
SENSITIVE = []
|
5155
5364
|
include Aws::Structure
|
5156
5365
|
end
|
5157
5366
|
|
@@ -5174,6 +5383,7 @@ module Aws::ApiGatewayV2
|
|
5174
5383
|
class Models < Struct.new(
|
5175
5384
|
:items,
|
5176
5385
|
:next_token)
|
5386
|
+
SENSITIVE = []
|
5177
5387
|
include Aws::Structure
|
5178
5388
|
end
|
5179
5389
|
|
@@ -5191,6 +5401,7 @@ module Aws::ApiGatewayV2
|
|
5191
5401
|
class NotFoundException < Struct.new(
|
5192
5402
|
:message,
|
5193
5403
|
:resource_type)
|
5404
|
+
SENSITIVE = []
|
5194
5405
|
include Aws::Structure
|
5195
5406
|
end
|
5196
5407
|
|
@@ -5210,6 +5421,7 @@ module Aws::ApiGatewayV2
|
|
5210
5421
|
#
|
5211
5422
|
class ParameterConstraints < Struct.new(
|
5212
5423
|
:required)
|
5424
|
+
SENSITIVE = []
|
5213
5425
|
include Aws::Structure
|
5214
5426
|
end
|
5215
5427
|
|
@@ -5222,6 +5434,7 @@ module Aws::ApiGatewayV2
|
|
5222
5434
|
#
|
5223
5435
|
class ReimportApiInput < Struct.new(
|
5224
5436
|
:body)
|
5437
|
+
SENSITIVE = []
|
5225
5438
|
include Aws::Structure
|
5226
5439
|
end
|
5227
5440
|
|
@@ -5252,12 +5465,16 @@ module Aws::ApiGatewayV2
|
|
5252
5465
|
:basepath,
|
5253
5466
|
:body,
|
5254
5467
|
:fail_on_warnings)
|
5468
|
+
SENSITIVE = []
|
5255
5469
|
include Aws::Structure
|
5256
5470
|
end
|
5257
5471
|
|
5258
5472
|
# @!attribute [rw] api_endpoint
|
5259
5473
|
# @return [String]
|
5260
5474
|
#
|
5475
|
+
# @!attribute [rw] api_gateway_managed
|
5476
|
+
# @return [Boolean]
|
5477
|
+
#
|
5261
5478
|
# @!attribute [rw] api_id
|
5262
5479
|
# The identifier.
|
5263
5480
|
# @return [String]
|
@@ -5323,6 +5540,7 @@ module Aws::ApiGatewayV2
|
|
5323
5540
|
#
|
5324
5541
|
class ReimportApiResponse < Struct.new(
|
5325
5542
|
:api_endpoint,
|
5543
|
+
:api_gateway_managed,
|
5326
5544
|
:api_id,
|
5327
5545
|
:api_key_selection_expression,
|
5328
5546
|
:cors_configuration,
|
@@ -5336,6 +5554,7 @@ module Aws::ApiGatewayV2
|
|
5336
5554
|
:tags,
|
5337
5555
|
:version,
|
5338
5556
|
:warnings)
|
5557
|
+
SENSITIVE = []
|
5339
5558
|
include Aws::Structure
|
5340
5559
|
end
|
5341
5560
|
|
@@ -5427,6 +5646,7 @@ module Aws::ApiGatewayV2
|
|
5427
5646
|
:route_key,
|
5428
5647
|
:route_response_selection_expression,
|
5429
5648
|
:target)
|
5649
|
+
SENSITIVE = []
|
5430
5650
|
include Aws::Structure
|
5431
5651
|
end
|
5432
5652
|
|
@@ -5459,6 +5679,7 @@ module Aws::ApiGatewayV2
|
|
5459
5679
|
:response_parameters,
|
5460
5680
|
:route_response_id,
|
5461
5681
|
:route_response_key)
|
5682
|
+
SENSITIVE = []
|
5462
5683
|
include Aws::Structure
|
5463
5684
|
end
|
5464
5685
|
|
@@ -5476,6 +5697,7 @@ module Aws::ApiGatewayV2
|
|
5476
5697
|
class RouteResponses < Struct.new(
|
5477
5698
|
:items,
|
5478
5699
|
:next_token)
|
5700
|
+
SENSITIVE = []
|
5479
5701
|
include Aws::Structure
|
5480
5702
|
end
|
5481
5703
|
|
@@ -5522,6 +5744,7 @@ module Aws::ApiGatewayV2
|
|
5522
5744
|
:logging_level,
|
5523
5745
|
:throttling_burst_limit,
|
5524
5746
|
:throttling_rate_limit)
|
5747
|
+
SENSITIVE = []
|
5525
5748
|
include Aws::Structure
|
5526
5749
|
end
|
5527
5750
|
|
@@ -5539,6 +5762,7 @@ module Aws::ApiGatewayV2
|
|
5539
5762
|
class Routes < Struct.new(
|
5540
5763
|
:items,
|
5541
5764
|
:next_token)
|
5765
|
+
SENSITIVE = []
|
5542
5766
|
include Aws::Structure
|
5543
5767
|
end
|
5544
5768
|
|
@@ -5624,6 +5848,7 @@ module Aws::ApiGatewayV2
|
|
5624
5848
|
:stage_name,
|
5625
5849
|
:stage_variables,
|
5626
5850
|
:tags)
|
5851
|
+
SENSITIVE = []
|
5627
5852
|
include Aws::Structure
|
5628
5853
|
end
|
5629
5854
|
|
@@ -5642,6 +5867,7 @@ module Aws::ApiGatewayV2
|
|
5642
5867
|
class Stages < Struct.new(
|
5643
5868
|
:items,
|
5644
5869
|
:next_token)
|
5870
|
+
SENSITIVE = []
|
5645
5871
|
include Aws::Structure
|
5646
5872
|
end
|
5647
5873
|
|
@@ -5654,6 +5880,7 @@ module Aws::ApiGatewayV2
|
|
5654
5880
|
#
|
5655
5881
|
class TagResourceInput < Struct.new(
|
5656
5882
|
:tags)
|
5883
|
+
SENSITIVE = []
|
5657
5884
|
include Aws::Structure
|
5658
5885
|
end
|
5659
5886
|
|
@@ -5677,6 +5904,7 @@ module Aws::ApiGatewayV2
|
|
5677
5904
|
class TagResourceRequest < Struct.new(
|
5678
5905
|
:resource_arn,
|
5679
5906
|
:tags)
|
5907
|
+
SENSITIVE = []
|
5680
5908
|
include Aws::Structure
|
5681
5909
|
end
|
5682
5910
|
|
@@ -5690,6 +5918,7 @@ module Aws::ApiGatewayV2
|
|
5690
5918
|
#
|
5691
5919
|
class Template < Struct.new(
|
5692
5920
|
:value)
|
5921
|
+
SENSITIVE = []
|
5693
5922
|
include Aws::Structure
|
5694
5923
|
end
|
5695
5924
|
|
@@ -5706,6 +5935,7 @@ module Aws::ApiGatewayV2
|
|
5706
5935
|
#
|
5707
5936
|
class TlsConfig < Struct.new(
|
5708
5937
|
:server_name_to_verify)
|
5938
|
+
SENSITIVE = []
|
5709
5939
|
include Aws::Structure
|
5710
5940
|
end
|
5711
5941
|
|
@@ -5729,6 +5959,7 @@ module Aws::ApiGatewayV2
|
|
5729
5959
|
#
|
5730
5960
|
class TlsConfigInput < Struct.new(
|
5731
5961
|
:server_name_to_verify)
|
5962
|
+
SENSITIVE = []
|
5732
5963
|
include Aws::Structure
|
5733
5964
|
end
|
5734
5965
|
|
@@ -5744,6 +5975,7 @@ module Aws::ApiGatewayV2
|
|
5744
5975
|
class TooManyRequestsException < Struct.new(
|
5745
5976
|
:limit_type,
|
5746
5977
|
:message)
|
5978
|
+
SENSITIVE = []
|
5747
5979
|
include Aws::Structure
|
5748
5980
|
end
|
5749
5981
|
|
@@ -5764,6 +5996,7 @@ module Aws::ApiGatewayV2
|
|
5764
5996
|
class UntagResourceRequest < Struct.new(
|
5765
5997
|
:resource_arn,
|
5766
5998
|
:tag_keys)
|
5999
|
+
SENSITIVE = []
|
5767
6000
|
include Aws::Structure
|
5768
6001
|
end
|
5769
6002
|
|
@@ -5846,6 +6079,7 @@ module Aws::ApiGatewayV2
|
|
5846
6079
|
:route_selection_expression,
|
5847
6080
|
:target,
|
5848
6081
|
:version)
|
6082
|
+
SENSITIVE = []
|
5849
6083
|
include Aws::Structure
|
5850
6084
|
end
|
5851
6085
|
|
@@ -5867,6 +6101,7 @@ module Aws::ApiGatewayV2
|
|
5867
6101
|
:api_id,
|
5868
6102
|
:api_mapping_key,
|
5869
6103
|
:stage)
|
6104
|
+
SENSITIVE = []
|
5870
6105
|
include Aws::Structure
|
5871
6106
|
end
|
5872
6107
|
|
@@ -5912,6 +6147,7 @@ module Aws::ApiGatewayV2
|
|
5912
6147
|
:api_mapping_key,
|
5913
6148
|
:domain_name,
|
5914
6149
|
:stage)
|
6150
|
+
SENSITIVE = []
|
5915
6151
|
include Aws::Structure
|
5916
6152
|
end
|
5917
6153
|
|
@@ -5943,6 +6179,7 @@ module Aws::ApiGatewayV2
|
|
5943
6179
|
:api_mapping_id,
|
5944
6180
|
:api_mapping_key,
|
5945
6181
|
:stage)
|
6182
|
+
SENSITIVE = []
|
5946
6183
|
include Aws::Structure
|
5947
6184
|
end
|
5948
6185
|
|
@@ -6046,12 +6283,16 @@ module Aws::ApiGatewayV2
|
|
6046
6283
|
:route_selection_expression,
|
6047
6284
|
:target,
|
6048
6285
|
:version)
|
6286
|
+
SENSITIVE = []
|
6049
6287
|
include Aws::Structure
|
6050
6288
|
end
|
6051
6289
|
|
6052
6290
|
# @!attribute [rw] api_endpoint
|
6053
6291
|
# @return [String]
|
6054
6292
|
#
|
6293
|
+
# @!attribute [rw] api_gateway_managed
|
6294
|
+
# @return [Boolean]
|
6295
|
+
#
|
6055
6296
|
# @!attribute [rw] api_id
|
6056
6297
|
# The identifier.
|
6057
6298
|
# @return [String]
|
@@ -6117,6 +6358,7 @@ module Aws::ApiGatewayV2
|
|
6117
6358
|
#
|
6118
6359
|
class UpdateApiResponse < Struct.new(
|
6119
6360
|
:api_endpoint,
|
6361
|
+
:api_gateway_managed,
|
6120
6362
|
:api_id,
|
6121
6363
|
:api_key_selection_expression,
|
6122
6364
|
:cors_configuration,
|
@@ -6130,6 +6372,7 @@ module Aws::ApiGatewayV2
|
|
6130
6372
|
:tags,
|
6131
6373
|
:version,
|
6132
6374
|
:warnings)
|
6375
|
+
SENSITIVE = []
|
6133
6376
|
include Aws::Structure
|
6134
6377
|
end
|
6135
6378
|
|
@@ -6215,6 +6458,7 @@ module Aws::ApiGatewayV2
|
|
6215
6458
|
:identity_validation_expression,
|
6216
6459
|
:jwt_configuration,
|
6217
6460
|
:name)
|
6461
|
+
SENSITIVE = []
|
6218
6462
|
include Aws::Structure
|
6219
6463
|
end
|
6220
6464
|
|
@@ -6304,6 +6548,7 @@ module Aws::ApiGatewayV2
|
|
6304
6548
|
:identity_validation_expression,
|
6305
6549
|
:jwt_configuration,
|
6306
6550
|
:name)
|
6551
|
+
SENSITIVE = []
|
6307
6552
|
include Aws::Structure
|
6308
6553
|
end
|
6309
6554
|
|
@@ -6371,6 +6616,7 @@ module Aws::ApiGatewayV2
|
|
6371
6616
|
:identity_validation_expression,
|
6372
6617
|
:jwt_configuration,
|
6373
6618
|
:name)
|
6619
|
+
SENSITIVE = []
|
6374
6620
|
include Aws::Structure
|
6375
6621
|
end
|
6376
6622
|
|
@@ -6382,6 +6628,7 @@ module Aws::ApiGatewayV2
|
|
6382
6628
|
#
|
6383
6629
|
class UpdateDeploymentInput < Struct.new(
|
6384
6630
|
:description)
|
6631
|
+
SENSITIVE = []
|
6385
6632
|
include Aws::Structure
|
6386
6633
|
end
|
6387
6634
|
|
@@ -6408,6 +6655,7 @@ module Aws::ApiGatewayV2
|
|
6408
6655
|
:api_id,
|
6409
6656
|
:deployment_id,
|
6410
6657
|
:description)
|
6658
|
+
SENSITIVE = []
|
6411
6659
|
include Aws::Structure
|
6412
6660
|
end
|
6413
6661
|
|
@@ -6439,6 +6687,7 @@ module Aws::ApiGatewayV2
|
|
6439
6687
|
:deployment_status,
|
6440
6688
|
:deployment_status_message,
|
6441
6689
|
:description)
|
6690
|
+
SENSITIVE = []
|
6442
6691
|
include Aws::Structure
|
6443
6692
|
end
|
6444
6693
|
|
@@ -6450,6 +6699,7 @@ module Aws::ApiGatewayV2
|
|
6450
6699
|
#
|
6451
6700
|
class UpdateDomainNameInput < Struct.new(
|
6452
6701
|
:domain_name_configurations)
|
6702
|
+
SENSITIVE = []
|
6453
6703
|
include Aws::Structure
|
6454
6704
|
end
|
6455
6705
|
|
@@ -6483,6 +6733,7 @@ module Aws::ApiGatewayV2
|
|
6483
6733
|
class UpdateDomainNameRequest < Struct.new(
|
6484
6734
|
:domain_name,
|
6485
6735
|
:domain_name_configurations)
|
6736
|
+
SENSITIVE = []
|
6486
6737
|
include Aws::Structure
|
6487
6738
|
end
|
6488
6739
|
|
@@ -6512,6 +6763,7 @@ module Aws::ApiGatewayV2
|
|
6512
6763
|
:domain_name,
|
6513
6764
|
:domain_name_configurations,
|
6514
6765
|
:tags)
|
6766
|
+
SENSITIVE = []
|
6515
6767
|
include Aws::Structure
|
6516
6768
|
end
|
6517
6769
|
|
@@ -6563,6 +6815,16 @@ module Aws::ApiGatewayV2
|
|
6563
6815
|
# Specifies the integration's HTTP method type.
|
6564
6816
|
# @return [String]
|
6565
6817
|
#
|
6818
|
+
# @!attribute [rw] integration_subtype
|
6819
|
+
# Supported only for HTTP API AWS\_PROXY integrations. Specifies the
|
6820
|
+
# AWS service action to invoke. To learn more, see [Integration
|
6821
|
+
# subtype reference][1].
|
6822
|
+
#
|
6823
|
+
#
|
6824
|
+
#
|
6825
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services-reference.html
|
6826
|
+
# @return [String]
|
6827
|
+
#
|
6566
6828
|
# @!attribute [rw] integration_type
|
6567
6829
|
# The integration type of an integration. One of the following:
|
6568
6830
|
#
|
@@ -6572,10 +6834,9 @@ module Aws::ApiGatewayV2
|
|
6572
6834
|
# custom integration. With any other AWS service action, this is known
|
6573
6835
|
# as AWS integration. Supported only for WebSocket APIs.
|
6574
6836
|
#
|
6575
|
-
# AWS\_PROXY: for integrating the route or method request with
|
6576
|
-
# Lambda function
|
6577
|
-
#
|
6578
|
-
# integration.
|
6837
|
+
# AWS\_PROXY: for integrating the route or method request with a
|
6838
|
+
# Lambda function or other AWS service action. This integration is
|
6839
|
+
# also referred to as a Lambda proxy integration.
|
6579
6840
|
#
|
6580
6841
|
# HTTP: for integrating the route or method request with an HTTP
|
6581
6842
|
# endpoint. This integration is also referred to as the HTTP custom
|
@@ -6634,16 +6895,26 @@ module Aws::ApiGatewayV2
|
|
6634
6895
|
# @return [String]
|
6635
6896
|
#
|
6636
6897
|
# @!attribute [rw] request_parameters
|
6637
|
-
#
|
6638
|
-
# the method request to the backend. The key is
|
6639
|
-
# parameter name and the associated value is a
|
6640
|
-
# parameter value or static value that must be enclosed
|
6641
|
-
# quotes and pre-encoded as required by the backend. The
|
6642
|
-
# request parameter value must match the pattern of
|
6898
|
+
# For WebSocket APIs, a key-value map specifying request parameters
|
6899
|
+
# that are passed from the method request to the backend. The key is
|
6900
|
+
# an integration request parameter name and the associated value is a
|
6901
|
+
# method request parameter value or static value that must be enclosed
|
6902
|
+
# within single quotes and pre-encoded as required by the backend. The
|
6903
|
+
# method request parameter value must match the pattern of
|
6643
6904
|
# method.request.*\\\{location\\}*.*\\\{name\\}* , where
|
6644
6905
|
# *\\\{location\\}* is querystring, path, or header; and *\\\{name\\}*
|
6645
|
-
# must be a valid and unique method request parameter name.
|
6646
|
-
#
|
6906
|
+
# must be a valid and unique method request parameter name.
|
6907
|
+
#
|
6908
|
+
# For HTTP APIs, request parameters are a key-value map specifying
|
6909
|
+
# parameters that are passed to AWS\_PROXY integrations with a
|
6910
|
+
# specified integrationSubtype. You can provide static values, or map
|
6911
|
+
# request data, stage variables, or context variables that are
|
6912
|
+
# evaluated at runtime. To learn more, see [Working with AWS service
|
6913
|
+
# integrations for HTTP APIs][1].
|
6914
|
+
#
|
6915
|
+
#
|
6916
|
+
#
|
6917
|
+
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api-develop-integrations-aws-services.html
|
6647
6918
|
# @return [Hash<String,String>]
|
6648
6919
|
#
|
6649
6920
|
# @!attribute [rw] request_templates
|
@@ -6678,6 +6949,7 @@ module Aws::ApiGatewayV2
|
|
6678
6949
|
:credentials_arn,
|
6679
6950
|
:description,
|
6680
6951
|
:integration_method,
|
6952
|
+
:integration_subtype,
|
6681
6953
|
:integration_type,
|
6682
6954
|
:integration_uri,
|
6683
6955
|
:passthrough_behavior,
|
@@ -6687,6 +6959,7 @@ module Aws::ApiGatewayV2
|
|
6687
6959
|
:template_selection_expression,
|
6688
6960
|
:timeout_in_millis,
|
6689
6961
|
:tls_config)
|
6962
|
+
SENSITIVE = []
|
6690
6963
|
include Aws::Structure
|
6691
6964
|
end
|
6692
6965
|
|
@@ -6702,6 +6975,7 @@ module Aws::ApiGatewayV2
|
|
6702
6975
|
# description: "StringWithLengthBetween0And1024",
|
6703
6976
|
# integration_id: "__string", # required
|
6704
6977
|
# integration_method: "StringWithLengthBetween1And64",
|
6978
|
+
# integration_subtype: "StringWithLengthBetween1And128",
|
6705
6979
|
# integration_type: "AWS", # accepts AWS, HTTP, MOCK, HTTP_PROXY, AWS_PROXY
|
6706
6980
|
# integration_uri: "UriWithLengthBetween1And2048",
|
6707
6981
|
# passthrough_behavior: "WHEN_NO_MATCH", # accepts WHEN_NO_MATCH, NEVER, WHEN_NO_TEMPLATES
|
@@ -6750,6 +7024,10 @@ module Aws::ApiGatewayV2
|
|
6750
7024
|
# A string with a length between \[1-64\].
|
6751
7025
|
# @return [String]
|
6752
7026
|
#
|
7027
|
+
# @!attribute [rw] integration_subtype
|
7028
|
+
# A string with a length between \[1-128\].
|
7029
|
+
# @return [String]
|
7030
|
+
#
|
6753
7031
|
# @!attribute [rw] integration_type
|
6754
7032
|
# Represents an API method integration type.
|
6755
7033
|
# @return [String]
|
@@ -6816,6 +7094,7 @@ module Aws::ApiGatewayV2
|
|
6816
7094
|
:description,
|
6817
7095
|
:integration_id,
|
6818
7096
|
:integration_method,
|
7097
|
+
:integration_subtype,
|
6819
7098
|
:integration_type,
|
6820
7099
|
:integration_uri,
|
6821
7100
|
:passthrough_behavior,
|
@@ -6825,6 +7104,7 @@ module Aws::ApiGatewayV2
|
|
6825
7104
|
:template_selection_expression,
|
6826
7105
|
:timeout_in_millis,
|
6827
7106
|
:tls_config)
|
7107
|
+
SENSITIVE = []
|
6828
7108
|
include Aws::Structure
|
6829
7109
|
end
|
6830
7110
|
|
@@ -6869,6 +7149,10 @@ module Aws::ApiGatewayV2
|
|
6869
7149
|
# [1]: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-websocket-api-selection-expressions.html#apigateway-websocket-api-apikey-selection-expressions
|
6870
7150
|
# @return [String]
|
6871
7151
|
#
|
7152
|
+
# @!attribute [rw] integration_subtype
|
7153
|
+
# A string with a length between \[1-128\].
|
7154
|
+
# @return [String]
|
7155
|
+
#
|
6872
7156
|
# @!attribute [rw] integration_type
|
6873
7157
|
# Represents an API method integration type.
|
6874
7158
|
# @return [String]
|
@@ -6936,6 +7220,7 @@ module Aws::ApiGatewayV2
|
|
6936
7220
|
:integration_id,
|
6937
7221
|
:integration_method,
|
6938
7222
|
:integration_response_selection_expression,
|
7223
|
+
:integration_subtype,
|
6939
7224
|
:integration_type,
|
6940
7225
|
:integration_uri,
|
6941
7226
|
:passthrough_behavior,
|
@@ -6945,6 +7230,7 @@ module Aws::ApiGatewayV2
|
|
6945
7230
|
:template_selection_expression,
|
6946
7231
|
:timeout_in_millis,
|
6947
7232
|
:tls_config)
|
7233
|
+
SENSITIVE = []
|
6948
7234
|
include Aws::Structure
|
6949
7235
|
end
|
6950
7236
|
|
@@ -7006,6 +7292,7 @@ module Aws::ApiGatewayV2
|
|
7006
7292
|
:response_parameters,
|
7007
7293
|
:response_templates,
|
7008
7294
|
:template_selection_expression)
|
7295
|
+
SENSITIVE = []
|
7009
7296
|
include Aws::Structure
|
7010
7297
|
end
|
7011
7298
|
|
@@ -7091,6 +7378,7 @@ module Aws::ApiGatewayV2
|
|
7091
7378
|
:response_parameters,
|
7092
7379
|
:response_templates,
|
7093
7380
|
:template_selection_expression)
|
7381
|
+
SENSITIVE = []
|
7094
7382
|
include Aws::Structure
|
7095
7383
|
end
|
7096
7384
|
|
@@ -7151,6 +7439,7 @@ module Aws::ApiGatewayV2
|
|
7151
7439
|
:response_parameters,
|
7152
7440
|
:response_templates,
|
7153
7441
|
:template_selection_expression)
|
7442
|
+
SENSITIVE = []
|
7154
7443
|
include Aws::Structure
|
7155
7444
|
end
|
7156
7445
|
|
@@ -7179,6 +7468,7 @@ module Aws::ApiGatewayV2
|
|
7179
7468
|
:description,
|
7180
7469
|
:name,
|
7181
7470
|
:schema)
|
7471
|
+
SENSITIVE = []
|
7182
7472
|
include Aws::Structure
|
7183
7473
|
end
|
7184
7474
|
|
@@ -7223,6 +7513,7 @@ module Aws::ApiGatewayV2
|
|
7223
7513
|
:model_id,
|
7224
7514
|
:name,
|
7225
7515
|
:schema)
|
7516
|
+
SENSITIVE = []
|
7226
7517
|
include Aws::Structure
|
7227
7518
|
end
|
7228
7519
|
|
@@ -7252,6 +7543,7 @@ module Aws::ApiGatewayV2
|
|
7252
7543
|
:model_id,
|
7253
7544
|
:name,
|
7254
7545
|
:schema)
|
7546
|
+
SENSITIVE = []
|
7255
7547
|
include Aws::Structure
|
7256
7548
|
end
|
7257
7549
|
|
@@ -7323,6 +7615,7 @@ module Aws::ApiGatewayV2
|
|
7323
7615
|
:route_key,
|
7324
7616
|
:route_response_selection_expression,
|
7325
7617
|
:target)
|
7618
|
+
SENSITIVE = []
|
7326
7619
|
include Aws::Structure
|
7327
7620
|
end
|
7328
7621
|
|
@@ -7442,6 +7735,7 @@ module Aws::ApiGatewayV2
|
|
7442
7735
|
:route_key,
|
7443
7736
|
:route_response_selection_expression,
|
7444
7737
|
:target)
|
7738
|
+
SENSITIVE = []
|
7445
7739
|
include Aws::Structure
|
7446
7740
|
end
|
7447
7741
|
|
@@ -7537,6 +7831,7 @@ module Aws::ApiGatewayV2
|
|
7537
7831
|
:route_key,
|
7538
7832
|
:route_response_selection_expression,
|
7539
7833
|
:target)
|
7834
|
+
SENSITIVE = []
|
7540
7835
|
include Aws::Structure
|
7541
7836
|
end
|
7542
7837
|
|
@@ -7564,6 +7859,7 @@ module Aws::ApiGatewayV2
|
|
7564
7859
|
:response_models,
|
7565
7860
|
:response_parameters,
|
7566
7861
|
:route_response_key)
|
7862
|
+
SENSITIVE = []
|
7567
7863
|
include Aws::Structure
|
7568
7864
|
end
|
7569
7865
|
|
@@ -7631,6 +7927,7 @@ module Aws::ApiGatewayV2
|
|
7631
7927
|
:route_id,
|
7632
7928
|
:route_response_id,
|
7633
7929
|
:route_response_key)
|
7930
|
+
SENSITIVE = []
|
7634
7931
|
include Aws::Structure
|
7635
7932
|
end
|
7636
7933
|
|
@@ -7672,6 +7969,7 @@ module Aws::ApiGatewayV2
|
|
7672
7969
|
:response_parameters,
|
7673
7970
|
:route_response_id,
|
7674
7971
|
:route_response_key)
|
7972
|
+
SENSITIVE = []
|
7675
7973
|
include Aws::Structure
|
7676
7974
|
end
|
7677
7975
|
|
@@ -7722,6 +8020,7 @@ module Aws::ApiGatewayV2
|
|
7722
8020
|
:description,
|
7723
8021
|
:route_settings,
|
7724
8022
|
:stage_variables)
|
8023
|
+
SENSITIVE = []
|
7725
8024
|
include Aws::Structure
|
7726
8025
|
end
|
7727
8026
|
|
@@ -7808,6 +8107,7 @@ module Aws::ApiGatewayV2
|
|
7808
8107
|
:route_settings,
|
7809
8108
|
:stage_name,
|
7810
8109
|
:stage_variables)
|
8110
|
+
SENSITIVE = []
|
7811
8111
|
include Aws::Structure
|
7812
8112
|
end
|
7813
8113
|
|
@@ -7877,6 +8177,7 @@ module Aws::ApiGatewayV2
|
|
7877
8177
|
:stage_name,
|
7878
8178
|
:stage_variables,
|
7879
8179
|
:tags)
|
8180
|
+
SENSITIVE = []
|
7880
8181
|
include Aws::Structure
|
7881
8182
|
end
|
7882
8183
|
|
@@ -7888,6 +8189,7 @@ module Aws::ApiGatewayV2
|
|
7888
8189
|
#
|
7889
8190
|
class UpdateVpcLinkInput < Struct.new(
|
7890
8191
|
:name)
|
8192
|
+
SENSITIVE = []
|
7891
8193
|
include Aws::Structure
|
7892
8194
|
end
|
7893
8195
|
|
@@ -7909,6 +8211,7 @@ module Aws::ApiGatewayV2
|
|
7909
8211
|
class UpdateVpcLinkRequest < Struct.new(
|
7910
8212
|
:name,
|
7911
8213
|
:vpc_link_id)
|
8214
|
+
SENSITIVE = []
|
7912
8215
|
include Aws::Structure
|
7913
8216
|
end
|
7914
8217
|
|
@@ -7957,6 +8260,7 @@ module Aws::ApiGatewayV2
|
|
7957
8260
|
:vpc_link_status,
|
7958
8261
|
:vpc_link_status_message,
|
7959
8262
|
:vpc_link_version)
|
8263
|
+
SENSITIVE = []
|
7960
8264
|
include Aws::Structure
|
7961
8265
|
end
|
7962
8266
|
|
@@ -8008,6 +8312,7 @@ module Aws::ApiGatewayV2
|
|
8008
8312
|
:vpc_link_status,
|
8009
8313
|
:vpc_link_status_message,
|
8010
8314
|
:vpc_link_version)
|
8315
|
+
SENSITIVE = []
|
8011
8316
|
include Aws::Structure
|
8012
8317
|
end
|
8013
8318
|
|
@@ -8025,6 +8330,7 @@ module Aws::ApiGatewayV2
|
|
8025
8330
|
class VpcLinks < Struct.new(
|
8026
8331
|
:items,
|
8027
8332
|
:next_token)
|
8333
|
+
SENSITIVE = []
|
8028
8334
|
include Aws::Structure
|
8029
8335
|
end
|
8030
8336
|
|