aws-sdk-core 2.11.570 → 2.11.575

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "pagination": {
3
+ "DescribeConnectorProfiles": {
4
+ "input_token": "nextToken",
5
+ "output_token": "nextToken",
6
+ "limit_key": "maxResults"
7
+ },
8
+ "DescribeConnectors": {
9
+ "input_token": "nextToken",
10
+ "output_token": "nextToken"
11
+ },
12
+ "DescribeFlowExecutionRecords": {
13
+ "input_token": "nextToken",
14
+ "output_token": "nextToken",
15
+ "limit_key": "maxResults"
16
+ },
17
+ "ListFlows": {
18
+ "input_token": "nextToken",
19
+ "output_token": "nextToken",
20
+ "limit_key": "maxResults"
21
+ }
22
+ }
23
+ }
@@ -231,6 +231,19 @@
231
231
  {"shape":"InconsistentQuantities"}
232
232
  ]
233
233
  },
234
+ "CreateMonitoringSubscription":{
235
+ "name":"CreateMonitoringSubscription2020_05_31",
236
+ "http":{
237
+ "method":"POST",
238
+ "requestUri":"/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
239
+ },
240
+ "input":{"shape":"CreateMonitoringSubscriptionRequest"},
241
+ "output":{"shape":"CreateMonitoringSubscriptionResult"},
242
+ "errors":[
243
+ {"shape":"AccessDenied"},
244
+ {"shape":"NoSuchDistribution"}
245
+ ]
246
+ },
234
247
  "CreateOriginRequestPolicy":{
235
248
  "name":"CreateOriginRequestPolicy2020_05_31",
236
249
  "http":{
@@ -396,6 +409,19 @@
396
409
  {"shape":"FieldLevelEncryptionProfileInUse"}
397
410
  ]
398
411
  },
412
+ "DeleteMonitoringSubscription":{
413
+ "name":"DeleteMonitoringSubscription2020_05_31",
414
+ "http":{
415
+ "method":"DELETE",
416
+ "requestUri":"/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
417
+ },
418
+ "input":{"shape":"DeleteMonitoringSubscriptionRequest"},
419
+ "output":{"shape":"DeleteMonitoringSubscriptionResult"},
420
+ "errors":[
421
+ {"shape":"AccessDenied"},
422
+ {"shape":"NoSuchDistribution"}
423
+ ]
424
+ },
399
425
  "DeleteOriginRequestPolicy":{
400
426
  "name":"DeleteOriginRequestPolicy2020_05_31",
401
427
  "http":{
@@ -589,6 +615,19 @@
589
615
  {"shape":"AccessDenied"}
590
616
  ]
591
617
  },
618
+ "GetMonitoringSubscription":{
619
+ "name":"GetMonitoringSubscription2020_05_31",
620
+ "http":{
621
+ "method":"GET",
622
+ "requestUri":"/2020-05-31/distributions/{DistributionId}/monitoring-subscription"
623
+ },
624
+ "input":{"shape":"GetMonitoringSubscriptionRequest"},
625
+ "output":{"shape":"GetMonitoringSubscriptionResult"},
626
+ "errors":[
627
+ {"shape":"AccessDenied"},
628
+ {"shape":"NoSuchDistribution"}
629
+ ]
630
+ },
592
631
  "GetOriginRequestPolicy":{
593
632
  "name":"GetOriginRequestPolicy2020_05_31",
594
633
  "http":{
@@ -1718,6 +1757,33 @@
1718
1757
  },
1719
1758
  "payload":"Invalidation"
1720
1759
  },
1760
+ "CreateMonitoringSubscriptionRequest":{
1761
+ "type":"structure",
1762
+ "required":[
1763
+ "MonitoringSubscription",
1764
+ "DistributionId"
1765
+ ],
1766
+ "members":{
1767
+ "DistributionId":{
1768
+ "shape":"string",
1769
+ "location":"uri",
1770
+ "locationName":"DistributionId"
1771
+ },
1772
+ "MonitoringSubscription":{
1773
+ "shape":"MonitoringSubscription",
1774
+ "locationName":"MonitoringSubscription",
1775
+ "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2020-05-31/"}
1776
+ }
1777
+ },
1778
+ "payload":"MonitoringSubscription"
1779
+ },
1780
+ "CreateMonitoringSubscriptionResult":{
1781
+ "type":"structure",
1782
+ "members":{
1783
+ "MonitoringSubscription":{"shape":"MonitoringSubscription"}
1784
+ },
1785
+ "payload":"MonitoringSubscription"
1786
+ },
1721
1787
  "CreateOriginRequestPolicyRequest":{
1722
1788
  "type":"structure",
1723
1789
  "required":["OriginRequestPolicyConfig"],
@@ -1999,6 +2065,22 @@
1999
2065
  }
2000
2066
  }
2001
2067
  },
2068
+ "DeleteMonitoringSubscriptionRequest":{
2069
+ "type":"structure",
2070
+ "required":["DistributionId"],
2071
+ "members":{
2072
+ "DistributionId":{
2073
+ "shape":"string",
2074
+ "location":"uri",
2075
+ "locationName":"DistributionId"
2076
+ }
2077
+ }
2078
+ },
2079
+ "DeleteMonitoringSubscriptionResult":{
2080
+ "type":"structure",
2081
+ "members":{
2082
+ }
2083
+ },
2002
2084
  "DeleteOriginRequestPolicyRequest":{
2003
2085
  "type":"structure",
2004
2086
  "required":["Id"],
@@ -2725,6 +2807,24 @@
2725
2807
  },
2726
2808
  "payload":"Invalidation"
2727
2809
  },
2810
+ "GetMonitoringSubscriptionRequest":{
2811
+ "type":"structure",
2812
+ "required":["DistributionId"],
2813
+ "members":{
2814
+ "DistributionId":{
2815
+ "shape":"string",
2816
+ "location":"uri",
2817
+ "locationName":"DistributionId"
2818
+ }
2819
+ }
2820
+ },
2821
+ "GetMonitoringSubscriptionResult":{
2822
+ "type":"structure",
2823
+ "members":{
2824
+ "MonitoringSubscription":{"shape":"MonitoringSubscription"}
2825
+ },
2826
+ "payload":"MonitoringSubscription"
2827
+ },
2728
2828
  "GetOriginRequestPolicyConfigRequest":{
2729
2829
  "type":"structure",
2730
2830
  "required":["Id"],
@@ -3600,6 +3700,12 @@
3600
3700
  "error":{"httpStatusCode":400},
3601
3701
  "exception":true
3602
3702
  },
3703
+ "MonitoringSubscription":{
3704
+ "type":"structure",
3705
+ "members":{
3706
+ "RealtimeMetricsSubscriptionConfig":{"shape":"RealtimeMetricsSubscriptionConfig"}
3707
+ }
3708
+ },
3603
3709
  "NoSuchCachePolicy":{
3604
3710
  "type":"structure",
3605
3711
  "members":{
@@ -4152,6 +4258,20 @@
4152
4258
  "locationName":"Name"
4153
4259
  }
4154
4260
  },
4261
+ "RealtimeMetricsSubscriptionConfig":{
4262
+ "type":"structure",
4263
+ "required":["RealtimeMetricsSubscriptionStatus"],
4264
+ "members":{
4265
+ "RealtimeMetricsSubscriptionStatus":{"shape":"RealtimeMetricsSubscriptionStatus"}
4266
+ }
4267
+ },
4268
+ "RealtimeMetricsSubscriptionStatus":{
4269
+ "type":"string",
4270
+ "enum":[
4271
+ "Enabled",
4272
+ "Disabled"
4273
+ ]
4274
+ },
4155
4275
  "ResourceARN":{
4156
4276
  "type":"string",
4157
4277
  "pattern":"arn:aws(-cn)?:cloudfront::[0-9]+:.*"
@@ -71,17 +71,29 @@
71
71
  "AWSRegion":{
72
72
  "type":"string",
73
73
  "enum":[
74
- "us-east-1",
75
- "us-west-1",
76
- "us-west-2",
77
- "eu-central-1",
78
- "eu-west-1",
74
+ "af-south-1",
75
+ "ap-east-1",
76
+ "ap-south-1",
79
77
  "ap-southeast-1",
80
78
  "ap-southeast-2",
81
79
  "ap-northeast-1",
82
- "eu-north-1",
80
+ "ap-northeast-2",
83
81
  "ap-northeast-3",
84
- "ap-east-1"
82
+ "ca-central-1",
83
+ "eu-central-1",
84
+ "eu-west-1",
85
+ "eu-west-2",
86
+ "eu-west-3",
87
+ "eu-north-1",
88
+ "eu-south-1",
89
+ "me-south-1",
90
+ "sa-east-1",
91
+ "us-east-1",
92
+ "us-east-2",
93
+ "us-west-1",
94
+ "us-west-2",
95
+ "cn-north-1",
96
+ "cn-northwest-1"
85
97
  ]
86
98
  },
87
99
  "AdditionalArtifact":{
@@ -139,7 +151,11 @@
139
151
  "exception":true
140
152
  },
141
153
  "ErrorMessage":{"type":"string"},
142
- "GenericString":{"type":"string"},
154
+ "GenericString":{
155
+ "type":"string",
156
+ "max":256,
157
+ "pattern":"[A-Za-z0-9_\\.\\-=]*"
158
+ },
143
159
  "InternalErrorException":{
144
160
  "type":"structure",
145
161
  "members":{
@@ -244,7 +260,8 @@
244
260
  },
245
261
  "S3Bucket":{
246
262
  "type":"string",
247
- "max":256
263
+ "max":256,
264
+ "pattern":"[A-Za-z0-9_\\.\\-]+"
248
265
  },
249
266
  "S3Prefix":{
250
267
  "type":"string",
@@ -263,7 +280,8 @@
263
280
  "type":"string",
264
281
  "enum":[
265
282
  "HOURLY",
266
- "DAILY"
283
+ "DAILY",
284
+ "MONTHLY"
267
285
  ]
268
286
  },
269
287
  "ValidationException":{
@@ -1748,7 +1748,9 @@
1748
1748
  "IncludePartitionValue":{"shape":"BooleanOptional"},
1749
1749
  "PartitionIncludeSchemaTable":{"shape":"BooleanOptional"},
1750
1750
  "IncludeTableAlterOperations":{"shape":"BooleanOptional"},
1751
- "IncludeControlDetails":{"shape":"BooleanOptional"}
1751
+ "IncludeControlDetails":{"shape":"BooleanOptional"},
1752
+ "MessageMaxBytes":{"shape":"IntegerOptional"},
1753
+ "IncludeNullAndEmpty":{"shape":"BooleanOptional"}
1752
1754
  }
1753
1755
  },
1754
1756
  "KeyList":{
@@ -1765,7 +1767,8 @@
1765
1767
  "IncludePartitionValue":{"shape":"BooleanOptional"},
1766
1768
  "PartitionIncludeSchemaTable":{"shape":"BooleanOptional"},
1767
1769
  "IncludeTableAlterOperations":{"shape":"BooleanOptional"},
1768
- "IncludeControlDetails":{"shape":"BooleanOptional"}
1770
+ "IncludeControlDetails":{"shape":"BooleanOptional"},
1771
+ "IncludeNullAndEmpty":{"shape":"BooleanOptional"}
1769
1772
  }
1770
1773
  },
1771
1774
  "ListTagsForResourceMessage":{
@@ -760,6 +760,15 @@
760
760
  "input":{"shape":"CreateTransitGatewayPeeringAttachmentRequest"},
761
761
  "output":{"shape":"CreateTransitGatewayPeeringAttachmentResult"}
762
762
  },
763
+ "CreateTransitGatewayPrefixListReference":{
764
+ "name":"CreateTransitGatewayPrefixListReference",
765
+ "http":{
766
+ "method":"POST",
767
+ "requestUri":"/"
768
+ },
769
+ "input":{"shape":"CreateTransitGatewayPrefixListReferenceRequest"},
770
+ "output":{"shape":"CreateTransitGatewayPrefixListReferenceResult"}
771
+ },
763
772
  "CreateTransitGatewayRoute":{
764
773
  "name":"CreateTransitGatewayRoute",
765
774
  "http":{
@@ -1185,6 +1194,15 @@
1185
1194
  "input":{"shape":"DeleteTransitGatewayPeeringAttachmentRequest"},
1186
1195
  "output":{"shape":"DeleteTransitGatewayPeeringAttachmentResult"}
1187
1196
  },
1197
+ "DeleteTransitGatewayPrefixListReference":{
1198
+ "name":"DeleteTransitGatewayPrefixListReference",
1199
+ "http":{
1200
+ "method":"POST",
1201
+ "requestUri":"/"
1202
+ },
1203
+ "input":{"shape":"DeleteTransitGatewayPrefixListReferenceRequest"},
1204
+ "output":{"shape":"DeleteTransitGatewayPrefixListReferenceResult"}
1205
+ },
1188
1206
  "DeleteTransitGatewayRoute":{
1189
1207
  "name":"DeleteTransitGatewayRoute",
1190
1208
  "http":{
@@ -2782,6 +2800,15 @@
2782
2800
  "input":{"shape":"GetTransitGatewayMulticastDomainAssociationsRequest"},
2783
2801
  "output":{"shape":"GetTransitGatewayMulticastDomainAssociationsResult"}
2784
2802
  },
2803
+ "GetTransitGatewayPrefixListReferences":{
2804
+ "name":"GetTransitGatewayPrefixListReferences",
2805
+ "http":{
2806
+ "method":"POST",
2807
+ "requestUri":"/"
2808
+ },
2809
+ "input":{"shape":"GetTransitGatewayPrefixListReferencesRequest"},
2810
+ "output":{"shape":"GetTransitGatewayPrefixListReferencesResult"}
2811
+ },
2785
2812
  "GetTransitGatewayRouteTableAssociations":{
2786
2813
  "name":"GetTransitGatewayRouteTableAssociations",
2787
2814
  "http":{
@@ -3090,6 +3117,24 @@
3090
3117
  "input":{"shape":"ModifyTrafficMirrorSessionRequest"},
3091
3118
  "output":{"shape":"ModifyTrafficMirrorSessionResult"}
3092
3119
  },
3120
+ "ModifyTransitGateway":{
3121
+ "name":"ModifyTransitGateway",
3122
+ "http":{
3123
+ "method":"POST",
3124
+ "requestUri":"/"
3125
+ },
3126
+ "input":{"shape":"ModifyTransitGatewayRequest"},
3127
+ "output":{"shape":"ModifyTransitGatewayResult"}
3128
+ },
3129
+ "ModifyTransitGatewayPrefixListReference":{
3130
+ "name":"ModifyTransitGatewayPrefixListReference",
3131
+ "http":{
3132
+ "method":"POST",
3133
+ "requestUri":"/"
3134
+ },
3135
+ "input":{"shape":"ModifyTransitGatewayPrefixListReferenceRequest"},
3136
+ "output":{"shape":"ModifyTransitGatewayPrefixListReferenceResult"}
3137
+ },
3093
3138
  "ModifyTransitGatewayVpcAttachment":{
3094
3139
  "name":"ModifyTransitGatewayVpcAttachment",
3095
3140
  "http":{
@@ -3187,6 +3232,15 @@
3187
3232
  "input":{"shape":"ModifyVpnConnectionRequest"},
3188
3233
  "output":{"shape":"ModifyVpnConnectionResult"}
3189
3234
  },
3235
+ "ModifyVpnConnectionOptions":{
3236
+ "name":"ModifyVpnConnectionOptions",
3237
+ "http":{
3238
+ "method":"POST",
3239
+ "requestUri":"/"
3240
+ },
3241
+ "input":{"shape":"ModifyVpnConnectionOptionsRequest"},
3242
+ "output":{"shape":"ModifyVpnConnectionOptionsResult"}
3243
+ },
3190
3244
  "ModifyVpnTunnelCertificate":{
3191
3245
  "name":"ModifyVpnTunnelCertificate",
3192
3246
  "http":{
@@ -7924,6 +7978,29 @@
7924
7978
  }
7925
7979
  }
7926
7980
  },
7981
+ "CreateTransitGatewayPrefixListReferenceRequest":{
7982
+ "type":"structure",
7983
+ "required":[
7984
+ "TransitGatewayRouteTableId",
7985
+ "PrefixListId"
7986
+ ],
7987
+ "members":{
7988
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
7989
+ "PrefixListId":{"shape":"PrefixListResourceId"},
7990
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
7991
+ "Blackhole":{"shape":"Boolean"},
7992
+ "DryRun":{"shape":"Boolean"}
7993
+ }
7994
+ },
7995
+ "CreateTransitGatewayPrefixListReferenceResult":{
7996
+ "type":"structure",
7997
+ "members":{
7998
+ "TransitGatewayPrefixListReference":{
7999
+ "shape":"TransitGatewayPrefixListReference",
8000
+ "locationName":"transitGatewayPrefixListReference"
8001
+ }
8002
+ }
8003
+ },
7927
8004
  "CreateTransitGatewayRequest":{
7928
8005
  "type":"structure",
7929
8006
  "members":{
@@ -9188,6 +9265,27 @@
9188
9265
  }
9189
9266
  }
9190
9267
  },
9268
+ "DeleteTransitGatewayPrefixListReferenceRequest":{
9269
+ "type":"structure",
9270
+ "required":[
9271
+ "TransitGatewayRouteTableId",
9272
+ "PrefixListId"
9273
+ ],
9274
+ "members":{
9275
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
9276
+ "PrefixListId":{"shape":"PrefixListResourceId"},
9277
+ "DryRun":{"shape":"Boolean"}
9278
+ }
9279
+ },
9280
+ "DeleteTransitGatewayPrefixListReferenceResult":{
9281
+ "type":"structure",
9282
+ "members":{
9283
+ "TransitGatewayPrefixListReference":{
9284
+ "shape":"TransitGatewayPrefixListReference",
9285
+ "locationName":"transitGatewayPrefixListReference"
9286
+ }
9287
+ }
9288
+ },
9191
9289
  "DeleteTransitGatewayRequest":{
9192
9290
  "type":"structure",
9193
9291
  "required":["TransitGatewayId"],
@@ -15968,6 +16066,33 @@
15968
16066
  }
15969
16067
  }
15970
16068
  },
16069
+ "GetTransitGatewayPrefixListReferencesRequest":{
16070
+ "type":"structure",
16071
+ "required":["TransitGatewayRouteTableId"],
16072
+ "members":{
16073
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
16074
+ "Filters":{
16075
+ "shape":"FilterList",
16076
+ "locationName":"Filter"
16077
+ },
16078
+ "MaxResults":{"shape":"TransitGatewayMaxResults"},
16079
+ "NextToken":{"shape":"String"},
16080
+ "DryRun":{"shape":"Boolean"}
16081
+ }
16082
+ },
16083
+ "GetTransitGatewayPrefixListReferencesResult":{
16084
+ "type":"structure",
16085
+ "members":{
16086
+ "TransitGatewayPrefixListReferences":{
16087
+ "shape":"TransitGatewayPrefixListReferenceSet",
16088
+ "locationName":"transitGatewayPrefixListReferenceSet"
16089
+ },
16090
+ "NextToken":{
16091
+ "shape":"String",
16092
+ "locationName":"nextToken"
16093
+ }
16094
+ }
16095
+ },
15971
16096
  "GetTransitGatewayRouteTableAssociationsRequest":{
15972
16097
  "type":"structure",
15973
16098
  "required":["TransitGatewayRouteTableId"],
@@ -21275,6 +21400,60 @@
21275
21400
  }
21276
21401
  }
21277
21402
  },
21403
+ "ModifyTransitGatewayOptions":{
21404
+ "type":"structure",
21405
+ "members":{
21406
+ "VpnEcmpSupport":{"shape":"VpnEcmpSupportValue"},
21407
+ "DnsSupport":{"shape":"DnsSupportValue"},
21408
+ "AutoAcceptSharedAttachments":{"shape":"AutoAcceptSharedAttachmentsValue"},
21409
+ "DefaultRouteTableAssociation":{"shape":"DefaultRouteTableAssociationValue"},
21410
+ "AssociationDefaultRouteTableId":{"shape":"TransitGatewayRouteTableId"},
21411
+ "DefaultRouteTablePropagation":{"shape":"DefaultRouteTablePropagationValue"},
21412
+ "PropagationDefaultRouteTableId":{"shape":"TransitGatewayRouteTableId"}
21413
+ }
21414
+ },
21415
+ "ModifyTransitGatewayPrefixListReferenceRequest":{
21416
+ "type":"structure",
21417
+ "required":[
21418
+ "TransitGatewayRouteTableId",
21419
+ "PrefixListId"
21420
+ ],
21421
+ "members":{
21422
+ "TransitGatewayRouteTableId":{"shape":"TransitGatewayRouteTableId"},
21423
+ "PrefixListId":{"shape":"PrefixListResourceId"},
21424
+ "TransitGatewayAttachmentId":{"shape":"TransitGatewayAttachmentId"},
21425
+ "Blackhole":{"shape":"Boolean"},
21426
+ "DryRun":{"shape":"Boolean"}
21427
+ }
21428
+ },
21429
+ "ModifyTransitGatewayPrefixListReferenceResult":{
21430
+ "type":"structure",
21431
+ "members":{
21432
+ "TransitGatewayPrefixListReference":{
21433
+ "shape":"TransitGatewayPrefixListReference",
21434
+ "locationName":"transitGatewayPrefixListReference"
21435
+ }
21436
+ }
21437
+ },
21438
+ "ModifyTransitGatewayRequest":{
21439
+ "type":"structure",
21440
+ "required":["TransitGatewayId"],
21441
+ "members":{
21442
+ "TransitGatewayId":{"shape":"TransitGatewayId"},
21443
+ "Description":{"shape":"String"},
21444
+ "Options":{"shape":"ModifyTransitGatewayOptions"},
21445
+ "DryRun":{"shape":"Boolean"}
21446
+ }
21447
+ },
21448
+ "ModifyTransitGatewayResult":{
21449
+ "type":"structure",
21450
+ "members":{
21451
+ "TransitGateway":{
21452
+ "shape":"TransitGateway",
21453
+ "locationName":"transitGateway"
21454
+ }
21455
+ }
21456
+ },
21278
21457
  "ModifyTransitGatewayVpcAttachmentRequest":{
21279
21458
  "type":"structure",
21280
21459
  "required":["TransitGatewayAttachmentId"],
@@ -21500,6 +21679,27 @@
21500
21679
  }
21501
21680
  }
21502
21681
  },
21682
+ "ModifyVpnConnectionOptionsRequest":{
21683
+ "type":"structure",
21684
+ "required":["VpnConnectionId"],
21685
+ "members":{
21686
+ "VpnConnectionId":{"shape":"VpnConnectionId"},
21687
+ "LocalIpv4NetworkCidr":{"shape":"String"},
21688
+ "RemoteIpv4NetworkCidr":{"shape":"String"},
21689
+ "LocalIpv6NetworkCidr":{"shape":"String"},
21690
+ "RemoteIpv6NetworkCidr":{"shape":"String"},
21691
+ "DryRun":{"shape":"Boolean"}
21692
+ }
21693
+ },
21694
+ "ModifyVpnConnectionOptionsResult":{
21695
+ "type":"structure",
21696
+ "members":{
21697
+ "VpnConnection":{
21698
+ "shape":"VpnConnection",
21699
+ "locationName":"vpnConnection"
21700
+ }
21701
+ }
21702
+ },
21503
21703
  "ModifyVpnConnectionRequest":{
21504
21704
  "type":"structure",
21505
21705
  "required":["VpnConnectionId"],
@@ -21576,6 +21776,7 @@
21576
21776
  "RekeyFuzzPercentage":{"shape":"Integer"},
21577
21777
  "ReplayWindowSize":{"shape":"Integer"},
21578
21778
  "DPDTimeoutSeconds":{"shape":"Integer"},
21779
+ "DPDTimeoutAction":{"shape":"String"},
21579
21780
  "Phase1EncryptionAlgorithms":{
21580
21781
  "shape":"Phase1EncryptionAlgorithmsRequestList",
21581
21782
  "locationName":"Phase1EncryptionAlgorithm"
@@ -21603,7 +21804,8 @@
21603
21804
  "IKEVersions":{
21604
21805
  "shape":"IKEVersionsRequestList",
21605
21806
  "locationName":"IKEVersion"
21606
- }
21807
+ },
21808
+ "StartupAction":{"shape":"String"}
21607
21809
  }
21608
21810
  },
21609
21811
  "MonitorInstancesRequest":{
@@ -28616,6 +28818,68 @@
28616
28818
  "locationName":"item"
28617
28819
  }
28618
28820
  },
28821
+ "TransitGatewayPrefixListAttachment":{
28822
+ "type":"structure",
28823
+ "members":{
28824
+ "TransitGatewayAttachmentId":{
28825
+ "shape":"TransitGatewayAttachmentId",
28826
+ "locationName":"transitGatewayAttachmentId"
28827
+ },
28828
+ "ResourceType":{
28829
+ "shape":"TransitGatewayAttachmentResourceType",
28830
+ "locationName":"resourceType"
28831
+ },
28832
+ "ResourceId":{
28833
+ "shape":"String",
28834
+ "locationName":"resourceId"
28835
+ }
28836
+ }
28837
+ },
28838
+ "TransitGatewayPrefixListReference":{
28839
+ "type":"structure",
28840
+ "members":{
28841
+ "TransitGatewayRouteTableId":{
28842
+ "shape":"TransitGatewayRouteTableId",
28843
+ "locationName":"transitGatewayRouteTableId"
28844
+ },
28845
+ "PrefixListId":{
28846
+ "shape":"PrefixListResourceId",
28847
+ "locationName":"prefixListId"
28848
+ },
28849
+ "PrefixListOwnerId":{
28850
+ "shape":"String",
28851
+ "locationName":"prefixListOwnerId"
28852
+ },
28853
+ "State":{
28854
+ "shape":"TransitGatewayPrefixListReferenceState",
28855
+ "locationName":"state"
28856
+ },
28857
+ "Blackhole":{
28858
+ "shape":"Boolean",
28859
+ "locationName":"blackhole"
28860
+ },
28861
+ "TransitGatewayAttachment":{
28862
+ "shape":"TransitGatewayPrefixListAttachment",
28863
+ "locationName":"transitGatewayAttachment"
28864
+ }
28865
+ }
28866
+ },
28867
+ "TransitGatewayPrefixListReferenceSet":{
28868
+ "type":"list",
28869
+ "member":{
28870
+ "shape":"TransitGatewayPrefixListReference",
28871
+ "locationName":"item"
28872
+ }
28873
+ },
28874
+ "TransitGatewayPrefixListReferenceState":{
28875
+ "type":"string",
28876
+ "enum":[
28877
+ "pending",
28878
+ "available",
28879
+ "modifying",
28880
+ "deleting"
28881
+ ]
28882
+ },
28619
28883
  "TransitGatewayPropagation":{
28620
28884
  "type":"structure",
28621
28885
  "members":{
@@ -28669,6 +28933,10 @@
28669
28933
  "shape":"String",
28670
28934
  "locationName":"destinationCidrBlock"
28671
28935
  },
28936
+ "PrefixListId":{
28937
+ "shape":"PrefixListResourceId",
28938
+ "locationName":"prefixListId"
28939
+ },
28672
28940
  "TransitGatewayAttachments":{
28673
28941
  "shape":"TransitGatewayRouteAttachmentList",
28674
28942
  "locationName":"transitGatewayAttachments"
@@ -28979,6 +29247,10 @@
28979
29247
  "shape":"Integer",
28980
29248
  "locationName":"dpdTimeoutSeconds"
28981
29249
  },
29250
+ "DpdTimeoutAction":{
29251
+ "shape":"String",
29252
+ "locationName":"dpdTimeoutAction"
29253
+ },
28982
29254
  "Phase1EncryptionAlgorithms":{
28983
29255
  "shape":"Phase1EncryptionAlgorithmsList",
28984
29256
  "locationName":"phase1EncryptionAlgorithmSet"
@@ -29006,6 +29278,10 @@
29006
29278
  "IkeVersions":{
29007
29279
  "shape":"IKEVersionsList",
29008
29280
  "locationName":"ikeVersionSet"
29281
+ },
29282
+ "StartupAction":{
29283
+ "shape":"String",
29284
+ "locationName":"startupAction"
29009
29285
  }
29010
29286
  }
29011
29287
  },
@@ -29835,6 +30111,7 @@
29835
30111
  "enum":[
29836
30112
  "standard",
29837
30113
  "io1",
30114
+ "io2",
29838
30115
  "gp2",
29839
30116
  "sc1",
29840
30117
  "st1"
@@ -30415,6 +30692,22 @@
30415
30692
  "shape":"Boolean",
30416
30693
  "locationName":"staticRoutesOnly"
30417
30694
  },
30695
+ "LocalIpv4NetworkCidr":{
30696
+ "shape":"String",
30697
+ "locationName":"localIpv4NetworkCidr"
30698
+ },
30699
+ "RemoteIpv4NetworkCidr":{
30700
+ "shape":"String",
30701
+ "locationName":"remoteIpv4NetworkCidr"
30702
+ },
30703
+ "LocalIpv6NetworkCidr":{
30704
+ "shape":"String",
30705
+ "locationName":"localIpv6NetworkCidr"
30706
+ },
30707
+ "RemoteIpv6NetworkCidr":{
30708
+ "shape":"String",
30709
+ "locationName":"remoteIpv6NetworkCidr"
30710
+ },
30418
30711
  "TunnelInsideIpVersion":{
30419
30712
  "shape":"TunnelInsideIpVersion",
30420
30713
  "locationName":"tunnelInsideIpVersion"
@@ -30434,7 +30727,11 @@
30434
30727
  "locationName":"staticRoutesOnly"
30435
30728
  },
30436
30729
  "TunnelInsideIpVersion":{"shape":"TunnelInsideIpVersion"},
30437
- "TunnelOptions":{"shape":"VpnTunnelOptionsSpecificationsList"}
30730
+ "TunnelOptions":{"shape":"VpnTunnelOptionsSpecificationsList"},
30731
+ "LocalIpv4NetworkCidr":{"shape":"String"},
30732
+ "RemoteIpv4NetworkCidr":{"shape":"String"},
30733
+ "LocalIpv6NetworkCidr":{"shape":"String"},
30734
+ "RemoteIpv6NetworkCidr":{"shape":"String"}
30438
30735
  }
30439
30736
  },
30440
30737
  "VpnEcmpSupportValue":{
@@ -30545,6 +30842,7 @@
30545
30842
  "RekeyFuzzPercentage":{"shape":"Integer"},
30546
30843
  "ReplayWindowSize":{"shape":"Integer"},
30547
30844
  "DPDTimeoutSeconds":{"shape":"Integer"},
30845
+ "DPDTimeoutAction":{"shape":"String"},
30548
30846
  "Phase1EncryptionAlgorithms":{
30549
30847
  "shape":"Phase1EncryptionAlgorithmsRequestList",
30550
30848
  "locationName":"Phase1EncryptionAlgorithm"
@@ -30572,7 +30870,8 @@
30572
30870
  "IKEVersions":{
30573
30871
  "shape":"IKEVersionsRequestList",
30574
30872
  "locationName":"IKEVersion"
30575
- }
30873
+ },
30874
+ "StartupAction":{"shape":"String"}
30576
30875
  }
30577
30876
  },
30578
30877
  "VpnTunnelOptionsSpecificationsList":{