aws-sdk-core 2.11.349 → 2.11.350

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac57dd381ccf526918b189c60058a4e13527d122
4
- data.tar.gz: 8e0168fe21dfbee436040931a1906259a4be111a
3
+ metadata.gz: 2b2aaf6e78ceb93cd318ad8ccbac16c0ea3a6aac
4
+ data.tar.gz: 97e61d5ec6d1993d75d92d60bcbd5a20958c3649
5
5
  SHA512:
6
- metadata.gz: 1701f470bbac8e4717593ebcc566af062fcdd394c2b21a0a6035c15cadfc2f3fe685366320cfe483ef9b7f772a2934142dca97e8e9f4f8edad6b527c0baf01f9
7
- data.tar.gz: 0ce7bb0f793a054a9ba285f4c7ffbcccedb8ca0eeaf413f939d339c7313662fcd9547592a8459752c22143d5dd9ca77611c9e856ea3d515aaaefb592ed299aed
6
+ metadata.gz: 98d765d051b554afaadbb11f6fdfc648e97d19b4678cc515a23a551f3c7ff182dc15b31da0dd2efdcd863c12c6aee11f4533bad1789e5bfd39a59f31d89a3b88
7
+ data.tar.gz: b5d5acf4fd233bfff866b9e38705ac019d9429115522dbd61473101369507002267ebe1e89a7dfe2dfc2e04b51c5b192b2da65d1ed28bc154a31002532a85843
@@ -1106,6 +1106,14 @@
1106
1106
  }
1107
1107
  }
1108
1108
  },
1109
+ "TcpRetryPolicyEvents": {
1110
+ "type": "list",
1111
+ "member": {
1112
+ "shape": "TcpRetryPolicyEvent"
1113
+ },
1114
+ "min": 1,
1115
+ "max": 1
1116
+ },
1109
1117
  "CreateVirtualServiceInput": {
1110
1118
  "type": "structure",
1111
1119
  "required": [
@@ -1699,6 +1707,11 @@
1699
1707
  }
1700
1708
  }
1701
1709
  },
1710
+ "HttpRetryPolicyEvent": {
1711
+ "type": "string",
1712
+ "min": 1,
1713
+ "max": 25
1714
+ },
1702
1715
  "DescribeVirtualServiceOutput": {
1703
1716
  "type": "structure",
1704
1717
  "required": [
@@ -1925,6 +1938,12 @@
1925
1938
  }
1926
1939
  }
1927
1940
  },
1941
+ "TcpRetryPolicyEvent": {
1942
+ "type": "string",
1943
+ "enum": [
1944
+ "connection-error"
1945
+ ]
1946
+ },
1928
1947
  "VirtualServiceSpec": {
1929
1948
  "type": "structure",
1930
1949
  "members": {
@@ -2079,6 +2098,13 @@
2079
2098
  }
2080
2099
  }
2081
2100
  },
2101
+ "DurationUnit": {
2102
+ "type": "string",
2103
+ "enum": [
2104
+ "ms",
2105
+ "s"
2106
+ ]
2107
+ },
2082
2108
  "RoutePriority": {
2083
2109
  "type": "integer",
2084
2110
  "box": true,
@@ -2214,6 +2240,14 @@
2214
2240
  }
2215
2241
  }
2216
2242
  },
2243
+ "HttpRetryPolicyEvents": {
2244
+ "type": "list",
2245
+ "member": {
2246
+ "shape": "HttpRetryPolicyEvent"
2247
+ },
2248
+ "min": 1,
2249
+ "max": 25
2250
+ },
2217
2251
  "ListVirtualNodesLimit": {
2218
2252
  "type": "integer",
2219
2253
  "box": true,
@@ -2326,6 +2360,17 @@
2326
2360
  "TRACE"
2327
2361
  ]
2328
2362
  },
2363
+ "Duration": {
2364
+ "type": "structure",
2365
+ "members": {
2366
+ "unit": {
2367
+ "shape": "DurationUnit"
2368
+ },
2369
+ "value": {
2370
+ "shape": "DurationValue"
2371
+ }
2372
+ }
2373
+ },
2329
2374
  "ConflictException": {
2330
2375
  "type": "structure",
2331
2376
  "members": {
@@ -2407,6 +2452,11 @@
2407
2452
  }
2408
2453
  }
2409
2454
  },
2455
+ "MaxRetries": {
2456
+ "type": "long",
2457
+ "box": true,
2458
+ "min": 0
2459
+ },
2410
2460
  "MeshStatusCode": {
2411
2461
  "type": "string",
2412
2462
  "enum": [
@@ -2691,6 +2741,27 @@
2691
2741
  "min": 0,
2692
2742
  "max": 50
2693
2743
  },
2744
+ "HttpRetryPolicy": {
2745
+ "type": "structure",
2746
+ "required": [
2747
+ "maxRetries",
2748
+ "perRetryTimeout"
2749
+ ],
2750
+ "members": {
2751
+ "httpRetryEvents": {
2752
+ "shape": "HttpRetryPolicyEvents"
2753
+ },
2754
+ "maxRetries": {
2755
+ "shape": "MaxRetries"
2756
+ },
2757
+ "perRetryTimeout": {
2758
+ "shape": "Duration"
2759
+ },
2760
+ "tcpRetryEvents": {
2761
+ "shape": "TcpRetryPolicyEvents"
2762
+ }
2763
+ }
2764
+ },
2694
2765
  "DescribeVirtualRouterInput": {
2695
2766
  "type": "structure",
2696
2767
  "required": [
@@ -2787,6 +2858,11 @@
2787
2858
  "DROP_ALL"
2788
2859
  ]
2789
2860
  },
2861
+ "DurationValue": {
2862
+ "type": "long",
2863
+ "box": true,
2864
+ "min": 0
2865
+ },
2790
2866
  "Hostname": {
2791
2867
  "type": "string"
2792
2868
  },
@@ -3022,6 +3098,9 @@
3022
3098
  },
3023
3099
  "match": {
3024
3100
  "shape": "HttpRouteMatch"
3101
+ },
3102
+ "retryPolicy": {
3103
+ "shape": "HttpRetryPolicy"
3025
3104
  }
3026
3105
  }
3027
3106
  },
@@ -180,7 +180,8 @@
180
180
  "output":{"shape":"CreateUsageReportSubscriptionResult"},
181
181
  "errors":[
182
182
  {"shape":"InvalidRoleException"},
183
- {"shape":"InvalidAccountStatusException"}
183
+ {"shape":"InvalidAccountStatusException"},
184
+ {"shape":"LimitExceededException"}
184
185
  ]
185
186
  },
186
187
  "CreateUser":{
@@ -522,7 +523,8 @@
522
523
  {"shape":"LimitExceededException"},
523
524
  {"shape":"InvalidAccountStatusException"},
524
525
  {"shape":"ConcurrentModificationException"},
525
- {"shape":"ResourceNotAvailableException"}
526
+ {"shape":"ResourceNotAvailableException"},
527
+ {"shape":"InvalidRoleException"}
526
528
  ]
527
529
  },
528
530
  "StartImageBuilder":{
@@ -896,7 +898,8 @@
896
898
  "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
897
899
  "DomainJoinInfo":{"shape":"DomainJoinInfo"},
898
900
  "Tags":{"shape":"Tags"},
899
- "IdleDisconnectTimeoutInSeconds":{"shape":"Integer"}
901
+ "IdleDisconnectTimeoutInSeconds":{"shape":"Integer"},
902
+ "IamRoleArn":{"shape":"Arn"}
900
903
  }
901
904
  },
902
905
  "CreateFleetResult":{
@@ -919,6 +922,7 @@
919
922
  "Description":{"shape":"Description"},
920
923
  "DisplayName":{"shape":"DisplayName"},
921
924
  "VpcConfig":{"shape":"VpcConfig"},
925
+ "IamRoleArn":{"shape":"Arn"},
922
926
  "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
923
927
  "DomainJoinInfo":{"shape":"DomainJoinInfo"},
924
928
  "AppstreamAgentVersion":{"shape":"AppstreamAgentVersion"},
@@ -1430,7 +1434,8 @@
1430
1434
  "FleetErrors":{"shape":"FleetErrors"},
1431
1435
  "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
1432
1436
  "DomainJoinInfo":{"shape":"DomainJoinInfo"},
1433
- "IdleDisconnectTimeoutInSeconds":{"shape":"Integer"}
1437
+ "IdleDisconnectTimeoutInSeconds":{"shape":"Integer"},
1438
+ "IamRoleArn":{"shape":"Arn"}
1434
1439
  }
1435
1440
  },
1436
1441
  "FleetAttribute":{
@@ -1438,7 +1443,8 @@
1438
1443
  "enum":[
1439
1444
  "VPC_CONFIGURATION",
1440
1445
  "VPC_CONFIGURATION_SECURITY_GROUP_IDS",
1441
- "DOMAIN_JOIN_INFO"
1446
+ "DOMAIN_JOIN_INFO",
1447
+ "IAM_ROLE_ARN"
1442
1448
  ]
1443
1449
  },
1444
1450
  "FleetAttributes":{
@@ -1461,6 +1467,7 @@
1461
1467
  "NETWORK_INTERFACE_LIMIT_EXCEEDED",
1462
1468
  "INTERNAL_SERVICE_ERROR",
1463
1469
  "IAM_SERVICE_ROLE_IS_MISSING",
1470
+ "MACHINE_ROLE_IS_MISSING",
1464
1471
  "STS_DISABLED_IN_REGION",
1465
1472
  "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES",
1466
1473
  "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION",
@@ -1542,6 +1549,7 @@
1542
1549
  "VpcConfig":{"shape":"VpcConfig"},
1543
1550
  "InstanceType":{"shape":"String"},
1544
1551
  "Platform":{"shape":"PlatformType"},
1552
+ "IamRoleArn":{"shape":"Arn"},
1545
1553
  "State":{"shape":"ImageBuilderState"},
1546
1554
  "StateChangeReason":{"shape":"ImageBuilderStateChangeReason"},
1547
1555
  "CreatedTime":{"shape":"Timestamp"},
@@ -1929,6 +1937,7 @@
1929
1937
  "FEEDBACK_URL",
1930
1938
  "THEME_NAME",
1931
1939
  "USER_SETTINGS",
1940
+ "IAM_ROLE_ARN",
1932
1941
  "ACCESS_ENDPOINTS"
1933
1942
  ]
1934
1943
  },
@@ -2141,7 +2150,8 @@
2141
2150
  "EnableDefaultInternetAccess":{"shape":"BooleanObject"},
2142
2151
  "DomainJoinInfo":{"shape":"DomainJoinInfo"},
2143
2152
  "IdleDisconnectTimeoutInSeconds":{"shape":"Integer"},
2144
- "AttributesToDelete":{"shape":"FleetAttributes"}
2153
+ "AttributesToDelete":{"shape":"FleetAttributes"},
2154
+ "IamRoleArn":{"shape":"Arn"}
2145
2155
  }
2146
2156
  },
2147
2157
  "UpdateFleetResult":{
@@ -2763,6 +2763,15 @@
2763
2763
  "input":{"shape":"ModifyVpnTunnelCertificateRequest"},
2764
2764
  "output":{"shape":"ModifyVpnTunnelCertificateResult"}
2765
2765
  },
2766
+ "ModifyVpnTunnelOptions":{
2767
+ "name":"ModifyVpnTunnelOptions",
2768
+ "http":{
2769
+ "method":"POST",
2770
+ "requestUri":"/"
2771
+ },
2772
+ "input":{"shape":"ModifyVpnTunnelOptionsRequest"},
2773
+ "output":{"shape":"ModifyVpnTunnelOptionsResult"}
2774
+ },
2766
2775
  "MonitorInstances":{
2767
2776
  "name":"MonitorInstances",
2768
2777
  "http":{
@@ -13662,6 +13671,35 @@
13662
13671
  "xen"
13663
13672
  ]
13664
13673
  },
13674
+ "IKEVersionsList":{
13675
+ "type":"list",
13676
+ "member":{
13677
+ "shape":"IKEVersionsListValue",
13678
+ "locationName":"item"
13679
+ }
13680
+ },
13681
+ "IKEVersionsListValue":{
13682
+ "type":"structure",
13683
+ "members":{
13684
+ "Value":{
13685
+ "shape":"String",
13686
+ "locationName":"value"
13687
+ }
13688
+ }
13689
+ },
13690
+ "IKEVersionsRequestList":{
13691
+ "type":"list",
13692
+ "member":{
13693
+ "shape":"IKEVersionsRequestListValue",
13694
+ "locationName":"item"
13695
+ }
13696
+ },
13697
+ "IKEVersionsRequestListValue":{
13698
+ "type":"structure",
13699
+ "members":{
13700
+ "Value":{"shape":"String"}
13701
+ }
13702
+ },
13665
13703
  "IamInstanceProfile":{
13666
13704
  "type":"structure",
13667
13705
  "members":{
@@ -17523,6 +17561,70 @@
17523
17561
  }
17524
17562
  }
17525
17563
  },
17564
+ "ModifyVpnTunnelOptionsRequest":{
17565
+ "type":"structure",
17566
+ "required":[
17567
+ "VpnConnectionId",
17568
+ "VpnTunnelOutsideIpAddress",
17569
+ "TunnelOptions"
17570
+ ],
17571
+ "members":{
17572
+ "VpnConnectionId":{"shape":"String"},
17573
+ "VpnTunnelOutsideIpAddress":{"shape":"String"},
17574
+ "TunnelOptions":{"shape":"ModifyVpnTunnelOptionsSpecification"},
17575
+ "DryRun":{"shape":"Boolean"}
17576
+ }
17577
+ },
17578
+ "ModifyVpnTunnelOptionsResult":{
17579
+ "type":"structure",
17580
+ "members":{
17581
+ "VpnConnection":{
17582
+ "shape":"VpnConnection",
17583
+ "locationName":"vpnConnection"
17584
+ }
17585
+ }
17586
+ },
17587
+ "ModifyVpnTunnelOptionsSpecification":{
17588
+ "type":"structure",
17589
+ "members":{
17590
+ "TunnelInsideCidr":{"shape":"String"},
17591
+ "PreSharedKey":{"shape":"String"},
17592
+ "Phase1LifetimeSeconds":{"shape":"Integer"},
17593
+ "Phase2LifetimeSeconds":{"shape":"Integer"},
17594
+ "RekeyMarginTimeSeconds":{"shape":"Integer"},
17595
+ "RekeyFuzzPercentage":{"shape":"Integer"},
17596
+ "ReplayWindowSize":{"shape":"Integer"},
17597
+ "DPDTimeoutSeconds":{"shape":"Integer"},
17598
+ "Phase1EncryptionAlgorithms":{
17599
+ "shape":"Phase1EncryptionAlgorithmsRequestList",
17600
+ "locationName":"Phase1EncryptionAlgorithm"
17601
+ },
17602
+ "Phase2EncryptionAlgorithms":{
17603
+ "shape":"Phase2EncryptionAlgorithmsRequestList",
17604
+ "locationName":"Phase2EncryptionAlgorithm"
17605
+ },
17606
+ "Phase1IntegrityAlgorithms":{
17607
+ "shape":"Phase1IntegrityAlgorithmsRequestList",
17608
+ "locationName":"Phase1IntegrityAlgorithm"
17609
+ },
17610
+ "Phase2IntegrityAlgorithms":{
17611
+ "shape":"Phase2IntegrityAlgorithmsRequestList",
17612
+ "locationName":"Phase2IntegrityAlgorithm"
17613
+ },
17614
+ "Phase1DHGroupNumbers":{
17615
+ "shape":"Phase1DHGroupNumbersRequestList",
17616
+ "locationName":"Phase1DHGroupNumber"
17617
+ },
17618
+ "Phase2DHGroupNumbers":{
17619
+ "shape":"Phase2DHGroupNumbersRequestList",
17620
+ "locationName":"Phase2DHGroupNumber"
17621
+ },
17622
+ "IKEVersions":{
17623
+ "shape":"IKEVersionsRequestList",
17624
+ "locationName":"IKEVersion"
17625
+ }
17626
+ }
17627
+ },
17526
17628
  "MonitorInstancesRequest":{
17527
17629
  "type":"structure",
17528
17630
  "required":["InstanceIds"],
@@ -18282,6 +18384,180 @@
18282
18384
  "type":"string",
18283
18385
  "enum":["all"]
18284
18386
  },
18387
+ "Phase1DHGroupNumbersList":{
18388
+ "type":"list",
18389
+ "member":{
18390
+ "shape":"Phase1DHGroupNumbersListValue",
18391
+ "locationName":"item"
18392
+ }
18393
+ },
18394
+ "Phase1DHGroupNumbersListValue":{
18395
+ "type":"structure",
18396
+ "members":{
18397
+ "Value":{
18398
+ "shape":"Integer",
18399
+ "locationName":"value"
18400
+ }
18401
+ }
18402
+ },
18403
+ "Phase1DHGroupNumbersRequestList":{
18404
+ "type":"list",
18405
+ "member":{
18406
+ "shape":"Phase1DHGroupNumbersRequestListValue",
18407
+ "locationName":"item"
18408
+ }
18409
+ },
18410
+ "Phase1DHGroupNumbersRequestListValue":{
18411
+ "type":"structure",
18412
+ "members":{
18413
+ "Value":{"shape":"Integer"}
18414
+ }
18415
+ },
18416
+ "Phase1EncryptionAlgorithmsList":{
18417
+ "type":"list",
18418
+ "member":{
18419
+ "shape":"Phase1EncryptionAlgorithmsListValue",
18420
+ "locationName":"item"
18421
+ }
18422
+ },
18423
+ "Phase1EncryptionAlgorithmsListValue":{
18424
+ "type":"structure",
18425
+ "members":{
18426
+ "Value":{
18427
+ "shape":"String",
18428
+ "locationName":"value"
18429
+ }
18430
+ }
18431
+ },
18432
+ "Phase1EncryptionAlgorithmsRequestList":{
18433
+ "type":"list",
18434
+ "member":{
18435
+ "shape":"Phase1EncryptionAlgorithmsRequestListValue",
18436
+ "locationName":"item"
18437
+ }
18438
+ },
18439
+ "Phase1EncryptionAlgorithmsRequestListValue":{
18440
+ "type":"structure",
18441
+ "members":{
18442
+ "Value":{"shape":"String"}
18443
+ }
18444
+ },
18445
+ "Phase1IntegrityAlgorithmsList":{
18446
+ "type":"list",
18447
+ "member":{
18448
+ "shape":"Phase1IntegrityAlgorithmsListValue",
18449
+ "locationName":"item"
18450
+ }
18451
+ },
18452
+ "Phase1IntegrityAlgorithmsListValue":{
18453
+ "type":"structure",
18454
+ "members":{
18455
+ "Value":{
18456
+ "shape":"String",
18457
+ "locationName":"value"
18458
+ }
18459
+ }
18460
+ },
18461
+ "Phase1IntegrityAlgorithmsRequestList":{
18462
+ "type":"list",
18463
+ "member":{
18464
+ "shape":"Phase1IntegrityAlgorithmsRequestListValue",
18465
+ "locationName":"item"
18466
+ }
18467
+ },
18468
+ "Phase1IntegrityAlgorithmsRequestListValue":{
18469
+ "type":"structure",
18470
+ "members":{
18471
+ "Value":{"shape":"String"}
18472
+ }
18473
+ },
18474
+ "Phase2DHGroupNumbersList":{
18475
+ "type":"list",
18476
+ "member":{
18477
+ "shape":"Phase2DHGroupNumbersListValue",
18478
+ "locationName":"item"
18479
+ }
18480
+ },
18481
+ "Phase2DHGroupNumbersListValue":{
18482
+ "type":"structure",
18483
+ "members":{
18484
+ "Value":{
18485
+ "shape":"Integer",
18486
+ "locationName":"value"
18487
+ }
18488
+ }
18489
+ },
18490
+ "Phase2DHGroupNumbersRequestList":{
18491
+ "type":"list",
18492
+ "member":{
18493
+ "shape":"Phase2DHGroupNumbersRequestListValue",
18494
+ "locationName":"item"
18495
+ }
18496
+ },
18497
+ "Phase2DHGroupNumbersRequestListValue":{
18498
+ "type":"structure",
18499
+ "members":{
18500
+ "Value":{"shape":"Integer"}
18501
+ }
18502
+ },
18503
+ "Phase2EncryptionAlgorithmsList":{
18504
+ "type":"list",
18505
+ "member":{
18506
+ "shape":"Phase2EncryptionAlgorithmsListValue",
18507
+ "locationName":"item"
18508
+ }
18509
+ },
18510
+ "Phase2EncryptionAlgorithmsListValue":{
18511
+ "type":"structure",
18512
+ "members":{
18513
+ "Value":{
18514
+ "shape":"String",
18515
+ "locationName":"value"
18516
+ }
18517
+ }
18518
+ },
18519
+ "Phase2EncryptionAlgorithmsRequestList":{
18520
+ "type":"list",
18521
+ "member":{
18522
+ "shape":"Phase2EncryptionAlgorithmsRequestListValue",
18523
+ "locationName":"item"
18524
+ }
18525
+ },
18526
+ "Phase2EncryptionAlgorithmsRequestListValue":{
18527
+ "type":"structure",
18528
+ "members":{
18529
+ "Value":{"shape":"String"}
18530
+ }
18531
+ },
18532
+ "Phase2IntegrityAlgorithmsList":{
18533
+ "type":"list",
18534
+ "member":{
18535
+ "shape":"Phase2IntegrityAlgorithmsListValue",
18536
+ "locationName":"item"
18537
+ }
18538
+ },
18539
+ "Phase2IntegrityAlgorithmsListValue":{
18540
+ "type":"structure",
18541
+ "members":{
18542
+ "Value":{
18543
+ "shape":"String",
18544
+ "locationName":"value"
18545
+ }
18546
+ }
18547
+ },
18548
+ "Phase2IntegrityAlgorithmsRequestList":{
18549
+ "type":"list",
18550
+ "member":{
18551
+ "shape":"Phase2IntegrityAlgorithmsRequestListValue",
18552
+ "locationName":"item"
18553
+ }
18554
+ },
18555
+ "Phase2IntegrityAlgorithmsRequestListValue":{
18556
+ "type":"structure",
18557
+ "members":{
18558
+ "Value":{"shape":"String"}
18559
+ }
18560
+ },
18285
18561
  "Placement":{
18286
18562
  "type":"structure",
18287
18563
  "members":{
@@ -23644,10 +23920,79 @@
23644
23920
  "udp"
23645
23921
  ]
23646
23922
  },
23923
+ "TunnelOption":{
23924
+ "type":"structure",
23925
+ "members":{
23926
+ "OutsideIpAddress":{
23927
+ "shape":"String",
23928
+ "locationName":"outsideIpAddress"
23929
+ },
23930
+ "TunnelInsideCidr":{
23931
+ "shape":"String",
23932
+ "locationName":"tunnelInsideCidr"
23933
+ },
23934
+ "PreSharedKey":{
23935
+ "shape":"String",
23936
+ "locationName":"preSharedKey"
23937
+ },
23938
+ "Phase1LifetimeSeconds":{
23939
+ "shape":"Integer",
23940
+ "locationName":"phase1LifetimeSeconds"
23941
+ },
23942
+ "Phase2LifetimeSeconds":{
23943
+ "shape":"Integer",
23944
+ "locationName":"phase2LifetimeSeconds"
23945
+ },
23946
+ "RekeyMarginTimeSeconds":{
23947
+ "shape":"Integer",
23948
+ "locationName":"rekeyMarginTimeSeconds"
23949
+ },
23950
+ "RekeyFuzzPercentage":{
23951
+ "shape":"Integer",
23952
+ "locationName":"rekeyFuzzPercentage"
23953
+ },
23954
+ "ReplayWindowSize":{
23955
+ "shape":"Integer",
23956
+ "locationName":"replayWindowSize"
23957
+ },
23958
+ "DpdTimeoutSeconds":{
23959
+ "shape":"Integer",
23960
+ "locationName":"dpdTimeoutSeconds"
23961
+ },
23962
+ "Phase1EncryptionAlgorithms":{
23963
+ "shape":"Phase1EncryptionAlgorithmsList",
23964
+ "locationName":"phase1EncryptionAlgorithmSet"
23965
+ },
23966
+ "Phase2EncryptionAlgorithms":{
23967
+ "shape":"Phase2EncryptionAlgorithmsList",
23968
+ "locationName":"phase2EncryptionAlgorithmSet"
23969
+ },
23970
+ "Phase1IntegrityAlgorithms":{
23971
+ "shape":"Phase1IntegrityAlgorithmsList",
23972
+ "locationName":"phase1IntegrityAlgorithmSet"
23973
+ },
23974
+ "Phase2IntegrityAlgorithms":{
23975
+ "shape":"Phase2IntegrityAlgorithmsList",
23976
+ "locationName":"phase2IntegrityAlgorithmSet"
23977
+ },
23978
+ "Phase1DHGroupNumbers":{
23979
+ "shape":"Phase1DHGroupNumbersList",
23980
+ "locationName":"phase1DHGroupNumberSet"
23981
+ },
23982
+ "Phase2DHGroupNumbers":{
23983
+ "shape":"Phase2DHGroupNumbersList",
23984
+ "locationName":"phase2DHGroupNumberSet"
23985
+ },
23986
+ "IkeVersions":{
23987
+ "shape":"IKEVersionsList",
23988
+ "locationName":"ikeVersionSet"
23989
+ }
23990
+ }
23991
+ },
23647
23992
  "TunnelOptionsList":{
23648
23993
  "type":"list",
23649
23994
  "member":{
23650
- "shape":"VpnTunnelOptionsSpecification",
23995
+ "shape":"TunnelOption",
23651
23996
  "locationName":"item"
23652
23997
  }
23653
23998
  },
@@ -24861,6 +25206,10 @@
24861
25206
  "StaticRoutesOnly":{
24862
25207
  "shape":"Boolean",
24863
25208
  "locationName":"staticRoutesOnly"
25209
+ },
25210
+ "TunnelOptions":{
25211
+ "shape":"TunnelOptionsList",
25212
+ "locationName":"tunnelOptionSet"
24864
25213
  }
24865
25214
  }
24866
25215
  },
@@ -24871,7 +25220,7 @@
24871
25220
  "shape":"Boolean",
24872
25221
  "locationName":"staticRoutesOnly"
24873
25222
  },
24874
- "TunnelOptions":{"shape":"TunnelOptionsList"}
25223
+ "TunnelOptions":{"shape":"VpnTunnelOptionsSpecificationsList"}
24875
25224
  }
24876
25225
  },
24877
25226
  "VpnEcmpSupportValue":{
@@ -24973,9 +25322,47 @@
24973
25322
  "type":"structure",
24974
25323
  "members":{
24975
25324
  "TunnelInsideCidr":{"shape":"String"},
24976
- "PreSharedKey":{"shape":"String"}
25325
+ "PreSharedKey":{"shape":"String"},
25326
+ "Phase1LifetimeSeconds":{"shape":"Integer"},
25327
+ "Phase2LifetimeSeconds":{"shape":"Integer"},
25328
+ "RekeyMarginTimeSeconds":{"shape":"Integer"},
25329
+ "RekeyFuzzPercentage":{"shape":"Integer"},
25330
+ "ReplayWindowSize":{"shape":"Integer"},
25331
+ "DPDTimeoutSeconds":{"shape":"Integer"},
25332
+ "Phase1EncryptionAlgorithms":{
25333
+ "shape":"Phase1EncryptionAlgorithmsRequestList",
25334
+ "locationName":"Phase1EncryptionAlgorithm"
25335
+ },
25336
+ "Phase2EncryptionAlgorithms":{
25337
+ "shape":"Phase2EncryptionAlgorithmsRequestList",
25338
+ "locationName":"Phase2EncryptionAlgorithm"
25339
+ },
25340
+ "Phase1IntegrityAlgorithms":{
25341
+ "shape":"Phase1IntegrityAlgorithmsRequestList",
25342
+ "locationName":"Phase1IntegrityAlgorithm"
25343
+ },
25344
+ "Phase2IntegrityAlgorithms":{
25345
+ "shape":"Phase2IntegrityAlgorithmsRequestList",
25346
+ "locationName":"Phase2IntegrityAlgorithm"
25347
+ },
25348
+ "Phase1DHGroupNumbers":{
25349
+ "shape":"Phase1DHGroupNumbersRequestList",
25350
+ "locationName":"Phase1DHGroupNumber"
25351
+ },
25352
+ "Phase2DHGroupNumbers":{
25353
+ "shape":"Phase2DHGroupNumbersRequestList",
25354
+ "locationName":"Phase2DHGroupNumber"
25355
+ },
25356
+ "IKEVersions":{
25357
+ "shape":"IKEVersionsRequestList",
25358
+ "locationName":"IKEVersion"
25359
+ }
24977
25360
  }
24978
25361
  },
25362
+ "VpnTunnelOptionsSpecificationsList":{
25363
+ "type":"list",
25364
+ "member":{"shape":"VpnTunnelOptionsSpecification"}
25365
+ },
24979
25366
  "WithdrawByoipCidrRequest":{
24980
25367
  "type":"structure",
24981
25368
  "required":["Cidr"],