aws-sdk-apigatewayv2 1.76.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 +5 -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 +1 -1
data/sig/client.rbs
CHANGED
@@ -193,8 +193,10 @@ module Aws
|
|
193
193
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainNameResponse]
|
194
194
|
def api_mapping_selection_expression: () -> ::String
|
195
195
|
def domain_name: () -> ::String
|
196
|
+
def domain_name_arn: () -> ::String
|
196
197
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
197
198
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
199
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
198
200
|
def tags: () -> ::Hash[::String, ::String]
|
199
201
|
end
|
200
202
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_domain_name-instance_method
|
@@ -219,6 +221,7 @@ module Aws
|
|
219
221
|
truststore_uri: ::String?,
|
220
222
|
truststore_version: ::String?
|
221
223
|
},
|
224
|
+
?routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING"),
|
222
225
|
?tags: Hash[::String, ::String]
|
223
226
|
) -> _CreateDomainNameResponseSuccess
|
224
227
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainNameResponseSuccess
|
@@ -366,6 +369,46 @@ module Aws
|
|
366
369
|
) -> _CreateRouteResponseResponseSuccess
|
367
370
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRouteResponseResponseSuccess
|
368
371
|
|
372
|
+
interface _CreateRoutingRuleResponseSuccess
|
373
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoutingRuleResponse]
|
374
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
375
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
376
|
+
def priority: () -> ::Integer
|
377
|
+
def routing_rule_arn: () -> ::String
|
378
|
+
def routing_rule_id: () -> ::String
|
379
|
+
end
|
380
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#create_routing_rule-instance_method
|
381
|
+
def create_routing_rule: (
|
382
|
+
actions: Array[
|
383
|
+
{
|
384
|
+
invoke_api: {
|
385
|
+
api_id: ::String,
|
386
|
+
stage: ::String,
|
387
|
+
strip_base_path: bool?
|
388
|
+
}
|
389
|
+
},
|
390
|
+
],
|
391
|
+
conditions: Array[
|
392
|
+
{
|
393
|
+
match_base_paths: {
|
394
|
+
any_of: Array[::String]
|
395
|
+
}?,
|
396
|
+
match_headers: {
|
397
|
+
any_of: Array[
|
398
|
+
{
|
399
|
+
header: ::String,
|
400
|
+
value_glob: ::String
|
401
|
+
},
|
402
|
+
]
|
403
|
+
}?
|
404
|
+
},
|
405
|
+
],
|
406
|
+
domain_name: ::String,
|
407
|
+
?domain_name_id: ::String,
|
408
|
+
priority: ::Integer
|
409
|
+
) -> _CreateRoutingRuleResponseSuccess
|
410
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoutingRuleResponseSuccess
|
411
|
+
|
369
412
|
interface _CreateStageResponseSuccess
|
370
413
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStageResponse]
|
371
414
|
def access_log_settings: () -> Types::AccessLogSettings
|
@@ -534,6 +577,14 @@ module Aws
|
|
534
577
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
535
578
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
536
579
|
|
580
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_routing_rule-instance_method
|
581
|
+
def delete_routing_rule: (
|
582
|
+
domain_name: ::String,
|
583
|
+
?domain_name_id: ::String,
|
584
|
+
routing_rule_id: ::String
|
585
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
586
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
587
|
+
|
537
588
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#delete_stage-instance_method
|
538
589
|
def delete_stage: (
|
539
590
|
api_id: ::String,
|
@@ -704,8 +755,10 @@ module Aws
|
|
704
755
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDomainNameResponse]
|
705
756
|
def api_mapping_selection_expression: () -> ::String
|
706
757
|
def domain_name: () -> ::String
|
758
|
+
def domain_name_arn: () -> ::String
|
707
759
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
708
760
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
761
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
709
762
|
def tags: () -> ::Hash[::String, ::String]
|
710
763
|
end
|
711
764
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_domain_name-instance_method
|
@@ -905,6 +958,36 @@ module Aws
|
|
905
958
|
) -> _GetRoutesResponseSuccess
|
906
959
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoutesResponseSuccess
|
907
960
|
|
961
|
+
interface _GetRoutingRuleResponseSuccess
|
962
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRoutingRuleResponse]
|
963
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
964
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
965
|
+
def priority: () -> ::Integer
|
966
|
+
def routing_rule_arn: () -> ::String
|
967
|
+
def routing_rule_id: () -> ::String
|
968
|
+
end
|
969
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#get_routing_rule-instance_method
|
970
|
+
def get_routing_rule: (
|
971
|
+
domain_name: ::String,
|
972
|
+
?domain_name_id: ::String,
|
973
|
+
routing_rule_id: ::String
|
974
|
+
) -> _GetRoutingRuleResponseSuccess
|
975
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoutingRuleResponseSuccess
|
976
|
+
|
977
|
+
interface _ListRoutingRulesResponseSuccess
|
978
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoutingRulesResponse]
|
979
|
+
def next_token: () -> ::String
|
980
|
+
def routing_rules: () -> ::Array[Types::RoutingRule]
|
981
|
+
end
|
982
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#list_routing_rules-instance_method
|
983
|
+
def list_routing_rules: (
|
984
|
+
domain_name: ::String,
|
985
|
+
?domain_name_id: ::String,
|
986
|
+
?max_results: ::Integer,
|
987
|
+
?next_token: ::String
|
988
|
+
) -> _ListRoutingRulesResponseSuccess
|
989
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoutingRulesResponseSuccess
|
990
|
+
|
908
991
|
interface _GetStageResponseSuccess
|
909
992
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetStageResponse]
|
910
993
|
def access_log_settings: () -> Types::AccessLogSettings
|
@@ -1010,6 +1093,47 @@ module Aws
|
|
1010
1093
|
) -> _ImportApiResponseSuccess
|
1011
1094
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportApiResponseSuccess
|
1012
1095
|
|
1096
|
+
interface _PutRoutingRuleResponseSuccess
|
1097
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutRoutingRuleResponse]
|
1098
|
+
def actions: () -> ::Array[Types::RoutingRuleAction]
|
1099
|
+
def conditions: () -> ::Array[Types::RoutingRuleCondition]
|
1100
|
+
def priority: () -> ::Integer
|
1101
|
+
def routing_rule_arn: () -> ::String
|
1102
|
+
def routing_rule_id: () -> ::String
|
1103
|
+
end
|
1104
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#put_routing_rule-instance_method
|
1105
|
+
def put_routing_rule: (
|
1106
|
+
actions: Array[
|
1107
|
+
{
|
1108
|
+
invoke_api: {
|
1109
|
+
api_id: ::String,
|
1110
|
+
stage: ::String,
|
1111
|
+
strip_base_path: bool?
|
1112
|
+
}
|
1113
|
+
},
|
1114
|
+
],
|
1115
|
+
conditions: Array[
|
1116
|
+
{
|
1117
|
+
match_base_paths: {
|
1118
|
+
any_of: Array[::String]
|
1119
|
+
}?,
|
1120
|
+
match_headers: {
|
1121
|
+
any_of: Array[
|
1122
|
+
{
|
1123
|
+
header: ::String,
|
1124
|
+
value_glob: ::String
|
1125
|
+
},
|
1126
|
+
]
|
1127
|
+
}?
|
1128
|
+
},
|
1129
|
+
],
|
1130
|
+
domain_name: ::String,
|
1131
|
+
?domain_name_id: ::String,
|
1132
|
+
priority: ::Integer,
|
1133
|
+
routing_rule_id: ::String
|
1134
|
+
) -> _PutRoutingRuleResponseSuccess
|
1135
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutRoutingRuleResponseSuccess
|
1136
|
+
|
1013
1137
|
interface _ReimportApiResponseSuccess
|
1014
1138
|
include ::Seahorse::Client::_ResponseSuccess[Types::ReimportApiResponse]
|
1015
1139
|
def api_endpoint: () -> ::String
|
@@ -1173,8 +1297,10 @@ module Aws
|
|
1173
1297
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainNameResponse]
|
1174
1298
|
def api_mapping_selection_expression: () -> ::String
|
1175
1299
|
def domain_name: () -> ::String
|
1300
|
+
def domain_name_arn: () -> ::String
|
1176
1301
|
def domain_name_configurations: () -> ::Array[Types::DomainNameConfiguration]
|
1177
1302
|
def mutual_tls_authentication: () -> Types::MutualTlsAuthentication
|
1303
|
+
def routing_mode: () -> ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1178
1304
|
def tags: () -> ::Hash[::String, ::String]
|
1179
1305
|
end
|
1180
1306
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApiGatewayV2/Client.html#update_domain_name-instance_method
|
@@ -1198,7 +1324,8 @@ module Aws
|
|
1198
1324
|
?mutual_tls_authentication: {
|
1199
1325
|
truststore_uri: ::String?,
|
1200
1326
|
truststore_version: ::String?
|
1201
|
-
}
|
1327
|
+
},
|
1328
|
+
?routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1202
1329
|
) -> _UpdateDomainNameResponseSuccess
|
1203
1330
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainNameResponseSuccess
|
1204
1331
|
|
data/sig/types.rbs
CHANGED
@@ -251,6 +251,7 @@ module Aws::ApiGatewayV2
|
|
251
251
|
attr_accessor domain_name: ::String
|
252
252
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
253
253
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
254
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
254
255
|
attr_accessor tags: ::Hash[::String, ::String]
|
255
256
|
SENSITIVE: []
|
256
257
|
end
|
@@ -259,6 +260,7 @@ module Aws::ApiGatewayV2
|
|
259
260
|
attr_accessor domain_name: ::String
|
260
261
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
261
262
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
263
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
262
264
|
attr_accessor tags: ::Hash[::String, ::String]
|
263
265
|
SENSITIVE: []
|
264
266
|
end
|
@@ -266,8 +268,10 @@ module Aws::ApiGatewayV2
|
|
266
268
|
class CreateDomainNameResponse
|
267
269
|
attr_accessor api_mapping_selection_expression: ::String
|
268
270
|
attr_accessor domain_name: ::String
|
271
|
+
attr_accessor domain_name_arn: ::String
|
269
272
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
270
273
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
274
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
271
275
|
attr_accessor tags: ::Hash[::String, ::String]
|
272
276
|
SENSITIVE: []
|
273
277
|
end
|
@@ -470,6 +474,24 @@ module Aws::ApiGatewayV2
|
|
470
474
|
SENSITIVE: []
|
471
475
|
end
|
472
476
|
|
477
|
+
class CreateRoutingRuleRequest
|
478
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
479
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
480
|
+
attr_accessor domain_name: ::String
|
481
|
+
attr_accessor domain_name_id: ::String
|
482
|
+
attr_accessor priority: ::Integer
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class CreateRoutingRuleResponse
|
487
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
488
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
489
|
+
attr_accessor priority: ::Integer
|
490
|
+
attr_accessor routing_rule_arn: ::String
|
491
|
+
attr_accessor routing_rule_id: ::String
|
492
|
+
SENSITIVE: []
|
493
|
+
end
|
494
|
+
|
473
495
|
class CreateStageInput
|
474
496
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
475
497
|
attr_accessor auto_deploy: bool
|
@@ -631,6 +653,13 @@ module Aws::ApiGatewayV2
|
|
631
653
|
SENSITIVE: []
|
632
654
|
end
|
633
655
|
|
656
|
+
class DeleteRoutingRuleRequest
|
657
|
+
attr_accessor domain_name: ::String
|
658
|
+
attr_accessor domain_name_id: ::String
|
659
|
+
attr_accessor routing_rule_id: ::String
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
634
663
|
class DeleteStageRequest
|
635
664
|
attr_accessor api_id: ::String
|
636
665
|
attr_accessor stage_name: ::String
|
@@ -664,8 +693,10 @@ module Aws::ApiGatewayV2
|
|
664
693
|
class DomainName
|
665
694
|
attr_accessor api_mapping_selection_expression: ::String
|
666
695
|
attr_accessor domain_name: ::String
|
696
|
+
attr_accessor domain_name_arn: ::String
|
667
697
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
668
698
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
699
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
669
700
|
attr_accessor tags: ::Hash[::String, ::String]
|
670
701
|
SENSITIVE: []
|
671
702
|
end
|
@@ -848,8 +879,10 @@ module Aws::ApiGatewayV2
|
|
848
879
|
class GetDomainNameResponse
|
849
880
|
attr_accessor api_mapping_selection_expression: ::String
|
850
881
|
attr_accessor domain_name: ::String
|
882
|
+
attr_accessor domain_name_arn: ::String
|
851
883
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
852
884
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
885
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
853
886
|
attr_accessor tags: ::Hash[::String, ::String]
|
854
887
|
SENSITIVE: []
|
855
888
|
end
|
@@ -1051,6 +1084,36 @@ module Aws::ApiGatewayV2
|
|
1051
1084
|
SENSITIVE: []
|
1052
1085
|
end
|
1053
1086
|
|
1087
|
+
class GetRoutingRuleRequest
|
1088
|
+
attr_accessor domain_name: ::String
|
1089
|
+
attr_accessor domain_name_id: ::String
|
1090
|
+
attr_accessor routing_rule_id: ::String
|
1091
|
+
SENSITIVE: []
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
class GetRoutingRuleResponse
|
1095
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1096
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1097
|
+
attr_accessor priority: ::Integer
|
1098
|
+
attr_accessor routing_rule_arn: ::String
|
1099
|
+
attr_accessor routing_rule_id: ::String
|
1100
|
+
SENSITIVE: []
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
class ListRoutingRulesRequest
|
1104
|
+
attr_accessor domain_name: ::String
|
1105
|
+
attr_accessor domain_name_id: ::String
|
1106
|
+
attr_accessor max_results: ::Integer
|
1107
|
+
attr_accessor next_token: ::String
|
1108
|
+
SENSITIVE: []
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
class ListRoutingRulesResponse
|
1112
|
+
attr_accessor next_token: ::String
|
1113
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
1114
|
+
SENSITIVE: []
|
1115
|
+
end
|
1116
|
+
|
1054
1117
|
class GetStageResponse
|
1055
1118
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
1056
1119
|
attr_accessor api_gateway_managed: bool
|
@@ -1252,6 +1315,25 @@ module Aws::ApiGatewayV2
|
|
1252
1315
|
SENSITIVE: []
|
1253
1316
|
end
|
1254
1317
|
|
1318
|
+
class PutRoutingRuleRequest
|
1319
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1320
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1321
|
+
attr_accessor domain_name: ::String
|
1322
|
+
attr_accessor domain_name_id: ::String
|
1323
|
+
attr_accessor priority: ::Integer
|
1324
|
+
attr_accessor routing_rule_id: ::String
|
1325
|
+
SENSITIVE: []
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
class PutRoutingRuleResponse
|
1329
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1330
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1331
|
+
attr_accessor priority: ::Integer
|
1332
|
+
attr_accessor routing_rule_arn: ::String
|
1333
|
+
attr_accessor routing_rule_id: ::String
|
1334
|
+
SENSITIVE: []
|
1335
|
+
end
|
1336
|
+
|
1255
1337
|
class ReimportApiInput
|
1256
1338
|
attr_accessor body: ::String
|
1257
1339
|
SENSITIVE: []
|
@@ -1333,6 +1415,62 @@ module Aws::ApiGatewayV2
|
|
1333
1415
|
SENSITIVE: []
|
1334
1416
|
end
|
1335
1417
|
|
1418
|
+
class RoutingRule
|
1419
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1420
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1421
|
+
attr_accessor priority: ::Integer
|
1422
|
+
attr_accessor routing_rule_arn: ::String
|
1423
|
+
attr_accessor routing_rule_id: ::String
|
1424
|
+
SENSITIVE: []
|
1425
|
+
end
|
1426
|
+
|
1427
|
+
class RoutingRuleAction
|
1428
|
+
attr_accessor invoke_api: Types::RoutingRuleActionInvokeApi
|
1429
|
+
SENSITIVE: []
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
class RoutingRuleActionInvokeApi
|
1433
|
+
attr_accessor api_id: ::String
|
1434
|
+
attr_accessor stage: ::String
|
1435
|
+
attr_accessor strip_base_path: bool
|
1436
|
+
SENSITIVE: []
|
1437
|
+
end
|
1438
|
+
|
1439
|
+
class RoutingRuleCondition
|
1440
|
+
attr_accessor match_base_paths: Types::RoutingRuleMatchBasePaths
|
1441
|
+
attr_accessor match_headers: Types::RoutingRuleMatchHeaders
|
1442
|
+
SENSITIVE: []
|
1443
|
+
end
|
1444
|
+
|
1445
|
+
class RoutingRuleInput
|
1446
|
+
attr_accessor actions: ::Array[Types::RoutingRuleAction]
|
1447
|
+
attr_accessor conditions: ::Array[Types::RoutingRuleCondition]
|
1448
|
+
attr_accessor priority: ::Integer
|
1449
|
+
SENSITIVE: []
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
class RoutingRuleMatchBasePaths
|
1453
|
+
attr_accessor any_of: ::Array[::String]
|
1454
|
+
SENSITIVE: []
|
1455
|
+
end
|
1456
|
+
|
1457
|
+
class RoutingRuleMatchHeaderValue
|
1458
|
+
attr_accessor header: ::String
|
1459
|
+
attr_accessor value_glob: ::String
|
1460
|
+
SENSITIVE: []
|
1461
|
+
end
|
1462
|
+
|
1463
|
+
class RoutingRuleMatchHeaders
|
1464
|
+
attr_accessor any_of: ::Array[Types::RoutingRuleMatchHeaderValue]
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class RoutingRules
|
1469
|
+
attr_accessor next_token: ::String
|
1470
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1336
1474
|
class Stage
|
1337
1475
|
attr_accessor access_log_settings: Types::AccessLogSettings
|
1338
1476
|
attr_accessor api_gateway_managed: bool
|
@@ -1546,6 +1684,7 @@ module Aws::ApiGatewayV2
|
|
1546
1684
|
class UpdateDomainNameInput
|
1547
1685
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1548
1686
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1687
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1549
1688
|
SENSITIVE: []
|
1550
1689
|
end
|
1551
1690
|
|
@@ -1553,14 +1692,17 @@ module Aws::ApiGatewayV2
|
|
1553
1692
|
attr_accessor domain_name: ::String
|
1554
1693
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1555
1694
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthenticationInput
|
1695
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1556
1696
|
SENSITIVE: []
|
1557
1697
|
end
|
1558
1698
|
|
1559
1699
|
class UpdateDomainNameResponse
|
1560
1700
|
attr_accessor api_mapping_selection_expression: ::String
|
1561
1701
|
attr_accessor domain_name: ::String
|
1702
|
+
attr_accessor domain_name_arn: ::String
|
1562
1703
|
attr_accessor domain_name_configurations: ::Array[Types::DomainNameConfiguration]
|
1563
1704
|
attr_accessor mutual_tls_authentication: Types::MutualTlsAuthentication
|
1705
|
+
attr_accessor routing_mode: ("API_MAPPING_ONLY" | "ROUTING_RULE_ONLY" | "ROUTING_RULE_THEN_API_MAPPING")
|
1564
1706
|
attr_accessor tags: ::Hash[::String, ::String]
|
1565
1707
|
SENSITIVE: []
|
1566
1708
|
end
|