aws-sdk-apigatewayv2 1.75.0 → 1.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-apigatewayv2/client.rb +295 -1
- data/lib/aws-sdk-apigatewayv2/client_api.rb +205 -0
- data/lib/aws-sdk-apigatewayv2/types.rb +444 -2
- data/lib/aws-sdk-apigatewayv2.rb +1 -1
- data/sig/client.rbs +128 -1
- data/sig/types.rbs +142 -0
- metadata +4 -4
@@ -1175,6 +1175,9 @@ module Aws::ApiGatewayV2
|
|
1175
1175
|
# name.
|
1176
1176
|
# @return [Types::MutualTlsAuthenticationInput]
|
1177
1177
|
#
|
1178
|
+
# @!attribute [rw] routing_mode
|
1179
|
+
# @return [String]
|
1180
|
+
#
|
1178
1181
|
# @!attribute [rw] tags
|
1179
1182
|
# The collection of tags associated with a domain name.
|
1180
1183
|
# @return [Hash<String,String>]
|
@@ -1183,6 +1186,7 @@ module Aws::ApiGatewayV2
|
|
1183
1186
|
:domain_name,
|
1184
1187
|
:domain_name_configurations,
|
1185
1188
|
:mutual_tls_authentication,
|
1189
|
+
:routing_mode,
|
1186
1190
|
:tags)
|
1187
1191
|
SENSITIVE = []
|
1188
1192
|
include Aws::Structure
|
@@ -1202,6 +1206,9 @@ module Aws::ApiGatewayV2
|
|
1202
1206
|
# certificate to access your API.
|
1203
1207
|
# @return [Types::MutualTlsAuthenticationInput]
|
1204
1208
|
#
|
1209
|
+
# @!attribute [rw] routing_mode
|
1210
|
+
# @return [String]
|
1211
|
+
#
|
1205
1212
|
# @!attribute [rw] tags
|
1206
1213
|
# Represents a collection of tags associated with the resource.
|
1207
1214
|
# @return [Hash<String,String>]
|
@@ -1210,6 +1217,7 @@ module Aws::ApiGatewayV2
|
|
1210
1217
|
:domain_name,
|
1211
1218
|
:domain_name_configurations,
|
1212
1219
|
:mutual_tls_authentication,
|
1220
|
+
:routing_mode,
|
1213
1221
|
:tags)
|
1214
1222
|
SENSITIVE = []
|
1215
1223
|
include Aws::Structure
|
@@ -1228,6 +1236,10 @@ module Aws::ApiGatewayV2
|
|
1228
1236
|
# A string with a length between \[1-512\].
|
1229
1237
|
# @return [String]
|
1230
1238
|
#
|
1239
|
+
# @!attribute [rw] domain_name_arn
|
1240
|
+
# Represents an Amazon Resource Name (ARN).
|
1241
|
+
# @return [String]
|
1242
|
+
#
|
1231
1243
|
# @!attribute [rw] domain_name_configurations
|
1232
1244
|
# The domain name configurations.
|
1233
1245
|
# @return [Array<Types::DomainNameConfiguration>]
|
@@ -1238,6 +1250,9 @@ module Aws::ApiGatewayV2
|
|
1238
1250
|
# certificate to access your API.
|
1239
1251
|
# @return [Types::MutualTlsAuthentication]
|
1240
1252
|
#
|
1253
|
+
# @!attribute [rw] routing_mode
|
1254
|
+
# @return [String]
|
1255
|
+
#
|
1241
1256
|
# @!attribute [rw] tags
|
1242
1257
|
# Represents a collection of tags associated with the resource.
|
1243
1258
|
# @return [Hash<String,String>]
|
@@ -1245,8 +1260,10 @@ module Aws::ApiGatewayV2
|
|
1245
1260
|
class CreateDomainNameResponse < Struct.new(
|
1246
1261
|
:api_mapping_selection_expression,
|
1247
1262
|
:domain_name,
|
1263
|
+
:domain_name_arn,
|
1248
1264
|
:domain_name_configurations,
|
1249
1265
|
:mutual_tls_authentication,
|
1266
|
+
:routing_mode,
|
1250
1267
|
:tags)
|
1251
1268
|
SENSITIVE = []
|
1252
1269
|
include Aws::Structure
|
@@ -2454,6 +2471,60 @@ module Aws::ApiGatewayV2
|
|
2454
2471
|
include Aws::Structure
|
2455
2472
|
end
|
2456
2473
|
|
2474
|
+
# @!attribute [rw] actions
|
2475
|
+
# @return [Array<Types::RoutingRuleAction>]
|
2476
|
+
#
|
2477
|
+
# @!attribute [rw] conditions
|
2478
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
2479
|
+
#
|
2480
|
+
# @!attribute [rw] domain_name
|
2481
|
+
# @return [String]
|
2482
|
+
#
|
2483
|
+
# @!attribute [rw] domain_name_id
|
2484
|
+
# @return [String]
|
2485
|
+
#
|
2486
|
+
# @!attribute [rw] priority
|
2487
|
+
# Represents the priority of the routing rule.
|
2488
|
+
# @return [Integer]
|
2489
|
+
#
|
2490
|
+
class CreateRoutingRuleRequest < Struct.new(
|
2491
|
+
:actions,
|
2492
|
+
:conditions,
|
2493
|
+
:domain_name,
|
2494
|
+
:domain_name_id,
|
2495
|
+
:priority)
|
2496
|
+
SENSITIVE = []
|
2497
|
+
include Aws::Structure
|
2498
|
+
end
|
2499
|
+
|
2500
|
+
# @!attribute [rw] actions
|
2501
|
+
# @return [Array<Types::RoutingRuleAction>]
|
2502
|
+
#
|
2503
|
+
# @!attribute [rw] conditions
|
2504
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
2505
|
+
#
|
2506
|
+
# @!attribute [rw] priority
|
2507
|
+
# Represents the priority of the routing rule.
|
2508
|
+
# @return [Integer]
|
2509
|
+
#
|
2510
|
+
# @!attribute [rw] routing_rule_arn
|
2511
|
+
# Represents an Amazon Resource Name (ARN).
|
2512
|
+
# @return [String]
|
2513
|
+
#
|
2514
|
+
# @!attribute [rw] routing_rule_id
|
2515
|
+
# The identifier.
|
2516
|
+
# @return [String]
|
2517
|
+
#
|
2518
|
+
class CreateRoutingRuleResponse < Struct.new(
|
2519
|
+
:actions,
|
2520
|
+
:conditions,
|
2521
|
+
:priority,
|
2522
|
+
:routing_rule_arn,
|
2523
|
+
:routing_rule_id)
|
2524
|
+
SENSITIVE = []
|
2525
|
+
include Aws::Structure
|
2526
|
+
end
|
2527
|
+
|
2457
2528
|
# Represents the input parameters for a CreateStage request.
|
2458
2529
|
#
|
2459
2530
|
# @!attribute [rw] access_log_settings
|
@@ -2931,6 +3002,23 @@ module Aws::ApiGatewayV2
|
|
2931
3002
|
include Aws::Structure
|
2932
3003
|
end
|
2933
3004
|
|
3005
|
+
# @!attribute [rw] domain_name
|
3006
|
+
# @return [String]
|
3007
|
+
#
|
3008
|
+
# @!attribute [rw] domain_name_id
|
3009
|
+
# @return [String]
|
3010
|
+
#
|
3011
|
+
# @!attribute [rw] routing_rule_id
|
3012
|
+
# @return [String]
|
3013
|
+
#
|
3014
|
+
class DeleteRoutingRuleRequest < Struct.new(
|
3015
|
+
:domain_name,
|
3016
|
+
:domain_name_id,
|
3017
|
+
:routing_rule_id)
|
3018
|
+
SENSITIVE = []
|
3019
|
+
include Aws::Structure
|
3020
|
+
end
|
3021
|
+
|
2934
3022
|
# @!attribute [rw] api_id
|
2935
3023
|
# @return [String]
|
2936
3024
|
#
|
@@ -3025,6 +3113,10 @@ module Aws::ApiGatewayV2
|
|
3025
3113
|
# The name of the DomainName resource.
|
3026
3114
|
# @return [String]
|
3027
3115
|
#
|
3116
|
+
# @!attribute [rw] domain_name_arn
|
3117
|
+
# Represents an Amazon Resource Name (ARN).
|
3118
|
+
# @return [String]
|
3119
|
+
#
|
3028
3120
|
# @!attribute [rw] domain_name_configurations
|
3029
3121
|
# The domain name configurations.
|
3030
3122
|
# @return [Array<Types::DomainNameConfiguration>]
|
@@ -3034,6 +3126,9 @@ module Aws::ApiGatewayV2
|
|
3034
3126
|
# name.
|
3035
3127
|
# @return [Types::MutualTlsAuthentication]
|
3036
3128
|
#
|
3129
|
+
# @!attribute [rw] routing_mode
|
3130
|
+
# @return [String]
|
3131
|
+
#
|
3037
3132
|
# @!attribute [rw] tags
|
3038
3133
|
# The collection of tags associated with a domain name.
|
3039
3134
|
# @return [Hash<String,String>]
|
@@ -3041,8 +3136,10 @@ module Aws::ApiGatewayV2
|
|
3041
3136
|
class DomainName < Struct.new(
|
3042
3137
|
:api_mapping_selection_expression,
|
3043
3138
|
:domain_name,
|
3139
|
+
:domain_name_arn,
|
3044
3140
|
:domain_name_configurations,
|
3045
3141
|
:mutual_tls_authentication,
|
3142
|
+
:routing_mode,
|
3046
3143
|
:tags)
|
3047
3144
|
SENSITIVE = []
|
3048
3145
|
include Aws::Structure
|
@@ -3631,6 +3728,10 @@ module Aws::ApiGatewayV2
|
|
3631
3728
|
# A string with a length between \[1-512\].
|
3632
3729
|
# @return [String]
|
3633
3730
|
#
|
3731
|
+
# @!attribute [rw] domain_name_arn
|
3732
|
+
# Represents an Amazon Resource Name (ARN).
|
3733
|
+
# @return [String]
|
3734
|
+
#
|
3634
3735
|
# @!attribute [rw] domain_name_configurations
|
3635
3736
|
# The domain name configurations.
|
3636
3737
|
# @return [Array<Types::DomainNameConfiguration>]
|
@@ -3641,6 +3742,9 @@ module Aws::ApiGatewayV2
|
|
3641
3742
|
# certificate to access your API.
|
3642
3743
|
# @return [Types::MutualTlsAuthentication]
|
3643
3744
|
#
|
3745
|
+
# @!attribute [rw] routing_mode
|
3746
|
+
# @return [String]
|
3747
|
+
#
|
3644
3748
|
# @!attribute [rw] tags
|
3645
3749
|
# Represents a collection of tags associated with the resource.
|
3646
3750
|
# @return [Hash<String,String>]
|
@@ -3648,8 +3752,10 @@ module Aws::ApiGatewayV2
|
|
3648
3752
|
class GetDomainNameResponse < Struct.new(
|
3649
3753
|
:api_mapping_selection_expression,
|
3650
3754
|
:domain_name,
|
3755
|
+
:domain_name_arn,
|
3651
3756
|
:domain_name_configurations,
|
3652
3757
|
:mutual_tls_authentication,
|
3758
|
+
:routing_mode,
|
3653
3759
|
:tags)
|
3654
3760
|
SENSITIVE = []
|
3655
3761
|
include Aws::Structure
|
@@ -4360,6 +4466,87 @@ module Aws::ApiGatewayV2
|
|
4360
4466
|
include Aws::Structure
|
4361
4467
|
end
|
4362
4468
|
|
4469
|
+
# @!attribute [rw] domain_name
|
4470
|
+
# @return [String]
|
4471
|
+
#
|
4472
|
+
# @!attribute [rw] domain_name_id
|
4473
|
+
# @return [String]
|
4474
|
+
#
|
4475
|
+
# @!attribute [rw] routing_rule_id
|
4476
|
+
# @return [String]
|
4477
|
+
#
|
4478
|
+
class GetRoutingRuleRequest < Struct.new(
|
4479
|
+
:domain_name,
|
4480
|
+
:domain_name_id,
|
4481
|
+
:routing_rule_id)
|
4482
|
+
SENSITIVE = []
|
4483
|
+
include Aws::Structure
|
4484
|
+
end
|
4485
|
+
|
4486
|
+
# @!attribute [rw] actions
|
4487
|
+
# @return [Array<Types::RoutingRuleAction>]
|
4488
|
+
#
|
4489
|
+
# @!attribute [rw] conditions
|
4490
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
4491
|
+
#
|
4492
|
+
# @!attribute [rw] priority
|
4493
|
+
# Represents the priority of the routing rule.
|
4494
|
+
# @return [Integer]
|
4495
|
+
#
|
4496
|
+
# @!attribute [rw] routing_rule_arn
|
4497
|
+
# Represents an Amazon Resource Name (ARN).
|
4498
|
+
# @return [String]
|
4499
|
+
#
|
4500
|
+
# @!attribute [rw] routing_rule_id
|
4501
|
+
# The identifier.
|
4502
|
+
# @return [String]
|
4503
|
+
#
|
4504
|
+
class GetRoutingRuleResponse < Struct.new(
|
4505
|
+
:actions,
|
4506
|
+
:conditions,
|
4507
|
+
:priority,
|
4508
|
+
:routing_rule_arn,
|
4509
|
+
:routing_rule_id)
|
4510
|
+
SENSITIVE = []
|
4511
|
+
include Aws::Structure
|
4512
|
+
end
|
4513
|
+
|
4514
|
+
# @!attribute [rw] domain_name
|
4515
|
+
# @return [String]
|
4516
|
+
#
|
4517
|
+
# @!attribute [rw] domain_name_id
|
4518
|
+
# @return [String]
|
4519
|
+
#
|
4520
|
+
# @!attribute [rw] max_results
|
4521
|
+
# @return [Integer]
|
4522
|
+
#
|
4523
|
+
# @!attribute [rw] next_token
|
4524
|
+
# @return [String]
|
4525
|
+
#
|
4526
|
+
class ListRoutingRulesRequest < Struct.new(
|
4527
|
+
:domain_name,
|
4528
|
+
:domain_name_id,
|
4529
|
+
:max_results,
|
4530
|
+
:next_token)
|
4531
|
+
SENSITIVE = []
|
4532
|
+
include Aws::Structure
|
4533
|
+
end
|
4534
|
+
|
4535
|
+
# @!attribute [rw] next_token
|
4536
|
+
# The next page of elements from this collection. Not valid for the
|
4537
|
+
# last element of the collection.
|
4538
|
+
# @return [String]
|
4539
|
+
#
|
4540
|
+
# @!attribute [rw] routing_rules
|
4541
|
+
# @return [Array<Types::RoutingRule>]
|
4542
|
+
#
|
4543
|
+
class ListRoutingRulesResponse < Struct.new(
|
4544
|
+
:next_token,
|
4545
|
+
:routing_rules)
|
4546
|
+
SENSITIVE = []
|
4547
|
+
include Aws::Structure
|
4548
|
+
end
|
4549
|
+
|
4363
4550
|
# @!attribute [rw] access_log_settings
|
4364
4551
|
# Settings for logging access in a stage.
|
4365
4552
|
# @return [Types::AccessLogSettings]
|
@@ -5246,6 +5433,64 @@ module Aws::ApiGatewayV2
|
|
5246
5433
|
include Aws::Structure
|
5247
5434
|
end
|
5248
5435
|
|
5436
|
+
# @!attribute [rw] actions
|
5437
|
+
# @return [Array<Types::RoutingRuleAction>]
|
5438
|
+
#
|
5439
|
+
# @!attribute [rw] conditions
|
5440
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
5441
|
+
#
|
5442
|
+
# @!attribute [rw] domain_name
|
5443
|
+
# @return [String]
|
5444
|
+
#
|
5445
|
+
# @!attribute [rw] domain_name_id
|
5446
|
+
# @return [String]
|
5447
|
+
#
|
5448
|
+
# @!attribute [rw] priority
|
5449
|
+
# Represents the priority of the routing rule.
|
5450
|
+
# @return [Integer]
|
5451
|
+
#
|
5452
|
+
# @!attribute [rw] routing_rule_id
|
5453
|
+
# @return [String]
|
5454
|
+
#
|
5455
|
+
class PutRoutingRuleRequest < Struct.new(
|
5456
|
+
:actions,
|
5457
|
+
:conditions,
|
5458
|
+
:domain_name,
|
5459
|
+
:domain_name_id,
|
5460
|
+
:priority,
|
5461
|
+
:routing_rule_id)
|
5462
|
+
SENSITIVE = []
|
5463
|
+
include Aws::Structure
|
5464
|
+
end
|
5465
|
+
|
5466
|
+
# @!attribute [rw] actions
|
5467
|
+
# @return [Array<Types::RoutingRuleAction>]
|
5468
|
+
#
|
5469
|
+
# @!attribute [rw] conditions
|
5470
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
5471
|
+
#
|
5472
|
+
# @!attribute [rw] priority
|
5473
|
+
# Represents the priority of the routing rule.
|
5474
|
+
# @return [Integer]
|
5475
|
+
#
|
5476
|
+
# @!attribute [rw] routing_rule_arn
|
5477
|
+
# Represents an Amazon Resource Name (ARN).
|
5478
|
+
# @return [String]
|
5479
|
+
#
|
5480
|
+
# @!attribute [rw] routing_rule_id
|
5481
|
+
# The identifier.
|
5482
|
+
# @return [String]
|
5483
|
+
#
|
5484
|
+
class PutRoutingRuleResponse < Struct.new(
|
5485
|
+
:actions,
|
5486
|
+
:conditions,
|
5487
|
+
:priority,
|
5488
|
+
:routing_rule_arn,
|
5489
|
+
:routing_rule_id)
|
5490
|
+
SENSITIVE = []
|
5491
|
+
include Aws::Structure
|
5492
|
+
end
|
5493
|
+
|
5249
5494
|
# Overwrites the configuration of an existing API using the provided
|
5250
5495
|
# definition. Supported only for HTTP APIs.
|
5251
5496
|
#
|
@@ -5576,6 +5821,186 @@ module Aws::ApiGatewayV2
|
|
5576
5821
|
include Aws::Structure
|
5577
5822
|
end
|
5578
5823
|
|
5824
|
+
# Represents a routing rule.
|
5825
|
+
#
|
5826
|
+
# @!attribute [rw] actions
|
5827
|
+
# @return [Array<Types::RoutingRuleAction>]
|
5828
|
+
#
|
5829
|
+
# @!attribute [rw] conditions
|
5830
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
5831
|
+
#
|
5832
|
+
# @!attribute [rw] priority
|
5833
|
+
# Represents the priority of the routing rule.
|
5834
|
+
# @return [Integer]
|
5835
|
+
#
|
5836
|
+
# @!attribute [rw] routing_rule_arn
|
5837
|
+
# Represents an Amazon Resource Name (ARN).
|
5838
|
+
# @return [String]
|
5839
|
+
#
|
5840
|
+
# @!attribute [rw] routing_rule_id
|
5841
|
+
# The ID of the routing rule.
|
5842
|
+
# @return [String]
|
5843
|
+
#
|
5844
|
+
class RoutingRule < Struct.new(
|
5845
|
+
:actions,
|
5846
|
+
:conditions,
|
5847
|
+
:priority,
|
5848
|
+
:routing_rule_arn,
|
5849
|
+
:routing_rule_id)
|
5850
|
+
SENSITIVE = []
|
5851
|
+
include Aws::Structure
|
5852
|
+
end
|
5853
|
+
|
5854
|
+
# Represents a routing rule action. The only supported action is
|
5855
|
+
# invokeApi.
|
5856
|
+
#
|
5857
|
+
# @!attribute [rw] invoke_api
|
5858
|
+
# Action to invoke a stage of a target API. Only REST APIs are
|
5859
|
+
# supported.
|
5860
|
+
# @return [Types::RoutingRuleActionInvokeApi]
|
5861
|
+
#
|
5862
|
+
class RoutingRuleAction < Struct.new(
|
5863
|
+
:invoke_api)
|
5864
|
+
SENSITIVE = []
|
5865
|
+
include Aws::Structure
|
5866
|
+
end
|
5867
|
+
|
5868
|
+
# Represents an InvokeApi action.
|
5869
|
+
#
|
5870
|
+
# @!attribute [rw] api_id
|
5871
|
+
# Action to invoke a stage of a target API. Only REST APIs are
|
5872
|
+
# supported.
|
5873
|
+
# @return [String]
|
5874
|
+
#
|
5875
|
+
# @!attribute [rw] stage
|
5876
|
+
# The name of the target stage.
|
5877
|
+
# @return [String]
|
5878
|
+
#
|
5879
|
+
# @!attribute [rw] strip_base_path
|
5880
|
+
# The strip base path setting. When true, API Gateway strips the
|
5881
|
+
# incoming matched base path when forwarding the request to the target
|
5882
|
+
# API.
|
5883
|
+
# @return [Boolean]
|
5884
|
+
#
|
5885
|
+
class RoutingRuleActionInvokeApi < Struct.new(
|
5886
|
+
:api_id,
|
5887
|
+
:stage,
|
5888
|
+
:strip_base_path)
|
5889
|
+
SENSITIVE = []
|
5890
|
+
include Aws::Structure
|
5891
|
+
end
|
5892
|
+
|
5893
|
+
# Represents a condition. Conditions can contain up to two matchHeaders
|
5894
|
+
# conditions and one matchBasePaths conditions. API Gateway evaluates
|
5895
|
+
# header conditions and base path conditions together. You can only use
|
5896
|
+
# AND between header and base path conditions.
|
5897
|
+
#
|
5898
|
+
# @!attribute [rw] match_base_paths
|
5899
|
+
# The base path to be matched.
|
5900
|
+
# @return [Types::RoutingRuleMatchBasePaths]
|
5901
|
+
#
|
5902
|
+
# @!attribute [rw] match_headers
|
5903
|
+
# The header to be matched.
|
5904
|
+
# @return [Types::RoutingRuleMatchHeaders]
|
5905
|
+
#
|
5906
|
+
class RoutingRuleCondition < Struct.new(
|
5907
|
+
:match_base_paths,
|
5908
|
+
:match_headers)
|
5909
|
+
SENSITIVE = []
|
5910
|
+
include Aws::Structure
|
5911
|
+
end
|
5912
|
+
|
5913
|
+
# Represents the input parameters for an RoutingRule request.
|
5914
|
+
#
|
5915
|
+
# @!attribute [rw] actions
|
5916
|
+
# The elements from this collection.
|
5917
|
+
# @return [Array<Types::RoutingRuleAction>]
|
5918
|
+
#
|
5919
|
+
# @!attribute [rw] conditions
|
5920
|
+
# The elements from this collection.
|
5921
|
+
# @return [Array<Types::RoutingRuleCondition>]
|
5922
|
+
#
|
5923
|
+
# @!attribute [rw] priority
|
5924
|
+
# The order in which API Gateway evaluates a rule. Priority is
|
5925
|
+
# evaluated from the lowest value to the highest value. Rules can't
|
5926
|
+
# have the same priority. Priority values 1-1,000,000 are supported.
|
5927
|
+
# @return [Integer]
|
5928
|
+
#
|
5929
|
+
class RoutingRuleInput < Struct.new(
|
5930
|
+
:actions,
|
5931
|
+
:conditions,
|
5932
|
+
:priority)
|
5933
|
+
SENSITIVE = []
|
5934
|
+
include Aws::Structure
|
5935
|
+
end
|
5936
|
+
|
5937
|
+
# Represents a MatchBasePaths condition.
|
5938
|
+
#
|
5939
|
+
# @!attribute [rw] any_of
|
5940
|
+
# The elements from this collection.
|
5941
|
+
# @return [Array<String>]
|
5942
|
+
#
|
5943
|
+
class RoutingRuleMatchBasePaths < Struct.new(
|
5944
|
+
:any_of)
|
5945
|
+
SENSITIVE = []
|
5946
|
+
include Aws::Structure
|
5947
|
+
end
|
5948
|
+
|
5949
|
+
# Represents a MatchHeaderValue.
|
5950
|
+
#
|
5951
|
+
# @!attribute [rw] header
|
5952
|
+
# The case insensitive header name to be matched. The header name must
|
5953
|
+
# be less than 40 characters and the only allowed characters are a-z,
|
5954
|
+
# A-Z, 0-9, and the following special characters:
|
5955
|
+
# *?-!#$%&'.^\_`\|~.
|
5956
|
+
# @return [String]
|
5957
|
+
#
|
5958
|
+
# @!attribute [rw] value_glob
|
5959
|
+
# The case sensitive header glob value to be matched against entire
|
5960
|
+
# header value. The header glob value must be less than 128 characters
|
5961
|
+
# and the only allowed characters are a-z, A-Z, 0-9, and the following
|
5962
|
+
# special characters: *?-!#$%&'.^\_`\|~. Wildcard matching is
|
5963
|
+
# supported for header glob values but must be for *prefix-match,
|
5964
|
+
# suffix-match*, or *infix*-match.
|
5965
|
+
# @return [String]
|
5966
|
+
#
|
5967
|
+
class RoutingRuleMatchHeaderValue < Struct.new(
|
5968
|
+
:header,
|
5969
|
+
:value_glob)
|
5970
|
+
SENSITIVE = []
|
5971
|
+
include Aws::Structure
|
5972
|
+
end
|
5973
|
+
|
5974
|
+
# Represents a MatchHeaders condition.
|
5975
|
+
#
|
5976
|
+
# @!attribute [rw] any_of
|
5977
|
+
# The elements from this collection.
|
5978
|
+
# @return [Array<Types::RoutingRuleMatchHeaderValue>]
|
5979
|
+
#
|
5980
|
+
class RoutingRuleMatchHeaders < Struct.new(
|
5981
|
+
:any_of)
|
5982
|
+
SENSITIVE = []
|
5983
|
+
include Aws::Structure
|
5984
|
+
end
|
5985
|
+
|
5986
|
+
# Represents collection of routing rules.
|
5987
|
+
#
|
5988
|
+
# @!attribute [rw] next_token
|
5989
|
+
# The next page of elements from this collection. Not valid for the
|
5990
|
+
# last element of the collection.
|
5991
|
+
# @return [String]
|
5992
|
+
#
|
5993
|
+
# @!attribute [rw] routing_rules
|
5994
|
+
# The elements from this collection.
|
5995
|
+
# @return [Array<Types::RoutingRule>]
|
5996
|
+
#
|
5997
|
+
class RoutingRules < Struct.new(
|
5998
|
+
:next_token,
|
5999
|
+
:routing_rules)
|
6000
|
+
SENSITIVE = []
|
6001
|
+
include Aws::Structure
|
6002
|
+
end
|
6003
|
+
|
5579
6004
|
# Represents an API stage.
|
5580
6005
|
#
|
5581
6006
|
# @!attribute [rw] access_log_settings
|
@@ -6506,9 +6931,13 @@ module Aws::ApiGatewayV2
|
|
6506
6931
|
# name.
|
6507
6932
|
# @return [Types::MutualTlsAuthenticationInput]
|
6508
6933
|
#
|
6934
|
+
# @!attribute [rw] routing_mode
|
6935
|
+
# @return [String]
|
6936
|
+
#
|
6509
6937
|
class UpdateDomainNameInput < Struct.new(
|
6510
6938
|
:domain_name_configurations,
|
6511
|
-
:mutual_tls_authentication
|
6939
|
+
:mutual_tls_authentication,
|
6940
|
+
:routing_mode)
|
6512
6941
|
SENSITIVE = []
|
6513
6942
|
include Aws::Structure
|
6514
6943
|
end
|
@@ -6526,10 +6955,14 @@ module Aws::ApiGatewayV2
|
|
6526
6955
|
# certificate to access your API.
|
6527
6956
|
# @return [Types::MutualTlsAuthenticationInput]
|
6528
6957
|
#
|
6958
|
+
# @!attribute [rw] routing_mode
|
6959
|
+
# @return [String]
|
6960
|
+
#
|
6529
6961
|
class UpdateDomainNameRequest < Struct.new(
|
6530
6962
|
:domain_name,
|
6531
6963
|
:domain_name_configurations,
|
6532
|
-
:mutual_tls_authentication
|
6964
|
+
:mutual_tls_authentication,
|
6965
|
+
:routing_mode)
|
6533
6966
|
SENSITIVE = []
|
6534
6967
|
include Aws::Structure
|
6535
6968
|
end
|
@@ -6547,6 +6980,10 @@ module Aws::ApiGatewayV2
|
|
6547
6980
|
# A string with a length between \[1-512\].
|
6548
6981
|
# @return [String]
|
6549
6982
|
#
|
6983
|
+
# @!attribute [rw] domain_name_arn
|
6984
|
+
# Represents an Amazon Resource Name (ARN).
|
6985
|
+
# @return [String]
|
6986
|
+
#
|
6550
6987
|
# @!attribute [rw] domain_name_configurations
|
6551
6988
|
# The domain name configurations.
|
6552
6989
|
# @return [Array<Types::DomainNameConfiguration>]
|
@@ -6557,6 +6994,9 @@ module Aws::ApiGatewayV2
|
|
6557
6994
|
# certificate to access your API.
|
6558
6995
|
# @return [Types::MutualTlsAuthentication]
|
6559
6996
|
#
|
6997
|
+
# @!attribute [rw] routing_mode
|
6998
|
+
# @return [String]
|
6999
|
+
#
|
6560
7000
|
# @!attribute [rw] tags
|
6561
7001
|
# Represents a collection of tags associated with the resource.
|
6562
7002
|
# @return [Hash<String,String>]
|
@@ -6564,8 +7004,10 @@ module Aws::ApiGatewayV2
|
|
6564
7004
|
class UpdateDomainNameResponse < Struct.new(
|
6565
7005
|
:api_mapping_selection_expression,
|
6566
7006
|
:domain_name,
|
7007
|
+
:domain_name_arn,
|
6567
7008
|
:domain_name_configurations,
|
6568
7009
|
:mutual_tls_authentication,
|
7010
|
+
:routing_mode,
|
6569
7011
|
:tags)
|
6570
7012
|
SENSITIVE = []
|
6571
7013
|
include Aws::Structure
|
data/lib/aws-sdk-apigatewayv2.rb
CHANGED