aws-sdk-ec2 1.247.0 → 1.251.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -550,7 +550,7 @@ module Aws::EC2
550
550
  # dry_run: false,
551
551
  # tag_specifications: [
552
552
  # {
553
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
553
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
554
554
  # tags: [
555
555
  # {
556
556
  # key: "String",
@@ -699,7 +699,7 @@ module Aws::EC2
699
699
  # quantity: 1, # required
700
700
  # tag_specifications: [
701
701
  # {
702
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
702
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
703
703
  # tags: [
704
704
  # {
705
705
  # key: "String",
@@ -999,7 +999,7 @@ module Aws::EC2
999
999
  # @return [String]
1000
1000
  #
1001
1001
  # @!attribute [rw] destination_prefix_list_id
1002
- # The prefix of the AWS service.
1002
+ # The prefix of the Amazon Web Service.
1003
1003
  # @return [String]
1004
1004
  #
1005
1005
  # @!attribute [rw] egress_only_internet_gateway_id
@@ -1164,6 +1164,8 @@ module Aws::EC2
1164
1164
  # {
1165
1165
  # ipv_6_address_count: 1,
1166
1166
  # ipv_6_addresses: ["String"],
1167
+ # ipv_6_prefix_count: 1,
1168
+ # ipv_6_prefixes: ["String"],
1167
1169
  # network_interface_id: "NetworkInterfaceId", # required
1168
1170
  # }
1169
1171
  #
@@ -1182,6 +1184,18 @@ module Aws::EC2
1182
1184
  # of IPv6 addresses.
1183
1185
  # @return [Array<String>]
1184
1186
  #
1187
+ # @!attribute [rw] ipv_6_prefix_count
1188
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
1189
+ # assigns to the network interface. You cannot use this option if you
1190
+ # use the `Ipv6Prefixes` option.
1191
+ # @return [Integer]
1192
+ #
1193
+ # @!attribute [rw] ipv_6_prefixes
1194
+ # One or more IPv6 Prefix Delegation prefixes assigned to the network
1195
+ # interface. You cannot use this option if you use the
1196
+ # `Ipv6PrefixCount` option.
1197
+ # @return [Array<String>]
1198
+ #
1185
1199
  # @!attribute [rw] network_interface_id
1186
1200
  # The ID of the network interface.
1187
1201
  # @return [String]
@@ -1191,6 +1205,8 @@ module Aws::EC2
1191
1205
  class AssignIpv6AddressesRequest < Struct.new(
1192
1206
  :ipv_6_address_count,
1193
1207
  :ipv_6_addresses,
1208
+ :ipv_6_prefix_count,
1209
+ :ipv_6_prefixes,
1194
1210
  :network_interface_id)
1195
1211
  SENSITIVE = []
1196
1212
  include Aws::Structure
@@ -1202,6 +1218,11 @@ module Aws::EC2
1202
1218
  # the request are not included.
1203
1219
  # @return [Array<String>]
1204
1220
  #
1221
+ # @!attribute [rw] assigned_ipv_6_prefixes
1222
+ # The IPv6 Prefix Delegation prefixes that are assigned to the network
1223
+ # interface.
1224
+ # @return [Array<String>]
1225
+ #
1205
1226
  # @!attribute [rw] network_interface_id
1206
1227
  # The ID of the network interface.
1207
1228
  # @return [String]
@@ -1210,6 +1231,7 @@ module Aws::EC2
1210
1231
  #
1211
1232
  class AssignIpv6AddressesResult < Struct.new(
1212
1233
  :assigned_ipv_6_addresses,
1234
+ :assigned_ipv_6_prefixes,
1213
1235
  :network_interface_id)
1214
1236
  SENSITIVE = []
1215
1237
  include Aws::Structure
@@ -1225,6 +1247,8 @@ module Aws::EC2
1225
1247
  # network_interface_id: "NetworkInterfaceId", # required
1226
1248
  # private_ip_addresses: ["String"],
1227
1249
  # secondary_private_ip_address_count: 1,
1250
+ # ipv_4_prefixes: ["String"],
1251
+ # ipv_4_prefix_count: 1,
1228
1252
  # }
1229
1253
  #
1230
1254
  # @!attribute [rw] allow_reassignment
@@ -1252,13 +1276,27 @@ module Aws::EC2
1252
1276
  # private IP addresses.
1253
1277
  # @return [Integer]
1254
1278
  #
1279
+ # @!attribute [rw] ipv_4_prefixes
1280
+ # One or more IPv4 Prefix Delegation prefixes assigned to the network
1281
+ # interface. You cannot use this option if you use the
1282
+ # `Ipv4PrefixCount` option.
1283
+ # @return [Array<String>]
1284
+ #
1285
+ # @!attribute [rw] ipv_4_prefix_count
1286
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
1287
+ # assigns to the network interface. You cannot use this option if you
1288
+ # use the `Ipv4 Prefixes` option.
1289
+ # @return [Integer]
1290
+ #
1255
1291
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesRequest AWS API Documentation
1256
1292
  #
1257
1293
  class AssignPrivateIpAddressesRequest < Struct.new(
1258
1294
  :allow_reassignment,
1259
1295
  :network_interface_id,
1260
1296
  :private_ip_addresses,
1261
- :secondary_private_ip_address_count)
1297
+ :secondary_private_ip_address_count,
1298
+ :ipv_4_prefixes,
1299
+ :ipv_4_prefix_count)
1262
1300
  SENSITIVE = []
1263
1301
  include Aws::Structure
1264
1302
  end
@@ -1271,11 +1309,17 @@ module Aws::EC2
1271
1309
  # The private IP addresses assigned to the network interface.
1272
1310
  # @return [Array<Types::AssignedPrivateIpAddress>]
1273
1311
  #
1312
+ # @!attribute [rw] assigned_ipv_4_prefixes
1313
+ # The IPv4 Prefix Delegation prefixes that are assigned to the network
1314
+ # interface.
1315
+ # @return [Array<Types::Ipv4PrefixSpecification>]
1316
+ #
1274
1317
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssignPrivateIpAddressesResult AWS API Documentation
1275
1318
  #
1276
1319
  class AssignPrivateIpAddressesResult < Struct.new(
1277
1320
  :network_interface_id,
1278
- :assigned_private_ip_addresses)
1321
+ :assigned_private_ip_addresses,
1322
+ :assigned_ipv_4_prefixes)
1279
1323
  SENSITIVE = []
1280
1324
  include Aws::Structure
1281
1325
  end
@@ -1532,7 +1576,7 @@ module Aws::EC2
1532
1576
  # @return [String]
1533
1577
  #
1534
1578
  # @!attribute [rw] encryption_kms_key_id
1535
- # The ID of the AWS KMS CMK used to encrypt the private key of the
1579
+ # The ID of the KMS key used to encrypt the private key of the
1536
1580
  # certificate.
1537
1581
  # @return [String]
1538
1582
  #
@@ -1586,6 +1630,61 @@ module Aws::EC2
1586
1630
  include Aws::Structure
1587
1631
  end
1588
1632
 
1633
+ # @note When making an API call, you may pass AssociateInstanceEventWindowRequest
1634
+ # data as a hash:
1635
+ #
1636
+ # {
1637
+ # dry_run: false,
1638
+ # instance_event_window_id: "InstanceEventWindowId", # required
1639
+ # association_target: { # required
1640
+ # instance_ids: ["InstanceId"],
1641
+ # instance_tags: [
1642
+ # {
1643
+ # key: "String",
1644
+ # value: "String",
1645
+ # },
1646
+ # ],
1647
+ # dedicated_host_ids: ["DedicatedHostId"],
1648
+ # },
1649
+ # }
1650
+ #
1651
+ # @!attribute [rw] dry_run
1652
+ # Checks whether you have the required permissions for the action,
1653
+ # without actually making the request, and provides an error response.
1654
+ # If you have the required permissions, the error response is
1655
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1656
+ # @return [Boolean]
1657
+ #
1658
+ # @!attribute [rw] instance_event_window_id
1659
+ # The ID of the event window.
1660
+ # @return [String]
1661
+ #
1662
+ # @!attribute [rw] association_target
1663
+ # One or more targets associated with the specified event window.
1664
+ # @return [Types::InstanceEventWindowAssociationRequest]
1665
+ #
1666
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateInstanceEventWindowRequest AWS API Documentation
1667
+ #
1668
+ class AssociateInstanceEventWindowRequest < Struct.new(
1669
+ :dry_run,
1670
+ :instance_event_window_id,
1671
+ :association_target)
1672
+ SENSITIVE = []
1673
+ include Aws::Structure
1674
+ end
1675
+
1676
+ # @!attribute [rw] instance_event_window
1677
+ # Information about the event window.
1678
+ # @return [Types::InstanceEventWindow]
1679
+ #
1680
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateInstanceEventWindowResult AWS API Documentation
1681
+ #
1682
+ class AssociateInstanceEventWindowResult < Struct.new(
1683
+ :instance_event_window)
1684
+ SENSITIVE = []
1685
+ include Aws::Structure
1686
+ end
1687
+
1589
1688
  # @note When making an API call, you may pass AssociateRouteTableRequest
1590
1689
  # data as a hash:
1591
1690
  #
@@ -2531,6 +2630,17 @@ module Aws::EC2
2531
2630
  # ],
2532
2631
  # },
2533
2632
  # ],
2633
+ # tag_specifications: [
2634
+ # {
2635
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
2636
+ # tags: [
2637
+ # {
2638
+ # key: "String",
2639
+ # value: "String",
2640
+ # },
2641
+ # ],
2642
+ # },
2643
+ # ],
2534
2644
  # cidr_ip: "String",
2535
2645
  # from_port: 1,
2536
2646
  # ip_protocol: "String",
@@ -2556,6 +2666,10 @@ module Aws::EC2
2556
2666
  # permissions.
2557
2667
  # @return [Array<Types::IpPermission>]
2558
2668
  #
2669
+ # @!attribute [rw] tag_specifications
2670
+ # The tags applied to the security group rule.
2671
+ # @return [Array<Types::TagSpecification>]
2672
+ #
2559
2673
  # @!attribute [rw] cidr_ip
2560
2674
  # Not supported. Use a set of IP permissions to specify the CIDR.
2561
2675
  # @return [String]
@@ -2589,6 +2703,7 @@ module Aws::EC2
2589
2703
  :dry_run,
2590
2704
  :group_id,
2591
2705
  :ip_permissions,
2706
+ :tag_specifications,
2592
2707
  :cidr_ip,
2593
2708
  :from_port,
2594
2709
  :ip_protocol,
@@ -2599,6 +2714,24 @@ module Aws::EC2
2599
2714
  include Aws::Structure
2600
2715
  end
2601
2716
 
2717
+ # @!attribute [rw] return
2718
+ # Returns `true` if the request succeeds; otherwise, returns an error.
2719
+ # @return [Boolean]
2720
+ #
2721
+ # @!attribute [rw] security_group_rules
2722
+ # Information about the outbound (egress) security group rules that
2723
+ # were added.
2724
+ # @return [Array<Types::SecurityGroupRule>]
2725
+ #
2726
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressResult AWS API Documentation
2727
+ #
2728
+ class AuthorizeSecurityGroupEgressResult < Struct.new(
2729
+ :return,
2730
+ :security_group_rules)
2731
+ SENSITIVE = []
2732
+ include Aws::Structure
2733
+ end
2734
+
2602
2735
  # @note When making an API call, you may pass AuthorizeSecurityGroupIngressRequest
2603
2736
  # data as a hash:
2604
2737
  #
@@ -2648,6 +2781,17 @@ module Aws::EC2
2648
2781
  # source_security_group_owner_id: "String",
2649
2782
  # to_port: 1,
2650
2783
  # dry_run: false,
2784
+ # tag_specifications: [
2785
+ # {
2786
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
2787
+ # tags: [
2788
+ # {
2789
+ # key: "String",
2790
+ # value: "String",
2791
+ # },
2792
+ # ],
2793
+ # },
2794
+ # ],
2651
2795
  # }
2652
2796
  #
2653
2797
  # @!attribute [rw] cidr_ip
@@ -2712,13 +2856,14 @@ module Aws::EC2
2712
2856
  # @return [String]
2713
2857
  #
2714
2858
  # @!attribute [rw] source_security_group_owner_id
2715
- # \[nondefault VPC\] The AWS account ID for the source security group,
2716
- # if the source security group is in a different account. You can't
2717
- # specify this parameter in combination with the following parameters:
2718
- # the CIDR IP address range, the IP protocol, the start of the port
2719
- # range, and the end of the port range. Creates rules that grant full
2720
- # ICMP, UDP, and TCP access. To create a rule with a specific IP
2721
- # protocol and port range, use a set of IP permissions instead.
2859
+ # \[nondefault VPC\] The Amazon Web Services account ID for the source
2860
+ # security group, if the source security group is in a different
2861
+ # account. You can't specify this parameter in combination with the
2862
+ # following parameters: the CIDR IP address range, the IP protocol,
2863
+ # the start of the port range, and the end of the port range. Creates
2864
+ # rules that grant full ICMP, UDP, and TCP access. To create a rule
2865
+ # with a specific IP protocol and port range, use a set of IP
2866
+ # permissions instead.
2722
2867
  # @return [String]
2723
2868
  #
2724
2869
  # @!attribute [rw] to_port
@@ -2737,6 +2882,10 @@ module Aws::EC2
2737
2882
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
2738
2883
  # @return [Boolean]
2739
2884
  #
2885
+ # @!attribute [rw] tag_specifications
2886
+ # \[VPC Only\] The tags applied to the security group rule.
2887
+ # @return [Array<Types::TagSpecification>]
2888
+ #
2740
2889
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest AWS API Documentation
2741
2890
  #
2742
2891
  class AuthorizeSecurityGroupIngressRequest < Struct.new(
@@ -2749,7 +2898,26 @@ module Aws::EC2
2749
2898
  :source_security_group_name,
2750
2899
  :source_security_group_owner_id,
2751
2900
  :to_port,
2752
- :dry_run)
2901
+ :dry_run,
2902
+ :tag_specifications)
2903
+ SENSITIVE = []
2904
+ include Aws::Structure
2905
+ end
2906
+
2907
+ # @!attribute [rw] return
2908
+ # Returns `true` if the request succeeds; otherwise, returns an error.
2909
+ # @return [Boolean]
2910
+ #
2911
+ # @!attribute [rw] security_group_rules
2912
+ # Information about the inbound (ingress) security group rules that
2913
+ # were added.
2914
+ # @return [Array<Types::SecurityGroupRule>]
2915
+ #
2916
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressResult AWS API Documentation
2917
+ #
2918
+ class AuthorizeSecurityGroupIngressResult < Struct.new(
2919
+ :return,
2920
+ :security_group_rules)
2753
2921
  SENSITIVE = []
2754
2922
  include Aws::Structure
2755
2923
  end
@@ -3967,7 +4135,7 @@ module Aws::EC2
3967
4135
  # @return [String]
3968
4136
  #
3969
4137
  # @!attribute [rw] owner_id
3970
- # The AWS account ID of the owner of the carrier gateway.
4138
+ # The account ID of the owner of the carrier gateway.
3971
4139
  # @return [String]
3972
4140
  #
3973
4141
  # @!attribute [rw] tags
@@ -5243,7 +5411,7 @@ module Aws::EC2
5243
5411
  # source_snapshot_id: "String", # required
5244
5412
  # tag_specifications: [
5245
5413
  # {
5246
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5414
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5247
5415
  # tags: [
5248
5416
  # {
5249
5417
  # key: "String",
@@ -5262,13 +5430,14 @@ module Aws::EC2
5262
5430
  # @!attribute [rw] destination_outpost_arn
5263
5431
  # The Amazon Resource Name (ARN) of the Outpost to which to copy the
5264
5432
  # snapshot. Only specify this parameter when copying a snapshot from
5265
- # an AWS Region to an Outpost. The snapshot must be in the Region for
5266
- # the destination Outpost. You cannot copy a snapshot from an Outpost
5267
- # to a Region, from one Outpost to another, or within the same
5268
- # Outpost.
5433
+ # an Amazon Web Services Region to an Outpost. The snapshot must be in
5434
+ # the Region for the destination Outpost. You cannot copy a snapshot
5435
+ # from an Outpost to a Region, from one Outpost to another, or within
5436
+ # the same Outpost.
5269
5437
  #
5270
- # For more information, see [ Copying snapshots from an AWS Region to
5271
- # an Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
5438
+ # For more information, see [ Copy snapshots from an Amazon Web
5439
+ # Services Region to an Outpost][1] in the *Amazon Elastic Compute
5440
+ # Cloud User Guide*.
5272
5441
  #
5273
5442
  #
5274
5443
  #
@@ -5283,8 +5452,8 @@ module Aws::EC2
5283
5452
  #
5284
5453
  # The snapshot copy is sent to the regional endpoint that you sent the
5285
5454
  # HTTP request to (for example, `ec2.us-east-1.amazonaws.com`). With
5286
- # the AWS CLI, this is specified using the `--region` parameter or the
5287
- # default Region in your AWS configuration file.
5455
+ # the CLI, this is specified using the `--region` parameter or the
5456
+ # default Region in your Amazon Web Services configuration file.
5288
5457
  # @return [String]
5289
5458
  #
5290
5459
  # @!attribute [rw] encrypted
@@ -5302,12 +5471,12 @@ module Aws::EC2
5302
5471
  # @return [Boolean]
5303
5472
  #
5304
5473
  # @!attribute [rw] kms_key_id
5305
- # The identifier of the AWS Key Management Service (AWS KMS) customer
5306
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
5307
- # is not specified, your AWS managed CMK for EBS is used. If
5308
- # `KmsKeyId` is specified, the encrypted state must be `true`.
5474
+ # The identifier of the Key Management Service (KMS) KMS key to use
5475
+ # for Amazon EBS encryption. If this parameter is not specified, your
5476
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
5477
+ # encrypted state must be `true`.
5309
5478
  #
5310
- # You can specify the CMK using any of the following:
5479
+ # You can specify the KMS key using any of the following:
5311
5480
  #
5312
5481
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
5313
5482
  #
@@ -5319,9 +5488,9 @@ module Aws::EC2
5319
5488
  # * Alias ARN. For example,
5320
5489
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
5321
5490
  #
5322
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
5323
- # an ID, alias, or ARN that is not valid, the action can appear to
5324
- # complete, but eventually fails.
5491
+ # Amazon Web Services authenticates the KMS key asynchronously.
5492
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
5493
+ # the action can appear to complete, but eventually fails.
5325
5494
  # @return [String]
5326
5495
  #
5327
5496
  # @!attribute [rw] presigned_url
@@ -5333,14 +5502,14 @@ module Aws::EC2
5333
5502
  # The `PresignedUrl` should use the snapshot source endpoint, the
5334
5503
  # `CopySnapshot` action, and include the `SourceRegion`,
5335
5504
  # `SourceSnapshotId`, and `DestinationRegion` parameters. The
5336
- # `PresignedUrl` must be signed using AWS Signature Version 4. Because
5337
- # EBS snapshots are stored in Amazon S3, the signing algorithm for
5338
- # this parameter uses the same logic that is described in
5339
- # [Authenticating Requests: Using Query Parameters (AWS Signature
5340
- # Version 4)][2] in the *Amazon Simple Storage Service API Reference*.
5341
- # An invalid or improperly signed `PresignedUrl` will cause the copy
5342
- # operation to fail asynchronously, and the snapshot will move to an
5343
- # `error` state.
5505
+ # `PresignedUrl` must be signed using Amazon Web Services Signature
5506
+ # Version 4. Because EBS snapshots are stored in Amazon S3, the
5507
+ # signing algorithm for this parameter uses the same logic that is
5508
+ # described in [Authenticating Requests: Using Query Parameters
5509
+ # (Amazon Web Services Signature Version 4)][2] in the *Amazon Simple
5510
+ # Storage Service API Reference*. An invalid or improperly signed
5511
+ # `PresignedUrl` will cause the copy operation to fail asynchronously,
5512
+ # and the snapshot will move to an `error` state.
5344
5513
  #
5345
5514
  #
5346
5515
  #
@@ -5468,7 +5637,7 @@ module Aws::EC2
5468
5637
  # instance_match_criteria: "open", # accepts open, targeted
5469
5638
  # tag_specifications: [
5470
5639
  # {
5471
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5640
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5472
5641
  # tags: [
5473
5642
  # {
5474
5643
  # key: "String",
@@ -5647,7 +5816,7 @@ module Aws::EC2
5647
5816
  # vpc_id: "VpcId", # required
5648
5817
  # tag_specifications: [
5649
5818
  # {
5650
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5819
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5651
5820
  # tags: [
5652
5821
  # {
5653
5822
  # key: "String",
@@ -5677,8 +5846,8 @@ module Aws::EC2
5677
5846
  #
5678
5847
  # @!attribute [rw] client_token
5679
5848
  # Unique, case-sensitive identifier that you provide to ensure the
5680
- # idempotency of the request. For more information, see [How to Ensure
5681
- # Idempotency][1].
5849
+ # idempotency of the request. For more information, see [How to ensure
5850
+ # idempotency][1].
5682
5851
  #
5683
5852
  # **A suitable default value is auto-generated.** You should normally
5684
5853
  # not need to pass this option.
@@ -5746,7 +5915,7 @@ module Aws::EC2
5746
5915
  # client_token: "String",
5747
5916
  # tag_specifications: [
5748
5917
  # {
5749
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5918
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
5750
5919
  # tags: [
5751
5920
  # {
5752
5921
  # key: "String",
@@ -6039,7 +6208,7 @@ module Aws::EC2
6039
6208
  # type: "ipsec.1", # required, accepts ipsec.1
6040
6209
  # tag_specifications: [
6041
6210
  # {
6042
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6211
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6043
6212
  # tags: [
6044
6213
  # {
6045
6214
  # key: "String",
@@ -6203,7 +6372,7 @@ module Aws::EC2
6203
6372
  # ],
6204
6373
  # tag_specifications: [
6205
6374
  # {
6206
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6375
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6207
6376
  # tags: [
6208
6377
  # {
6209
6378
  # key: "String",
@@ -6261,7 +6430,7 @@ module Aws::EC2
6261
6430
  # vpc_id: "VpcId", # required
6262
6431
  # tag_specifications: [
6263
6432
  # {
6264
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6433
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6265
6434
  # tags: [
6266
6435
  # {
6267
6436
  # key: "String",
@@ -6274,8 +6443,8 @@ module Aws::EC2
6274
6443
  #
6275
6444
  # @!attribute [rw] client_token
6276
6445
  # Unique, case-sensitive identifier that you provide to ensure the
6277
- # idempotency of the request. For more information, see [How to Ensure
6278
- # Idempotency][1].
6446
+ # idempotency of the request. For more information, see [How to ensure
6447
+ # idempotency][1].
6279
6448
  #
6280
6449
  #
6281
6450
  #
@@ -6482,7 +6651,7 @@ module Aws::EC2
6482
6651
  # replace_unhealthy_instances: false,
6483
6652
  # tag_specifications: [
6484
6653
  # {
6485
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6654
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6486
6655
  # tags: [
6487
6656
  # {
6488
6657
  # key: "String",
@@ -6668,7 +6837,7 @@ module Aws::EC2
6668
6837
  # log_format: "String",
6669
6838
  # tag_specifications: [
6670
6839
  # {
6671
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6840
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6672
6841
  # tags: [
6673
6842
  # {
6674
6843
  # key: "String",
@@ -6689,8 +6858,8 @@ module Aws::EC2
6689
6858
  #
6690
6859
  # @!attribute [rw] client_token
6691
6860
  # Unique, case-sensitive identifier that you provide to ensure the
6692
- # idempotency of the request. For more information, see [How to Ensure
6693
- # Idempotency][1].
6861
+ # idempotency of the request. For more information, see [How to ensure
6862
+ # idempotency][1].
6694
6863
  #
6695
6864
  #
6696
6865
  #
@@ -6767,14 +6936,14 @@ module Aws::EC2
6767
6936
  #
6768
6937
  # @!attribute [rw] log_format
6769
6938
  # The fields to include in the flow log record, in the order in which
6770
- # they should appear. For a list of available fields, see [Flow Log
6771
- # Records][1]. If you omit this parameter, the flow log is created
6939
+ # they should appear. For a list of available fields, see [Flow log
6940
+ # records][1]. If you omit this parameter, the flow log is created
6772
6941
  # using the default format. If you specify this parameter, you must
6773
6942
  # specify at least one field.
6774
6943
  #
6775
6944
  # Specify the fields using the `$\{field-id\}` format, separated by
6776
- # spaces. For the AWS CLI, use single quotation marks (' ') to
6777
- # surround the parameter value.
6945
+ # spaces. For the CLI, use single quotation marks (' ') to surround
6946
+ # the parameter value.
6778
6947
  #
6779
6948
  #
6780
6949
  #
@@ -6862,7 +7031,7 @@ module Aws::EC2
6862
7031
  # client_token: "String",
6863
7032
  # tag_specifications: [
6864
7033
  # {
6865
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7034
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6866
7035
  # tags: [
6867
7036
  # {
6868
7037
  # key: "String",
@@ -6971,7 +7140,7 @@ module Aws::EC2
6971
7140
  # no_reboot: false,
6972
7141
  # tag_specifications: [
6973
7142
  # {
6974
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7143
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
6975
7144
  # tags: [
6976
7145
  # {
6977
7146
  # key: "String",
@@ -7066,6 +7235,109 @@ module Aws::EC2
7066
7235
  include Aws::Structure
7067
7236
  end
7068
7237
 
7238
+ # @note When making an API call, you may pass CreateInstanceEventWindowRequest
7239
+ # data as a hash:
7240
+ #
7241
+ # {
7242
+ # dry_run: false,
7243
+ # name: "String",
7244
+ # time_ranges: [
7245
+ # {
7246
+ # start_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
7247
+ # start_hour: 1,
7248
+ # end_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
7249
+ # end_hour: 1,
7250
+ # },
7251
+ # ],
7252
+ # cron_expression: "InstanceEventWindowCronExpression",
7253
+ # tag_specifications: [
7254
+ # {
7255
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7256
+ # tags: [
7257
+ # {
7258
+ # key: "String",
7259
+ # value: "String",
7260
+ # },
7261
+ # ],
7262
+ # },
7263
+ # ],
7264
+ # }
7265
+ #
7266
+ # @!attribute [rw] dry_run
7267
+ # Checks whether you have the required permissions for the action,
7268
+ # without actually making the request, and provides an error response.
7269
+ # If you have the required permissions, the error response is
7270
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
7271
+ # @return [Boolean]
7272
+ #
7273
+ # @!attribute [rw] name
7274
+ # The name of the event window.
7275
+ # @return [String]
7276
+ #
7277
+ # @!attribute [rw] time_ranges
7278
+ # The time range for the event window. If you specify a time range,
7279
+ # you can't specify a cron expression.
7280
+ # @return [Array<Types::InstanceEventWindowTimeRangeRequest>]
7281
+ #
7282
+ # @!attribute [rw] cron_expression
7283
+ # The cron expression for the event window, for example, `* 0-4,20-23
7284
+ # * * 1,5`. If you specify a cron expression, you can't specify a
7285
+ # time range.
7286
+ #
7287
+ # Constraints:
7288
+ #
7289
+ # * Only hour and day of the week values are supported.
7290
+ #
7291
+ # * For day of the week values, you can specify either integers `0`
7292
+ # through `6`, or alternative single values `SUN` through `SAT`.
7293
+ #
7294
+ # * The minute, month, and year must be specified by `*`.
7295
+ #
7296
+ # * The hour value must be one or a multiple range, for example, `0-4`
7297
+ # or `0-4,20-23`.
7298
+ #
7299
+ # * Each hour range must be &gt;= 2 hours, for example, `0-2` or
7300
+ # `20-23`.
7301
+ #
7302
+ # * The event window must be &gt;= 4 hours. The combined total time
7303
+ # ranges in the event window must be &gt;= 4 hours.
7304
+ #
7305
+ # For more information about cron expressions, see [cron][1] on the
7306
+ # *Wikipedia website*.
7307
+ #
7308
+ #
7309
+ #
7310
+ # [1]: https://en.wikipedia.org/wiki/Cron
7311
+ # @return [String]
7312
+ #
7313
+ # @!attribute [rw] tag_specifications
7314
+ # The tags to apply to the event window.
7315
+ # @return [Array<Types::TagSpecification>]
7316
+ #
7317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceEventWindowRequest AWS API Documentation
7318
+ #
7319
+ class CreateInstanceEventWindowRequest < Struct.new(
7320
+ :dry_run,
7321
+ :name,
7322
+ :time_ranges,
7323
+ :cron_expression,
7324
+ :tag_specifications)
7325
+ SENSITIVE = []
7326
+ include Aws::Structure
7327
+ end
7328
+
7329
+ # @!attribute [rw] instance_event_window
7330
+ # Information about the event window.
7331
+ # @return [Types::InstanceEventWindow]
7332
+ #
7333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateInstanceEventWindowResult AWS API Documentation
7334
+ #
7335
+ class CreateInstanceEventWindowResult < Struct.new(
7336
+ :instance_event_window)
7337
+ SENSITIVE = []
7338
+ include Aws::Structure
7339
+ end
7340
+
7069
7341
  # @note When making an API call, you may pass CreateInstanceExportTaskRequest
7070
7342
  # data as a hash:
7071
7343
  #
@@ -7081,7 +7353,7 @@ module Aws::EC2
7081
7353
  # target_environment: "citrix", # required, accepts citrix, vmware, microsoft
7082
7354
  # tag_specifications: [
7083
7355
  # {
7084
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7356
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7085
7357
  # tags: [
7086
7358
  # {
7087
7359
  # key: "String",
@@ -7143,7 +7415,7 @@ module Aws::EC2
7143
7415
  # {
7144
7416
  # tag_specifications: [
7145
7417
  # {
7146
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7418
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7147
7419
  # tags: [
7148
7420
  # {
7149
7421
  # key: "String",
@@ -7195,7 +7467,7 @@ module Aws::EC2
7195
7467
  # dry_run: false,
7196
7468
  # tag_specifications: [
7197
7469
  # {
7198
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7470
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7199
7471
  # tags: [
7200
7472
  # {
7201
7473
  # key: "String",
@@ -7291,6 +7563,18 @@ module Aws::EC2
7291
7563
  # secondary_private_ip_address_count: 1,
7292
7564
  # subnet_id: "SubnetId",
7293
7565
  # network_card_index: 1,
7566
+ # ipv_4_prefixes: [
7567
+ # {
7568
+ # ipv_4_prefix: "String",
7569
+ # },
7570
+ # ],
7571
+ # ipv_4_prefix_count: 1,
7572
+ # ipv_6_prefixes: [
7573
+ # {
7574
+ # ipv_6_prefix: "String",
7575
+ # },
7576
+ # ],
7577
+ # ipv_6_prefix_count: 1,
7294
7578
  # },
7295
7579
  # ],
7296
7580
  # image_id: "ImageId",
@@ -7315,7 +7599,7 @@ module Aws::EC2
7315
7599
  # user_data: "String",
7316
7600
  # tag_specifications: [
7317
7601
  # {
7318
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7602
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7319
7603
  # tags: [
7320
7604
  # {
7321
7605
  # key: "String",
@@ -7380,7 +7664,7 @@ module Aws::EC2
7380
7664
  # },
7381
7665
  # tag_specifications: [
7382
7666
  # {
7383
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7667
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7384
7668
  # tags: [
7385
7669
  # {
7386
7670
  # key: "String",
@@ -7518,6 +7802,18 @@ module Aws::EC2
7518
7802
  # secondary_private_ip_address_count: 1,
7519
7803
  # subnet_id: "SubnetId",
7520
7804
  # network_card_index: 1,
7805
+ # ipv_4_prefixes: [
7806
+ # {
7807
+ # ipv_4_prefix: "String",
7808
+ # },
7809
+ # ],
7810
+ # ipv_4_prefix_count: 1,
7811
+ # ipv_6_prefixes: [
7812
+ # {
7813
+ # ipv_6_prefix: "String",
7814
+ # },
7815
+ # ],
7816
+ # ipv_6_prefix_count: 1,
7521
7817
  # },
7522
7818
  # ],
7523
7819
  # image_id: "ImageId",
@@ -7542,7 +7838,7 @@ module Aws::EC2
7542
7838
  # user_data: "String",
7543
7839
  # tag_specifications: [
7544
7840
  # {
7545
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7841
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7546
7842
  # tags: [
7547
7843
  # {
7548
7844
  # key: "String",
@@ -7747,7 +8043,7 @@ module Aws::EC2
7747
8043
  # vpc_id: "VpcId", # required
7748
8044
  # tag_specifications: [
7749
8045
  # {
7750
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8046
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7751
8047
  # tags: [
7752
8048
  # {
7753
8049
  # key: "String",
@@ -7816,7 +8112,7 @@ module Aws::EC2
7816
8112
  # max_entries: 1, # required
7817
8113
  # tag_specifications: [
7818
8114
  # {
7819
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8115
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7820
8116
  # tags: [
7821
8117
  # {
7822
8118
  # key: "String",
@@ -7912,7 +8208,7 @@ module Aws::EC2
7912
8208
  # subnet_id: "SubnetId", # required
7913
8209
  # tag_specifications: [
7914
8210
  # {
7915
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8211
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
7916
8212
  # tags: [
7917
8213
  # {
7918
8214
  # key: "String",
@@ -7934,8 +8230,8 @@ module Aws::EC2
7934
8230
  #
7935
8231
  # @!attribute [rw] client_token
7936
8232
  # Unique, case-sensitive identifier that you provide to ensure the
7937
- # idempotency of the request. For more information, see [How to Ensure
7938
- # Idempotency][1].
8233
+ # idempotency of the request. For more information, see [How to ensure
8234
+ # idempotency][1].
7939
8235
  #
7940
8236
  # Constraint: Maximum 64 ASCII characters.
7941
8237
  #
@@ -8109,7 +8405,7 @@ module Aws::EC2
8109
8405
  # vpc_id: "VpcId", # required
8110
8406
  # tag_specifications: [
8111
8407
  # {
8112
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8408
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8113
8409
  # tags: [
8114
8410
  # {
8115
8411
  # key: "String",
@@ -8169,7 +8465,7 @@ module Aws::EC2
8169
8465
  # destination_port: 1,
8170
8466
  # tag_specifications: [
8171
8467
  # {
8172
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8468
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8173
8469
  # tags: [
8174
8470
  # {
8175
8471
  # key: "String",
@@ -8183,20 +8479,22 @@ module Aws::EC2
8183
8479
  # }
8184
8480
  #
8185
8481
  # @!attribute [rw] source_ip
8186
- # The IP address of the AWS resource that is the source of the path.
8482
+ # The IP address of the Amazon Web Services resource that is the
8483
+ # source of the path.
8187
8484
  # @return [String]
8188
8485
  #
8189
8486
  # @!attribute [rw] destination_ip
8190
- # The IP address of the AWS resource that is the destination of the
8191
- # path.
8487
+ # The IP address of the Amazon Web Services resource that is the
8488
+ # destination of the path.
8192
8489
  # @return [String]
8193
8490
  #
8194
8491
  # @!attribute [rw] source
8195
- # The AWS resource that is the source of the path.
8492
+ # The Amazon Web Services resource that is the source of the path.
8196
8493
  # @return [String]
8197
8494
  #
8198
8495
  # @!attribute [rw] destination
8199
- # The AWS resource that is the destination of the path.
8496
+ # The Amazon Web Services resource that is the destination of the
8497
+ # path.
8200
8498
  # @return [String]
8201
8499
  #
8202
8500
  # @!attribute [rw] protocol
@@ -8220,8 +8518,8 @@ module Aws::EC2
8220
8518
  #
8221
8519
  # @!attribute [rw] client_token
8222
8520
  # Unique, case-sensitive identifier that you provide to ensure the
8223
- # idempotency of the request. For more information, see [How to Ensure
8224
- # Idempotency][1].
8521
+ # idempotency of the request. For more information, see [How to ensure
8522
+ # idempotency][1].
8225
8523
  #
8226
8524
  # **A suitable default value is auto-generated.** You should normally
8227
8525
  # not need to pass this option.
@@ -8344,11 +8642,23 @@ module Aws::EC2
8344
8642
  # },
8345
8643
  # ],
8346
8644
  # secondary_private_ip_address_count: 1,
8645
+ # ipv_4_prefixes: [
8646
+ # {
8647
+ # ipv_4_prefix: "String",
8648
+ # },
8649
+ # ],
8650
+ # ipv_4_prefix_count: 1,
8651
+ # ipv_6_prefixes: [
8652
+ # {
8653
+ # ipv_6_prefix: "String",
8654
+ # },
8655
+ # ],
8656
+ # ipv_6_prefix_count: 1,
8347
8657
  # interface_type: "efa", # accepts efa, branch, trunk
8348
8658
  # subnet_id: "SubnetId", # required
8349
8659
  # tag_specifications: [
8350
8660
  # {
8351
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8661
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8352
8662
  # tags: [
8353
8663
  # {
8354
8664
  # key: "String",
@@ -8419,6 +8729,30 @@ module Aws::EC2
8419
8729
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-eni.html#AvailableIpPerENI
8420
8730
  # @return [Integer]
8421
8731
  #
8732
+ # @!attribute [rw] ipv_4_prefixes
8733
+ # One or moreIPv4 Prefix Delegation prefixes assigned to the network
8734
+ # interface. You cannot use this option if you use the
8735
+ # `Ipv4PrefixCount` option.
8736
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
8737
+ #
8738
+ # @!attribute [rw] ipv_4_prefix_count
8739
+ # The number of IPv4 Prefix Delegation prefixes that AWS automatically
8740
+ # assigns to the network interface. You cannot use this option if you
8741
+ # use the `Ipv4 Prefixes` option.
8742
+ # @return [Integer]
8743
+ #
8744
+ # @!attribute [rw] ipv_6_prefixes
8745
+ # One or moreIPv6 Prefix Delegation prefixes assigned to the network
8746
+ # interface. You cannot use this option if you use the
8747
+ # `Ipv6PrefixCount` option.
8748
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
8749
+ #
8750
+ # @!attribute [rw] ipv_6_prefix_count
8751
+ # The number of IPv6 Prefix Delegation prefixes that AWS automatically
8752
+ # assigns to the network interface. You cannot use this option if you
8753
+ # use the `Ipv6Prefixes` option.
8754
+ # @return [Integer]
8755
+ #
8422
8756
  # @!attribute [rw] interface_type
8423
8757
  # Indicates the type of network interface. To create an Elastic Fabric
8424
8758
  # Adapter (EFA), specify `efa`. For more information, see [ Elastic
@@ -8465,6 +8799,10 @@ module Aws::EC2
8465
8799
  :private_ip_address,
8466
8800
  :private_ip_addresses,
8467
8801
  :secondary_private_ip_address_count,
8802
+ :ipv_4_prefixes,
8803
+ :ipv_4_prefix_count,
8804
+ :ipv_6_prefixes,
8805
+ :ipv_6_prefix_count,
8468
8806
  :interface_type,
8469
8807
  :subnet_id,
8470
8808
  :tag_specifications,
@@ -8503,7 +8841,7 @@ module Aws::EC2
8503
8841
  # partition_count: 1,
8504
8842
  # tag_specifications: [
8505
8843
  # {
8506
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8844
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8507
8845
  # tags: [
8508
8846
  # {
8509
8847
  # key: "String",
@@ -8575,7 +8913,7 @@ module Aws::EC2
8575
8913
  # dry_run: false,
8576
8914
  # tag_specifications: [
8577
8915
  # {
8578
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8916
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8579
8917
  # tags: [
8580
8918
  # {
8581
8919
  # key: "String",
@@ -8600,7 +8938,7 @@ module Aws::EC2
8600
8938
  # Unique, case-sensitive identifier you provide to ensure the
8601
8939
  # idempotency of the request. If you do not specify a client token, a
8602
8940
  # randomly generated token is used for the request to ensure
8603
- # idempotency. For more information, see [Ensuring Idempotency][1].
8941
+ # idempotency. For more information, see [Ensuring idempotency][1].
8604
8942
  #
8605
8943
  # **A suitable default value is auto-generated.** You should normally
8606
8944
  # not need to pass this option.
@@ -8723,7 +9061,7 @@ module Aws::EC2
8723
9061
  # name: "String",
8724
9062
  # tag_specifications: [
8725
9063
  # {
8726
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9064
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8727
9065
  # tags: [
8728
9066
  # {
8729
9067
  # key: "String",
@@ -8929,7 +9267,7 @@ module Aws::EC2
8929
9267
  # vpc_id: "VpcId", # required
8930
9268
  # tag_specifications: [
8931
9269
  # {
8932
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9270
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8933
9271
  # tags: [
8934
9272
  # {
8935
9273
  # key: "String",
@@ -8986,7 +9324,7 @@ module Aws::EC2
8986
9324
  # vpc_id: "VpcId",
8987
9325
  # tag_specifications: [
8988
9326
  # {
8989
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9327
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
8990
9328
  # tags: [
8991
9329
  # {
8992
9330
  # key: "String",
@@ -9074,7 +9412,7 @@ module Aws::EC2
9074
9412
  # volume_id: "VolumeId", # required
9075
9413
  # tag_specifications: [
9076
9414
  # {
9077
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9415
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9078
9416
  # tags: [
9079
9417
  # {
9080
9418
  # key: "String",
@@ -9091,8 +9429,8 @@ module Aws::EC2
9091
9429
  # @return [String]
9092
9430
  #
9093
9431
  # @!attribute [rw] outpost_arn
9094
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create
9095
- # a local snapshot.
9432
+ # The Amazon Resource Name (ARN) of the Outpost on which to create a
9433
+ # local snapshot.
9096
9434
  #
9097
9435
  # * To create a snapshot of a volume in a Region, omit this parameter.
9098
9436
  # The snapshot is created in the same Region as the volume.
@@ -9106,8 +9444,8 @@ module Aws::EC2
9106
9444
  # Outpost. The snapshot must be created on the same Outpost as the
9107
9445
  # volume.
9108
9446
  #
9109
- # For more information, see [ Creating local snapshots from volumes on
9110
- # an Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
9447
+ # For more information, see [Create local snapshots from volumes on an
9448
+ # Outpost][1] in the *Amazon Elastic Compute Cloud User Guide*.
9111
9449
  #
9112
9450
  #
9113
9451
  #
@@ -9115,7 +9453,7 @@ module Aws::EC2
9115
9453
  # @return [String]
9116
9454
  #
9117
9455
  # @!attribute [rw] volume_id
9118
- # The ID of the EBS volume.
9456
+ # The ID of the Amazon EBS volume.
9119
9457
  # @return [String]
9120
9458
  #
9121
9459
  # @!attribute [rw] tag_specifications
@@ -9153,7 +9491,7 @@ module Aws::EC2
9153
9491
  # outpost_arn: "String",
9154
9492
  # tag_specifications: [
9155
9493
  # {
9156
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9494
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9157
9495
  # tags: [
9158
9496
  # {
9159
9497
  # key: "String",
@@ -9177,8 +9515,8 @@ module Aws::EC2
9177
9515
  # @return [Types::InstanceSpecification]
9178
9516
  #
9179
9517
  # @!attribute [rw] outpost_arn
9180
- # The Amazon Resource Name (ARN) of the AWS Outpost on which to create
9181
- # the local snapshots.
9518
+ # The Amazon Resource Name (ARN) of the Outpost on which to create the
9519
+ # local snapshots.
9182
9520
  #
9183
9521
  # * To create snapshots from an instance in a Region, omit this
9184
9522
  # parameter. The snapshots are created in the same Region as the
@@ -9193,9 +9531,9 @@ module Aws::EC2
9193
9531
  # Outpost. The snapshots must be created on the same Outpost as the
9194
9532
  # instance.
9195
9533
  #
9196
- # For more information, see [ Creating multi-volume local snapshots
9197
- # from instances on an Outpost][1] in the *Amazon Elastic Compute
9198
- # Cloud User Guide*.
9534
+ # For more information, see [ Create multi-volume local snapshots from
9535
+ # instances on an Outpost][1] in the *Amazon Elastic Compute Cloud
9536
+ # User Guide*.
9199
9537
  #
9200
9538
  #
9201
9539
  #
@@ -9359,13 +9697,102 @@ module Aws::EC2
9359
9697
  include Aws::Structure
9360
9698
  end
9361
9699
 
9700
+ # @note When making an API call, you may pass CreateSubnetCidrReservationRequest
9701
+ # data as a hash:
9702
+ #
9703
+ # {
9704
+ # tag_specifications: [
9705
+ # {
9706
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9707
+ # tags: [
9708
+ # {
9709
+ # key: "String",
9710
+ # value: "String",
9711
+ # },
9712
+ # ],
9713
+ # },
9714
+ # ],
9715
+ # subnet_id: "SubnetId", # required
9716
+ # cidr: "String", # required
9717
+ # reservation_type: "prefix", # required, accepts prefix, explicit
9718
+ # description: "String",
9719
+ # dry_run: false,
9720
+ # }
9721
+ #
9722
+ # @!attribute [rw] tag_specifications
9723
+ # The tags to assign to the subnet CIDR reservation.
9724
+ # @return [Array<Types::TagSpecification>]
9725
+ #
9726
+ # @!attribute [rw] subnet_id
9727
+ # The ID of the subnet.
9728
+ # @return [String]
9729
+ #
9730
+ # @!attribute [rw] cidr
9731
+ # The IPv4 or IPV6 CIDR range to reserve.
9732
+ # @return [String]
9733
+ #
9734
+ # @!attribute [rw] reservation_type
9735
+ # The type of reservation.
9736
+ #
9737
+ # The following are valid values:
9738
+ #
9739
+ # * `prefix`\: The Amazon EC2 Prefix Delegation feature assigns the IP
9740
+ # addresses to network interfaces that are associated with an
9741
+ # instance. For information about Prefix Delegation, see [Prefix
9742
+ # Delegation for Amazon EC2 network interfaces][1] in the *Amazon
9743
+ # Elastic Compute Cloud User Guide*.
9744
+ #
9745
+ # * `explicit`\: You manually assign the IP addresses to resources
9746
+ # that reside in your subnet.
9747
+ #
9748
+ #
9749
+ #
9750
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation.html
9751
+ # @return [String]
9752
+ #
9753
+ # @!attribute [rw] description
9754
+ # The description to assign to the subnet CIDR reservation.
9755
+ # @return [String]
9756
+ #
9757
+ # @!attribute [rw] dry_run
9758
+ # Checks whether you have the required permissions for the action,
9759
+ # without actually making the request, and provides an error response.
9760
+ # If you have the required permissions, the error response is
9761
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9762
+ # @return [Boolean]
9763
+ #
9764
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservationRequest AWS API Documentation
9765
+ #
9766
+ class CreateSubnetCidrReservationRequest < Struct.new(
9767
+ :tag_specifications,
9768
+ :subnet_id,
9769
+ :cidr,
9770
+ :reservation_type,
9771
+ :description,
9772
+ :dry_run)
9773
+ SENSITIVE = []
9774
+ include Aws::Structure
9775
+ end
9776
+
9777
+ # @!attribute [rw] subnet_cidr_reservation
9778
+ # Information about the created subnet CIDR reservation.
9779
+ # @return [Types::SubnetCidrReservation]
9780
+ #
9781
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetCidrReservationResult AWS API Documentation
9782
+ #
9783
+ class CreateSubnetCidrReservationResult < Struct.new(
9784
+ :subnet_cidr_reservation)
9785
+ SENSITIVE = []
9786
+ include Aws::Structure
9787
+ end
9788
+
9362
9789
  # @note When making an API call, you may pass CreateSubnetRequest
9363
9790
  # data as a hash:
9364
9791
  #
9365
9792
  # {
9366
9793
  # tag_specifications: [
9367
9794
  # {
9368
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9795
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9369
9796
  # tags: [
9370
9797
  # {
9371
9798
  # key: "String",
@@ -9376,11 +9803,11 @@ module Aws::EC2
9376
9803
  # ],
9377
9804
  # availability_zone: "String",
9378
9805
  # availability_zone_id: "String",
9379
- # cidr_block: "String", # required
9380
9806
  # ipv_6_cidr_block: "String",
9381
9807
  # outpost_arn: "String",
9382
9808
  # vpc_id: "VpcId", # required
9383
9809
  # dry_run: false,
9810
+ # cidr_block: "String", # required
9384
9811
  # }
9385
9812
  #
9386
9813
  # @!attribute [rw] tag_specifications
@@ -9390,9 +9817,9 @@ module Aws::EC2
9390
9817
  # @!attribute [rw] availability_zone
9391
9818
  # The Availability Zone or Local Zone for the subnet.
9392
9819
  #
9393
- # Default: AWS selects one for you. If you create more than one subnet
9394
- # in your VPC, we do not necessarily select a different zone for each
9395
- # subnet.
9820
+ # Default: Amazon Web Services selects one for you. If you create more
9821
+ # than one subnet in your VPC, we do not necessarily select a
9822
+ # different zone for each subnet.
9396
9823
  #
9397
9824
  # To create a subnet in a Local Zone, set this value to the Local Zone
9398
9825
  # ID, for example `us-west-2-lax-1a`. For information about the
@@ -9411,13 +9838,6 @@ module Aws::EC2
9411
9838
  # The AZ ID or the Local Zone ID of the subnet.
9412
9839
  # @return [String]
9413
9840
  #
9414
- # @!attribute [rw] cidr_block
9415
- # The IPv4 network range for the subnet, in CIDR notation. For
9416
- # example, `10.0.0.0/24`. We modify the specified CIDR block to its
9417
- # canonical form; for example, if you specify `100.68.0.18/18`, we
9418
- # modify it to `100.68.0.0/18`.
9419
- # @return [String]
9420
- #
9421
9841
  # @!attribute [rw] ipv_6_cidr_block
9422
9842
  # The IPv6 network range for the subnet, in CIDR notation. The subnet
9423
9843
  # size must use a /64 prefix length.
@@ -9440,17 +9860,24 @@ module Aws::EC2
9440
9860
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
9441
9861
  # @return [Boolean]
9442
9862
  #
9863
+ # @!attribute [rw] cidr_block
9864
+ # The IPv4 network range for the subnet, in CIDR notation. For
9865
+ # example, `10.0.0.0/24`. We modify the specified CIDR block to its
9866
+ # canonical form; for example, if you specify `100.68.0.18/18`, we
9867
+ # modify it to `100.68.0.0/18`.
9868
+ # @return [String]
9869
+ #
9443
9870
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateSubnetRequest AWS API Documentation
9444
9871
  #
9445
9872
  class CreateSubnetRequest < Struct.new(
9446
9873
  :tag_specifications,
9447
9874
  :availability_zone,
9448
9875
  :availability_zone_id,
9449
- :cidr_block,
9450
9876
  :ipv_6_cidr_block,
9451
9877
  :outpost_arn,
9452
9878
  :vpc_id,
9453
- :dry_run)
9879
+ :dry_run,
9880
+ :cidr_block)
9454
9881
  SENSITIVE = []
9455
9882
  include Aws::Structure
9456
9883
  end
@@ -9518,7 +9945,7 @@ module Aws::EC2
9518
9945
  # description: "String",
9519
9946
  # tag_specifications: [
9520
9947
  # {
9521
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9948
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9522
9949
  # tags: [
9523
9950
  # {
9524
9951
  # key: "String",
@@ -9741,7 +10168,7 @@ module Aws::EC2
9741
10168
  # description: "String",
9742
10169
  # tag_specifications: [
9743
10170
  # {
9744
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10171
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9745
10172
  # tags: [
9746
10173
  # {
9747
10174
  # key: "String",
@@ -9874,7 +10301,7 @@ module Aws::EC2
9874
10301
  # description: "String",
9875
10302
  # tag_specifications: [
9876
10303
  # {
9877
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10304
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9878
10305
  # tags: [
9879
10306
  # {
9880
10307
  # key: "String",
@@ -9973,7 +10400,7 @@ module Aws::EC2
9973
10400
  # inside_cidr_blocks: ["String"], # required
9974
10401
  # tag_specifications: [
9975
10402
  # {
9976
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10403
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
9977
10404
  # tags: [
9978
10405
  # {
9979
10406
  # key: "String",
@@ -10060,7 +10487,7 @@ module Aws::EC2
10060
10487
  # },
10061
10488
  # tag_specifications: [
10062
10489
  # {
10063
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10490
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10064
10491
  # tags: [
10065
10492
  # {
10066
10493
  # key: "String",
@@ -10148,7 +10575,7 @@ module Aws::EC2
10148
10575
  # },
10149
10576
  # tag_specifications: [
10150
10577
  # {
10151
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10578
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10152
10579
  # tags: [
10153
10580
  # {
10154
10581
  # key: "String",
@@ -10249,7 +10676,7 @@ module Aws::EC2
10249
10676
  # peer_region: "String", # required
10250
10677
  # tag_specifications: [
10251
10678
  # {
10252
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10679
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10253
10680
  # tags: [
10254
10681
  # {
10255
10682
  # key: "String",
@@ -10389,7 +10816,7 @@ module Aws::EC2
10389
10816
  # },
10390
10817
  # tag_specifications: [
10391
10818
  # {
10392
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10819
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10393
10820
  # tags: [
10394
10821
  # {
10395
10822
  # key: "String",
@@ -10509,7 +10936,7 @@ module Aws::EC2
10509
10936
  # transit_gateway_id: "TransitGatewayId", # required
10510
10937
  # tag_specifications: [
10511
10938
  # {
10512
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10939
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10513
10940
  # tags: [
10514
10941
  # {
10515
10942
  # key: "String",
@@ -10572,7 +10999,7 @@ module Aws::EC2
10572
10999
  # },
10573
11000
  # tag_specifications: [
10574
11001
  # {
10575
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11002
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10576
11003
  # tags: [
10577
11004
  # {
10578
11005
  # key: "String",
@@ -10691,7 +11118,7 @@ module Aws::EC2
10691
11118
  # @return [String]
10692
11119
  #
10693
11120
  # @!attribute [rw] user_id
10694
- # The AWS account ID to be added or removed.
11121
+ # The ID of the account to be added or removed.
10695
11122
  # @return [String]
10696
11123
  #
10697
11124
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermission AWS API Documentation
@@ -10725,11 +11152,11 @@ module Aws::EC2
10725
11152
  # }
10726
11153
  #
10727
11154
  # @!attribute [rw] add
10728
- # Adds the specified AWS account ID or group to the list.
11155
+ # Adds the specified account ID or group to the list.
10729
11156
  # @return [Array<Types::CreateVolumePermission>]
10730
11157
  #
10731
11158
  # @!attribute [rw] remove
10732
- # Removes the specified AWS account ID or group from the list.
11159
+ # Removes the specified account ID or group from the list.
10733
11160
  # @return [Array<Types::CreateVolumePermission>]
10734
11161
  #
10735
11162
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumePermissionModifications AWS API Documentation
@@ -10756,7 +11183,7 @@ module Aws::EC2
10756
11183
  # dry_run: false,
10757
11184
  # tag_specifications: [
10758
11185
  # {
10759
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11186
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
10760
11187
  # tags: [
10761
11188
  # {
10762
11189
  # key: "String",
@@ -10767,6 +11194,7 @@ module Aws::EC2
10767
11194
  # ],
10768
11195
  # multi_attach_enabled: false,
10769
11196
  # throughput: 1,
11197
+ # client_token: "String",
10770
11198
  # }
10771
11199
  #
10772
11200
  # @!attribute [rw] availability_zone
@@ -10806,9 +11234,9 @@ module Aws::EC2
10806
11234
  #
10807
11235
  # * `io2`\: 100-64,000 IOPS
10808
11236
  #
10809
- # For `io1` and `io2` volumes, we guarantee 64,000 IOPS only for
10810
- # [Instances built on the Nitro System][1]. Other instance families
10811
- # guarantee performance up to 32,000 IOPS.
11237
+ # `io1` and `io2` volumes support up to 64,000 IOPS only on [Instances
11238
+ # built on the Nitro System][1]. Other instance families support
11239
+ # performance up to 32,000 IOPS.
10812
11240
  #
10813
11241
  # This parameter is required for `io1` and `io2` volumes. The default
10814
11242
  # for `gp3` volumes is 3,000 IOPS. This parameter is not supported for
@@ -10820,12 +11248,12 @@ module Aws::EC2
10820
11248
  # @return [Integer]
10821
11249
  #
10822
11250
  # @!attribute [rw] kms_key_id
10823
- # The identifier of the AWS Key Management Service (AWS KMS) customer
10824
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
10825
- # is not specified, your AWS managed CMK for EBS is used. If
10826
- # `KmsKeyId` is specified, the encrypted state must be `true`.
11251
+ # The identifier of the Key Management Service (KMS) KMS key to use
11252
+ # for Amazon EBS encryption. If this parameter is not specified, your
11253
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
11254
+ # encrypted state must be `true`.
10827
11255
  #
10828
- # You can specify the CMK using any of the following:
11256
+ # You can specify the KMS key using any of the following:
10829
11257
  #
10830
11258
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
10831
11259
  #
@@ -10837,9 +11265,9 @@ module Aws::EC2
10837
11265
  # * Alias ARN. For example,
10838
11266
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
10839
11267
  #
10840
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
10841
- # an ID, alias, or ARN that is not valid, the action can appear to
10842
- # complete, but eventually fails.
11268
+ # Amazon Web Services authenticates the KMS key asynchronously.
11269
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
11270
+ # the action can appear to complete, but eventually fails.
10843
11271
  # @return [String]
10844
11272
  #
10845
11273
  # @!attribute [rw] outpost_arn
@@ -10925,6 +11353,19 @@ module Aws::EC2
10925
11353
  # Valid Range: Minimum value of 125. Maximum value of 1000.
10926
11354
  # @return [Integer]
10927
11355
  #
11356
+ # @!attribute [rw] client_token
11357
+ # Unique, case-sensitive identifier that you provide to ensure the
11358
+ # idempotency of the request. For more information, see [Ensure
11359
+ # Idempotency][1].
11360
+ #
11361
+ # **A suitable default value is auto-generated.** You should normally
11362
+ # not need to pass this option.
11363
+ #
11364
+ #
11365
+ #
11366
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
11367
+ # @return [String]
11368
+ #
10928
11369
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVolumeRequest AWS API Documentation
10929
11370
  #
10930
11371
  class CreateVolumeRequest < Struct.new(
@@ -10939,7 +11380,8 @@ module Aws::EC2
10939
11380
  :dry_run,
10940
11381
  :tag_specifications,
10941
11382
  :multi_attach_enabled,
10942
- :throughput)
11383
+ :throughput,
11384
+ :client_token)
10943
11385
  SENSITIVE = []
10944
11386
  include Aws::Structure
10945
11387
  end
@@ -11039,7 +11481,7 @@ module Aws::EC2
11039
11481
  # private_dns_enabled: false,
11040
11482
  # tag_specifications: [
11041
11483
  # {
11042
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11484
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11043
11485
  # tags: [
11044
11486
  # {
11045
11487
  # key: "String",
@@ -11176,7 +11618,7 @@ module Aws::EC2
11176
11618
  # client_token: "String",
11177
11619
  # tag_specifications: [
11178
11620
  # {
11179
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11621
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11180
11622
  # tags: [
11181
11623
  # {
11182
11624
  # key: "String",
@@ -11272,7 +11714,7 @@ module Aws::EC2
11272
11714
  # peer_region: "String",
11273
11715
  # tag_specifications: [
11274
11716
  # {
11275
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11717
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11276
11718
  # tags: [
11277
11719
  # {
11278
11720
  # key: "String",
@@ -11291,9 +11733,9 @@ module Aws::EC2
11291
11733
  # @return [Boolean]
11292
11734
  #
11293
11735
  # @!attribute [rw] peer_owner_id
11294
- # The AWS account ID of the owner of the accepter VPC.
11736
+ # The account ID of the owner of the accepter VPC.
11295
11737
  #
11296
- # Default: Your AWS account ID
11738
+ # Default: Your account ID
11297
11739
  # @return [String]
11298
11740
  #
11299
11741
  # @!attribute [rw] peer_vpc_id
@@ -11355,7 +11797,7 @@ module Aws::EC2
11355
11797
  # ipv_6_cidr_block_network_border_group: "String",
11356
11798
  # tag_specifications: [
11357
11799
  # {
11358
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11800
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11359
11801
  # tags: [
11360
11802
  # {
11361
11803
  # key: "String",
@@ -11524,7 +11966,7 @@ module Aws::EC2
11524
11966
  # },
11525
11967
  # tag_specifications: [
11526
11968
  # {
11527
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11969
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11528
11970
  # tags: [
11529
11971
  # {
11530
11972
  # key: "String",
@@ -11634,7 +12076,7 @@ module Aws::EC2
11634
12076
  # type: "ipsec.1", # required, accepts ipsec.1
11635
12077
  # tag_specifications: [
11636
12078
  # {
11637
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
12079
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
11638
12080
  # tags: [
11639
12081
  # {
11640
12082
  # key: "String",
@@ -12229,6 +12671,54 @@ module Aws::EC2
12229
12671
  include Aws::Structure
12230
12672
  end
12231
12673
 
12674
+ # @note When making an API call, you may pass DeleteInstanceEventWindowRequest
12675
+ # data as a hash:
12676
+ #
12677
+ # {
12678
+ # dry_run: false,
12679
+ # force_delete: false,
12680
+ # instance_event_window_id: "InstanceEventWindowId", # required
12681
+ # }
12682
+ #
12683
+ # @!attribute [rw] dry_run
12684
+ # Checks whether you have the required permissions for the action,
12685
+ # without actually making the request, and provides an error response.
12686
+ # If you have the required permissions, the error response is
12687
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
12688
+ # @return [Boolean]
12689
+ #
12690
+ # @!attribute [rw] force_delete
12691
+ # Specify `true` to force delete the event window. Use the force
12692
+ # delete parameter if the event window is currently associated with
12693
+ # targets.
12694
+ # @return [Boolean]
12695
+ #
12696
+ # @!attribute [rw] instance_event_window_id
12697
+ # The ID of the event window.
12698
+ # @return [String]
12699
+ #
12700
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceEventWindowRequest AWS API Documentation
12701
+ #
12702
+ class DeleteInstanceEventWindowRequest < Struct.new(
12703
+ :dry_run,
12704
+ :force_delete,
12705
+ :instance_event_window_id)
12706
+ SENSITIVE = []
12707
+ include Aws::Structure
12708
+ end
12709
+
12710
+ # @!attribute [rw] instance_event_window_state
12711
+ # The state of the event window.
12712
+ # @return [Types::InstanceEventWindowStateChange]
12713
+ #
12714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteInstanceEventWindowResult AWS API Documentation
12715
+ #
12716
+ class DeleteInstanceEventWindowResult < Struct.new(
12717
+ :instance_event_window_state)
12718
+ SENSITIVE = []
12719
+ include Aws::Structure
12720
+ end
12721
+
12232
12722
  # @note When making an API call, you may pass DeleteInternetGatewayRequest
12233
12723
  # data as a hash:
12234
12724
  #
@@ -13107,6 +13597,46 @@ module Aws::EC2
13107
13597
  include Aws::Structure
13108
13598
  end
13109
13599
 
13600
+ # @note When making an API call, you may pass DeleteSubnetCidrReservationRequest
13601
+ # data as a hash:
13602
+ #
13603
+ # {
13604
+ # subnet_cidr_reservation_id: "SubnetCidrReservationId", # required
13605
+ # dry_run: false,
13606
+ # }
13607
+ #
13608
+ # @!attribute [rw] subnet_cidr_reservation_id
13609
+ # The ID of the subnet CIDR reservation.
13610
+ # @return [String]
13611
+ #
13612
+ # @!attribute [rw] dry_run
13613
+ # Checks whether you have the required permissions for the action,
13614
+ # without actually making the request, and provides an error response.
13615
+ # If you have the required permissions, the error response is
13616
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13617
+ # @return [Boolean]
13618
+ #
13619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetCidrReservationRequest AWS API Documentation
13620
+ #
13621
+ class DeleteSubnetCidrReservationRequest < Struct.new(
13622
+ :subnet_cidr_reservation_id,
13623
+ :dry_run)
13624
+ SENSITIVE = []
13625
+ include Aws::Structure
13626
+ end
13627
+
13628
+ # @!attribute [rw] deleted_subnet_cidr_reservation
13629
+ # Information about the deleted subnet CIDR reservation.
13630
+ # @return [Types::SubnetCidrReservation]
13631
+ #
13632
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteSubnetCidrReservationResult AWS API Documentation
13633
+ #
13634
+ class DeleteSubnetCidrReservationResult < Struct.new(
13635
+ :deleted_subnet_cidr_reservation)
13636
+ SENSITIVE = []
13637
+ include Aws::Structure
13638
+ end
13639
+
13110
13640
  # @note When making an API call, you may pass DeleteSubnetRequest
13111
13641
  # data as a hash:
13112
13642
  #
@@ -13171,8 +13701,8 @@ module Aws::EC2
13171
13701
  # the tag only if its value is an empty string.
13172
13702
  #
13173
13703
  # If you omit this parameter, we delete all user-defined tags for the
13174
- # specified resources. We do not delete AWS-generated tags (tags that
13175
- # have the `aws:` prefix).
13704
+ # specified resources. We do not delete Amazon Web Services-generated
13705
+ # tags (tags that have the `aws:` prefix).
13176
13706
  # @return [Array<Types::Tag>]
13177
13707
  #
13178
13708
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTagsRequest AWS API Documentation
@@ -14943,8 +15473,7 @@ module Aws::EC2
14943
15473
  # * `state` - The state of the carrier gateway (`pending` \| `failed`
14944
15474
  # \| `available` \| `deleting` \| `deleted`).
14945
15475
  #
14946
- # * `owner-id` - The AWS account ID of the owner of the carrier
14947
- # gateway.
15476
+ # * `owner-id` - The account ID of the owner of the carrier gateway.
14948
15477
  #
14949
15478
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
14950
15479
  # to the resource. Use the tag key in the filter name and the tag
@@ -15727,8 +16256,7 @@ module Aws::EC2
15727
16256
  #
15728
16257
  # * `value` - The value for one of the options.
15729
16258
  #
15730
- # * `owner-id` - The ID of the AWS account that owns the DHCP options
15731
- # set.
16259
+ # * `owner-id` - The ID of the account that owns the DHCP options set.
15732
16260
  #
15733
16261
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
15734
16262
  # to the resource. Use the tag key in the filter name and the tag
@@ -16102,13 +16630,13 @@ module Aws::EC2
16102
16630
  # @return [String]
16103
16631
  #
16104
16632
  # @!attribute [rw] owner_id
16105
- # The ID of the AWS account that enabled fast snapshot restores on the
16633
+ # The ID of the account that enabled fast snapshot restores on the
16106
16634
  # snapshot.
16107
16635
  # @return [String]
16108
16636
  #
16109
16637
  # @!attribute [rw] owner_alias
16110
- # The AWS owner alias that enabled fast snapshot restores on the
16111
- # snapshot. This is intended for future use.
16638
+ # The Amazon Web Services owner alias that enabled fast snapshot
16639
+ # restores on the snapshot. This is intended for future use.
16112
16640
  # @return [String]
16113
16641
  #
16114
16642
  # @!attribute [rw] enabling_time
@@ -16174,7 +16702,7 @@ module Aws::EC2
16174
16702
  #
16175
16703
  # * `availability-zone`\: The Availability Zone of the snapshot.
16176
16704
  #
16177
- # * `owner-id`\: The ID of the AWS account that enabled fast snapshot
16705
+ # * `owner-id`\: The ID of the account that enabled fast snapshot
16178
16706
  # restore on the snapshot.
16179
16707
  #
16180
16708
  # * `snapshot-id`\: The ID of the snapshot.
@@ -17758,6 +18286,113 @@ module Aws::EC2
17758
18286
  include Aws::Structure
17759
18287
  end
17760
18288
 
18289
+ # <para>Describe instance event windows by InstanceEventWindow.</para>
18290
+ #
18291
+ # @note When making an API call, you may pass DescribeInstanceEventWindowsRequest
18292
+ # data as a hash:
18293
+ #
18294
+ # {
18295
+ # dry_run: false,
18296
+ # instance_event_window_ids: ["InstanceEventWindowId"],
18297
+ # filters: [
18298
+ # {
18299
+ # name: "String",
18300
+ # values: ["String"],
18301
+ # },
18302
+ # ],
18303
+ # max_results: 1,
18304
+ # next_token: "String",
18305
+ # }
18306
+ #
18307
+ # @!attribute [rw] dry_run
18308
+ # Checks whether you have the required permissions for the action,
18309
+ # without actually making the request, and provides an error response.
18310
+ # If you have the required permissions, the error response is
18311
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
18312
+ # @return [Boolean]
18313
+ #
18314
+ # @!attribute [rw] instance_event_window_ids
18315
+ # The IDs of the event windows.
18316
+ # @return [Array<String>]
18317
+ #
18318
+ # @!attribute [rw] filters
18319
+ # One or more filters.
18320
+ #
18321
+ # * `dedicated-host-id` - The event windows associated with the
18322
+ # specified Dedicated Host ID.
18323
+ #
18324
+ # * `event-window-name` - The event windows associated with the
18325
+ # specified names.
18326
+ #
18327
+ # * `instance-id` - The event windows associated with the specified
18328
+ # instance ID.
18329
+ #
18330
+ # * `instance-tag` - The event windows associated with the specified
18331
+ # tag and value.
18332
+ #
18333
+ # * `instance-tag-key` - The event windows associated with the
18334
+ # specified tag key, regardless of the value.
18335
+ #
18336
+ # * `instance-tag-value` - The event windows associated with the
18337
+ # specified tag value, regardless of the key.
18338
+ #
18339
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
18340
+ # to the event window. Use the tag key in the filter name and the
18341
+ # tag value as the filter value. For example, to find all resources
18342
+ # that have a tag with the key `Owner` and the value `CMX`, specify
18343
+ # `tag:Owner` for the filter name and `CMX` for the filter value.
18344
+ #
18345
+ # * `tag-key` - The key of a tag assigned to the event window. Use
18346
+ # this filter to find all event windows that have a tag with a
18347
+ # specific key, regardless of the tag value.
18348
+ #
18349
+ # * `tag-value` - The value of a tag assigned to the event window. Use
18350
+ # this filter to find all event windows that have a tag with a
18351
+ # specific value, regardless of the tag key.
18352
+ # @return [Array<Types::Filter>]
18353
+ #
18354
+ # @!attribute [rw] max_results
18355
+ # The maximum number of results to return in a single call. To
18356
+ # retrieve the remaining results, make another call with the returned
18357
+ # `NextToken` value. This value can be between 20 and 500. You cannot
18358
+ # specify this parameter and the event window IDs parameter in the
18359
+ # same call.
18360
+ # @return [Integer]
18361
+ #
18362
+ # @!attribute [rw] next_token
18363
+ # The token to request the next page of results.
18364
+ # @return [String]
18365
+ #
18366
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceEventWindowsRequest AWS API Documentation
18367
+ #
18368
+ class DescribeInstanceEventWindowsRequest < Struct.new(
18369
+ :dry_run,
18370
+ :instance_event_window_ids,
18371
+ :filters,
18372
+ :max_results,
18373
+ :next_token)
18374
+ SENSITIVE = []
18375
+ include Aws::Structure
18376
+ end
18377
+
18378
+ # @!attribute [rw] instance_event_windows
18379
+ # Information about the event windows.
18380
+ # @return [Array<Types::InstanceEventWindow>]
18381
+ #
18382
+ # @!attribute [rw] next_token
18383
+ # The token to use to retrieve the next page of results. This value is
18384
+ # `null` when there are no more results to return.
18385
+ # @return [String]
18386
+ #
18387
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceEventWindowsResult AWS API Documentation
18388
+ #
18389
+ class DescribeInstanceEventWindowsResult < Struct.new(
18390
+ :instance_event_windows,
18391
+ :next_token)
18392
+ SENSITIVE = []
18393
+ include Aws::Structure
18394
+ end
18395
+
17761
18396
  # @note When making an API call, you may pass DescribeInstanceStatusRequest
17762
18397
  # data as a hash:
17763
18398
  #
@@ -18567,8 +19202,7 @@ module Aws::EC2
18567
19202
  #
18568
19203
  # * `internet-gateway-id` - The ID of the Internet gateway.
18569
19204
  #
18570
- # * `owner-id` - The ID of the AWS account that owns the internet
18571
- # gateway.
19205
+ # * `owner-id` - The ID of the account that owns the internet gateway.
18572
19206
  #
18573
19207
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
18574
19208
  # to the resource. Use the tag key in the filter name and the tag
@@ -18753,7 +19387,7 @@ module Aws::EC2
18753
19387
  # @!attribute [rw] key_names
18754
19388
  # The key pair names.
18755
19389
  #
18756
- # Default: Describes all your key pairs.
19390
+ # Default: Describes all of your key pairs.
18757
19391
  # @return [Array<String>]
18758
19392
  #
18759
19393
  # @!attribute [rw] key_pair_ids
@@ -19800,7 +20434,7 @@ module Aws::EC2
19800
20434
  #
19801
20435
  # * `network-acl-id` - The ID of the network ACL.
19802
20436
  #
19803
- # * `owner-id` - The ID of the AWS account that owns the network ACL.
20437
+ # * `owner-id` - The ID of the account that owns the network ACL.
19804
20438
  #
19805
20439
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
19806
20440
  # to the resource. Use the tag key in the filter name and the tag
@@ -21339,7 +21973,7 @@ module Aws::EC2
21339
21973
  # route table for the VPC (`true` \| `false`). Route tables that do
21340
21974
  # not have an association ID are not returned in the response.
21341
21975
  #
21342
- # * `owner-id` - The ID of the AWS account that owns the route table.
21976
+ # * `owner-id` - The ID of the account that owns the route table.
21343
21977
  #
21344
21978
  # * `route-table-id` - The ID of the route table.
21345
21979
  #
@@ -21349,8 +21983,8 @@ module Aws::EC2
21349
21983
  # * `route.destination-ipv6-cidr-block` - The IPv6 CIDR range
21350
21984
  # specified in a route in the route table.
21351
21985
  #
21352
- # * `route.destination-prefix-list-id` - The ID (prefix) of the AWS
21353
- # service specified in a route in the table.
21986
+ # * `route.destination-prefix-list-id` - The ID (prefix) of the Amazon
21987
+ # Web Service specified in a route in the table.
21354
21988
  #
21355
21989
  # * `route.egress-only-internet-gateway-id` - The ID of an egress-only
21356
21990
  # Internet gateway specified in a route in the route table.
@@ -21701,6 +22335,88 @@ module Aws::EC2
21701
22335
  include Aws::Structure
21702
22336
  end
21703
22337
 
22338
+ # @note When making an API call, you may pass DescribeSecurityGroupRulesRequest
22339
+ # data as a hash:
22340
+ #
22341
+ # {
22342
+ # filters: [
22343
+ # {
22344
+ # name: "String",
22345
+ # values: ["String"],
22346
+ # },
22347
+ # ],
22348
+ # security_group_rule_ids: ["String"],
22349
+ # dry_run: false,
22350
+ # next_token: "String",
22351
+ # max_results: 1,
22352
+ # }
22353
+ #
22354
+ # @!attribute [rw] filters
22355
+ # One or more filters.
22356
+ #
22357
+ # * `group-id` - The ID of the security group.
22358
+ #
22359
+ # * `security-group-rule-id` - The ID of the security group rule.
22360
+ #
22361
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
22362
+ # to the resource. Use the tag key in the filter name and the tag
22363
+ # value as the filter value. For example, to find all resources that
22364
+ # have a tag with the key `Owner` and the value `TeamA`, specify
22365
+ # `tag:Owner` for the filter name and `TeamA` for the filter value.
22366
+ # @return [Array<Types::Filter>]
22367
+ #
22368
+ # @!attribute [rw] security_group_rule_ids
22369
+ # The IDs of the security group rules.
22370
+ # @return [Array<String>]
22371
+ #
22372
+ # @!attribute [rw] dry_run
22373
+ # Checks whether you have the required permissions for the action,
22374
+ # without actually making the request, and provides an error response.
22375
+ # If you have the required permissions, the error response is
22376
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
22377
+ # @return [Boolean]
22378
+ #
22379
+ # @!attribute [rw] next_token
22380
+ # The token for the next page of results.
22381
+ # @return [String]
22382
+ #
22383
+ # @!attribute [rw] max_results
22384
+ # The maximum number of results to return in a single call. To
22385
+ # retrieve the remaining results, make another request with the
22386
+ # returned `NextToken` value. This value can be between 5 and 1000. If
22387
+ # this parameter is not specified, then all results are returned.
22388
+ # @return [Integer]
22389
+ #
22390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesRequest AWS API Documentation
22391
+ #
22392
+ class DescribeSecurityGroupRulesRequest < Struct.new(
22393
+ :filters,
22394
+ :security_group_rule_ids,
22395
+ :dry_run,
22396
+ :next_token,
22397
+ :max_results)
22398
+ SENSITIVE = []
22399
+ include Aws::Structure
22400
+ end
22401
+
22402
+ # @!attribute [rw] security_group_rules
22403
+ # Information about security group rules.
22404
+ # @return [Array<Types::SecurityGroupRule>]
22405
+ #
22406
+ # @!attribute [rw] next_token
22407
+ # The token to use to retrieve the next page of results. This value is
22408
+ # `null` when there are no more results to return.
22409
+ # @return [String]
22410
+ #
22411
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesResult AWS API Documentation
22412
+ #
22413
+ class DescribeSecurityGroupRulesResult < Struct.new(
22414
+ :security_group_rules,
22415
+ :next_token)
22416
+ SENSITIVE = []
22417
+ include Aws::Structure
22418
+ end
22419
+
21704
22420
  # @note When making an API call, you may pass DescribeSecurityGroupsRequest
21705
22421
  # data as a hash:
21706
22422
  #
@@ -21751,8 +22467,9 @@ module Aws::EC2
21751
22467
  # * `egress.ip-permission.to-port` - For an outbound rule, the end of
21752
22468
  # port range for the TCP and UDP protocols, or an ICMP code.
21753
22469
  #
21754
- # * `egress.ip-permission.user-id` - The ID of an AWS account that has
21755
- # been referenced in an outbound security group rule.
22470
+ # * `egress.ip-permission.user-id` - The ID of an Amazon Web Services
22471
+ # account that has been referenced in an outbound security group
22472
+ # rule.
21756
22473
  #
21757
22474
  # * `group-id` - The ID of the security group.
21758
22475
  #
@@ -21783,11 +22500,11 @@ module Aws::EC2
21783
22500
  # * `ip-permission.to-port` - For an inbound rule, the end of port
21784
22501
  # range for the TCP and UDP protocols, or an ICMP code.
21785
22502
  #
21786
- # * `ip-permission.user-id` - The ID of an AWS account that has been
21787
- # referenced in an inbound security group rule.
22503
+ # * `ip-permission.user-id` - The ID of an Amazon Web Services account
22504
+ # that has been referenced in an inbound security group rule.
21788
22505
  #
21789
- # * `owner-id` - The AWS account ID of the owner of the security
21790
- # group.
22506
+ # * `owner-id` - The Amazon Web Services account ID of the owner of
22507
+ # the security group.
21791
22508
  #
21792
22509
  # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
21793
22510
  # to the resource. Use the tag key in the filter name and the tag
@@ -21807,7 +22524,7 @@ module Aws::EC2
21807
22524
  # The IDs of the security groups. Required for security groups in a
21808
22525
  # nondefault VPC.
21809
22526
  #
21810
- # Default: Describes all your security groups.
22527
+ # Default: Describes all of your security groups.
21811
22528
  # @return [Array<String>]
21812
22529
  #
21813
22530
  # @!attribute [rw] group_names
@@ -21816,7 +22533,7 @@ module Aws::EC2
21816
22533
  # security group ID. For security groups in a nondefault VPC, use the
21817
22534
  # `group-name` filter to describe security groups by name.
21818
22535
  #
21819
- # Default: Describes all your security groups.
22536
+ # Default: Describes all of your security groups.
21820
22537
  # @return [Array<String>]
21821
22538
  #
21822
22539
  # @!attribute [rw] dry_run
@@ -21952,12 +22669,12 @@ module Aws::EC2
21952
22669
  # \| `false`)
21953
22670
  #
21954
22671
  # * `owner-alias` - The owner alias, from an Amazon-maintained list
21955
- # (`amazon`). This is not the user-configured AWS account alias set
22672
+ # (`amazon`). This is not the user-configured account alias set
21956
22673
  # using the IAM console. We recommend that you use the related
21957
22674
  # parameter instead of this filter.
21958
22675
  #
21959
- # * `owner-id` - The AWS account ID of the owner. We recommend that
21960
- # you use the related parameter instead of this filter.
22676
+ # * `owner-id` - The account ID of the owner. We recommend that you
22677
+ # use the related parameter instead of this filter.
21961
22678
  #
21962
22679
  # * `progress` - The progress of the snapshot, as a percentage (for
21963
22680
  # example, 80%).
@@ -22009,12 +22726,11 @@ module Aws::EC2
22009
22726
  #
22010
22727
  # @!attribute [rw] owner_ids
22011
22728
  # Scopes the results to snapshots with the specified owners. You can
22012
- # specify a combination of AWS account IDs, `self`, and `amazon`.
22729
+ # specify a combination of account IDs, `self`, and `amazon`.
22013
22730
  # @return [Array<String>]
22014
22731
  #
22015
22732
  # @!attribute [rw] restorable_by_user_ids
22016
- # The IDs of the AWS accounts that can create volumes from the
22017
- # snapshot.
22733
+ # The IDs of the accounts that can create volumes from the snapshot.
22018
22734
  # @return [Array<String>]
22019
22735
  #
22020
22736
  # @!attribute [rw] snapshot_ids
@@ -22849,7 +23565,7 @@ module Aws::EC2
22849
23565
  #
22850
23566
  # * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
22851
23567
  #
22852
- # * `owner-id` - The ID of the AWS account that owns the subnet.
23568
+ # * `owner-id` - The ID of the account that owns the subnet.
22853
23569
  #
22854
23570
  # * `state` - The state of the subnet (`pending` \| `available`).
22855
23571
  #
@@ -25187,8 +25903,8 @@ module Aws::EC2
25187
25903
  # * `accepter-vpc-info.cidr-block` - The IPv4 CIDR block of the
25188
25904
  # accepter VPC.
25189
25905
  #
25190
- # * `accepter-vpc-info.owner-id` - The AWS account ID of the owner of
25191
- # the accepter VPC.
25906
+ # * `accepter-vpc-info.owner-id` - The ID of the account that owns the
25907
+ # accepter VPC.
25192
25908
  #
25193
25909
  # * `accepter-vpc-info.vpc-id` - The ID of the accepter VPC.
25194
25910
  #
@@ -25198,7 +25914,7 @@ module Aws::EC2
25198
25914
  # * `requester-vpc-info.cidr-block` - The IPv4 CIDR block of the
25199
25915
  # requester's VPC.
25200
25916
  #
25201
- # * `requester-vpc-info.owner-id` - The AWS account ID of the owner of
25917
+ # * `requester-vpc-info.owner-id` - The ID of the account that owns
25202
25918
  # the requester VPC.
25203
25919
  #
25204
25920
  # * `requester-vpc-info.vpc-id` - The ID of the requester VPC.
@@ -25324,9 +26040,9 @@ module Aws::EC2
25324
26040
  # * `ipv6-cidr-block-association.state` - The state of an IPv6 CIDR
25325
26041
  # block associated with the VPC.
25326
26042
  #
25327
- # * `isDefault` - Indicates whether the VPC is the default VPC.
26043
+ # * `is-default` - Indicates whether the VPC is the default VPC.
25328
26044
  #
25329
- # * `owner-id` - The ID of the AWS account that owns the VPC.
26045
+ # * `owner-id` - The ID of the account that owns the VPC.
25330
26046
  #
25331
26047
  # * `state` - The state of the VPC (`pending` \| `available`).
25332
26048
  #
@@ -25837,7 +26553,7 @@ module Aws::EC2
25837
26553
  # @return [String]
25838
26554
  #
25839
26555
  # @!attribute [rw] owner_id
25840
- # The ID of the AWS account that owns the DHCP options set.
26556
+ # The ID of the account that owns the DHCP options set.
25841
26557
  # @return [String]
25842
26558
  #
25843
26559
  # @!attribute [rw] tags
@@ -26011,13 +26727,13 @@ module Aws::EC2
26011
26727
  # @return [String]
26012
26728
  #
26013
26729
  # @!attribute [rw] owner_id
26014
- # The ID of the AWS account that enabled fast snapshot restores on the
26730
+ # The ID of the account that enabled fast snapshot restores on the
26015
26731
  # snapshot.
26016
26732
  # @return [String]
26017
26733
  #
26018
26734
  # @!attribute [rw] owner_alias
26019
- # The AWS owner alias that enabled fast snapshot restores on the
26020
- # snapshot. This is intended for future use.
26735
+ # The Amazon Web Services owner alias that enabled fast snapshot
26736
+ # restores on the snapshot. This is intended for future use.
26021
26737
  # @return [String]
26022
26738
  #
26023
26739
  # @!attribute [rw] enabling_time
@@ -26514,6 +27230,61 @@ module Aws::EC2
26514
27230
  include Aws::Structure
26515
27231
  end
26516
27232
 
27233
+ # @note When making an API call, you may pass DisassociateInstanceEventWindowRequest
27234
+ # data as a hash:
27235
+ #
27236
+ # {
27237
+ # dry_run: false,
27238
+ # instance_event_window_id: "InstanceEventWindowId", # required
27239
+ # association_target: { # required
27240
+ # instance_ids: ["InstanceId"],
27241
+ # instance_tags: [
27242
+ # {
27243
+ # key: "String",
27244
+ # value: "String",
27245
+ # },
27246
+ # ],
27247
+ # dedicated_host_ids: ["DedicatedHostId"],
27248
+ # },
27249
+ # }
27250
+ #
27251
+ # @!attribute [rw] dry_run
27252
+ # Checks whether you have the required permissions for the action,
27253
+ # without actually making the request, and provides an error response.
27254
+ # If you have the required permissions, the error response is
27255
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
27256
+ # @return [Boolean]
27257
+ #
27258
+ # @!attribute [rw] instance_event_window_id
27259
+ # The ID of the event window.
27260
+ # @return [String]
27261
+ #
27262
+ # @!attribute [rw] association_target
27263
+ # One or more targets to disassociate from the specified event window.
27264
+ # @return [Types::InstanceEventWindowDisassociationRequest]
27265
+ #
27266
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateInstanceEventWindowRequest AWS API Documentation
27267
+ #
27268
+ class DisassociateInstanceEventWindowRequest < Struct.new(
27269
+ :dry_run,
27270
+ :instance_event_window_id,
27271
+ :association_target)
27272
+ SENSITIVE = []
27273
+ include Aws::Structure
27274
+ end
27275
+
27276
+ # @!attribute [rw] instance_event_window
27277
+ # Information about the event window.
27278
+ # @return [Types::InstanceEventWindow]
27279
+ #
27280
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateInstanceEventWindowResult AWS API Documentation
27281
+ #
27282
+ class DisassociateInstanceEventWindowResult < Struct.new(
27283
+ :instance_event_window)
27284
+ SENSITIVE = []
27285
+ include Aws::Structure
27286
+ end
27287
+
26517
27288
  # @note When making an API call, you may pass DisassociateRouteTableRequest
26518
27289
  # data as a hash:
26519
27290
  #
@@ -27649,13 +28420,13 @@ module Aws::EC2
27649
28420
  # @return [String]
27650
28421
  #
27651
28422
  # @!attribute [rw] owner_id
27652
- # The ID of the AWS account that enabled fast snapshot restores on the
28423
+ # The ID of the account that enabled fast snapshot restores on the
27653
28424
  # snapshot.
27654
28425
  # @return [String]
27655
28426
  #
27656
28427
  # @!attribute [rw] owner_alias
27657
- # The AWS owner alias that enabled fast snapshot restores on the
27658
- # snapshot. This is intended for future use.
28428
+ # The Amazon Web Services owner alias that enabled fast snapshot
28429
+ # restores on the snapshot. This is intended for future use.
27659
28430
  # @return [String]
27660
28431
  #
27661
28432
  # @!attribute [rw] enabling_time
@@ -27717,7 +28488,7 @@ module Aws::EC2
27717
28488
  # @!attribute [rw] source_snapshot_ids
27718
28489
  # The IDs of one or more snapshots. For example,
27719
28490
  # `snap-1234567890abcdef0`. You can specify a snapshot that was shared
27720
- # with you from another AWS account.
28491
+ # with you from another account.
27721
28492
  # @return [Array<String>]
27722
28493
  #
27723
28494
  # @!attribute [rw] dry_run
@@ -28514,7 +29285,7 @@ module Aws::EC2
28514
29285
  # role_name: "String",
28515
29286
  # tag_specifications: [
28516
29287
  # {
28517
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
29288
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
28518
29289
  # tags: [
28519
29290
  # {
28520
29291
  # key: "String",
@@ -30416,8 +31187,8 @@ module Aws::EC2
30416
31187
  end
30417
31188
 
30418
31189
  # @!attribute [rw] kms_key_id
30419
- # The Amazon Resource Name (ARN) of the default CMK for encryption by
30420
- # default.
31190
+ # The Amazon Resource Name (ARN) of the default KMS key for encryption
31191
+ # by default.
30421
31192
  # @return [String]
30422
31193
  #
30423
31194
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -30994,6 +31765,97 @@ module Aws::EC2
30994
31765
  include Aws::Structure
30995
31766
  end
30996
31767
 
31768
+ # @note When making an API call, you may pass GetSubnetCidrReservationsRequest
31769
+ # data as a hash:
31770
+ #
31771
+ # {
31772
+ # filters: [
31773
+ # {
31774
+ # name: "String",
31775
+ # values: ["String"],
31776
+ # },
31777
+ # ],
31778
+ # subnet_id: "SubnetId", # required
31779
+ # dry_run: false,
31780
+ # next_token: "String",
31781
+ # max_results: 1,
31782
+ # }
31783
+ #
31784
+ # @!attribute [rw] filters
31785
+ # One or more filters.
31786
+ #
31787
+ # * `reservationType` - The type of reservation (`prefix` \|
31788
+ # `explicit`).
31789
+ #
31790
+ # * `subnet-id` - The ID of the subnet.
31791
+ #
31792
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
31793
+ # to the resource. Use the tag key in the filter name and the tag
31794
+ # value as the filter value. For example, to find all resources that
31795
+ # have a tag with the key `Owner` and the value `TeamA`, specify
31796
+ # `tag:Owner` for the filter name and `TeamA` for the filter value.
31797
+ #
31798
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
31799
+ # filter to find all resources assigned a tag with a specific key,
31800
+ # regardless of the tag value.
31801
+ # @return [Array<Types::Filter>]
31802
+ #
31803
+ # @!attribute [rw] subnet_id
31804
+ # The ID of the subnet.
31805
+ # @return [String]
31806
+ #
31807
+ # @!attribute [rw] dry_run
31808
+ # Checks whether you have the required permissions for the action,
31809
+ # without actually making the request, and provides an error response.
31810
+ # If you have the required permissions, the error response is
31811
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
31812
+ # @return [Boolean]
31813
+ #
31814
+ # @!attribute [rw] next_token
31815
+ # The token for the next page of results.
31816
+ # @return [String]
31817
+ #
31818
+ # @!attribute [rw] max_results
31819
+ # The maximum number of results to return with a single call. To
31820
+ # retrieve the remaining results, make another call with the returned
31821
+ # `nextToken` value.
31822
+ # @return [Integer]
31823
+ #
31824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSubnetCidrReservationsRequest AWS API Documentation
31825
+ #
31826
+ class GetSubnetCidrReservationsRequest < Struct.new(
31827
+ :filters,
31828
+ :subnet_id,
31829
+ :dry_run,
31830
+ :next_token,
31831
+ :max_results)
31832
+ SENSITIVE = []
31833
+ include Aws::Structure
31834
+ end
31835
+
31836
+ # @!attribute [rw] subnet_ipv_4_cidr_reservations
31837
+ # Information about the IPv4 subnet CIDR reservations.
31838
+ # @return [Array<Types::SubnetCidrReservation>]
31839
+ #
31840
+ # @!attribute [rw] subnet_ipv_6_cidr_reservations
31841
+ # Information about the IPv6 subnet CIDR reservations.
31842
+ # @return [Array<Types::SubnetCidrReservation>]
31843
+ #
31844
+ # @!attribute [rw] next_token
31845
+ # The token to use to retrieve the next page of results. This value is
31846
+ # `null` when there are no more results to return.
31847
+ # @return [String]
31848
+ #
31849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSubnetCidrReservationsResult AWS API Documentation
31850
+ #
31851
+ class GetSubnetCidrReservationsResult < Struct.new(
31852
+ :subnet_ipv_4_cidr_reservations,
31853
+ :subnet_ipv_6_cidr_reservations,
31854
+ :next_token)
31855
+ SENSITIVE = []
31856
+ include Aws::Structure
31857
+ end
31858
+
30997
31859
  # @note When making an API call, you may pass GetTransitGatewayAttachmentPropagationsRequest
30998
31860
  # data as a hash:
30999
31861
  #
@@ -32504,7 +33366,7 @@ module Aws::EC2
32504
33366
  # ],
32505
33367
  # tag_specifications: [
32506
33368
  # {
32507
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33369
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
32508
33370
  # tags: [
32509
33371
  # {
32510
33372
  # key: "String",
@@ -33110,7 +33972,7 @@ module Aws::EC2
33110
33972
  # public_key_material: "data", # required
33111
33973
  # tag_specifications: [
33112
33974
  # {
33113
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33975
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33114
33976
  # tags: [
33115
33977
  # {
33116
33978
  # key: "String",
@@ -33158,7 +34020,7 @@ module Aws::EC2
33158
34020
  # @return [String]
33159
34021
  #
33160
34022
  # @!attribute [rw] key_name
33161
- # The key pair name you provided.
34023
+ # The key pair name that you provided.
33162
34024
  # @return [String]
33163
34025
  #
33164
34026
  # @!attribute [rw] key_pair_id
@@ -33207,7 +34069,7 @@ module Aws::EC2
33207
34069
  # role_name: "String",
33208
34070
  # tag_specifications: [
33209
34071
  # {
33210
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
34072
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
33211
34073
  # tags: [
33212
34074
  # {
33213
34075
  # key: "String",
@@ -34057,6 +34919,248 @@ module Aws::EC2
34057
34919
  include Aws::Structure
34058
34920
  end
34059
34921
 
34922
+ # The event window.
34923
+ #
34924
+ # @!attribute [rw] instance_event_window_id
34925
+ # The ID of the event window.
34926
+ # @return [String]
34927
+ #
34928
+ # @!attribute [rw] time_ranges
34929
+ # One or more time ranges defined for the event window.
34930
+ # @return [Array<Types::InstanceEventWindowTimeRange>]
34931
+ #
34932
+ # @!attribute [rw] name
34933
+ # The name of the event window.
34934
+ # @return [String]
34935
+ #
34936
+ # @!attribute [rw] cron_expression
34937
+ # The cron expression defined for the event window.
34938
+ # @return [String]
34939
+ #
34940
+ # @!attribute [rw] association_target
34941
+ # One or more targets associated with the event window.
34942
+ # @return [Types::InstanceEventWindowAssociationTarget]
34943
+ #
34944
+ # @!attribute [rw] state
34945
+ # The current state of the event window.
34946
+ # @return [String]
34947
+ #
34948
+ # @!attribute [rw] tags
34949
+ # The instance tags associated with the event window.
34950
+ # @return [Array<Types::Tag>]
34951
+ #
34952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindow AWS API Documentation
34953
+ #
34954
+ class InstanceEventWindow < Struct.new(
34955
+ :instance_event_window_id,
34956
+ :time_ranges,
34957
+ :name,
34958
+ :cron_expression,
34959
+ :association_target,
34960
+ :state,
34961
+ :tags)
34962
+ SENSITIVE = []
34963
+ include Aws::Structure
34964
+ end
34965
+
34966
+ # One or more targets associated with the specified event window. Only
34967
+ # one *type* of target (instance ID, instance tag, or Dedicated Host ID)
34968
+ # can be associated with an event window.
34969
+ #
34970
+ # @note When making an API call, you may pass InstanceEventWindowAssociationRequest
34971
+ # data as a hash:
34972
+ #
34973
+ # {
34974
+ # instance_ids: ["InstanceId"],
34975
+ # instance_tags: [
34976
+ # {
34977
+ # key: "String",
34978
+ # value: "String",
34979
+ # },
34980
+ # ],
34981
+ # dedicated_host_ids: ["DedicatedHostId"],
34982
+ # }
34983
+ #
34984
+ # @!attribute [rw] instance_ids
34985
+ # The IDs of the instances to associate with the event window. If the
34986
+ # instance is on a Dedicated Host, you can't specify the Instance ID
34987
+ # parameter; you must use the Dedicated Host ID parameter.
34988
+ # @return [Array<String>]
34989
+ #
34990
+ # @!attribute [rw] instance_tags
34991
+ # The instance tags to associate with the event window. Any instances
34992
+ # associated with the tags will be associated with the event window.
34993
+ # @return [Array<Types::Tag>]
34994
+ #
34995
+ # @!attribute [rw] dedicated_host_ids
34996
+ # The IDs of the Dedicated Hosts to associate with the event window.
34997
+ # @return [Array<String>]
34998
+ #
34999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowAssociationRequest AWS API Documentation
35000
+ #
35001
+ class InstanceEventWindowAssociationRequest < Struct.new(
35002
+ :instance_ids,
35003
+ :instance_tags,
35004
+ :dedicated_host_ids)
35005
+ SENSITIVE = []
35006
+ include Aws::Structure
35007
+ end
35008
+
35009
+ # One or more targets associated with the event window.
35010
+ #
35011
+ # @!attribute [rw] instance_ids
35012
+ # The IDs of the instances associated with the event window.
35013
+ # @return [Array<String>]
35014
+ #
35015
+ # @!attribute [rw] tags
35016
+ # The instance tags associated with the event window. Any instances
35017
+ # associated with the tags will be associated with the event window.
35018
+ # @return [Array<Types::Tag>]
35019
+ #
35020
+ # @!attribute [rw] dedicated_host_ids
35021
+ # The IDs of the Dedicated Hosts associated with the event window.
35022
+ # @return [Array<String>]
35023
+ #
35024
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowAssociationTarget AWS API Documentation
35025
+ #
35026
+ class InstanceEventWindowAssociationTarget < Struct.new(
35027
+ :instance_ids,
35028
+ :tags,
35029
+ :dedicated_host_ids)
35030
+ SENSITIVE = []
35031
+ include Aws::Structure
35032
+ end
35033
+
35034
+ # The targets to disassociate from the specified event window.
35035
+ #
35036
+ # @note When making an API call, you may pass InstanceEventWindowDisassociationRequest
35037
+ # data as a hash:
35038
+ #
35039
+ # {
35040
+ # instance_ids: ["InstanceId"],
35041
+ # instance_tags: [
35042
+ # {
35043
+ # key: "String",
35044
+ # value: "String",
35045
+ # },
35046
+ # ],
35047
+ # dedicated_host_ids: ["DedicatedHostId"],
35048
+ # }
35049
+ #
35050
+ # @!attribute [rw] instance_ids
35051
+ # The IDs of the instances to disassociate from the event window.
35052
+ # @return [Array<String>]
35053
+ #
35054
+ # @!attribute [rw] instance_tags
35055
+ # The instance tags to disassociate from the event window. Any
35056
+ # instances associated with the tags will be disassociated from the
35057
+ # event window.
35058
+ # @return [Array<Types::Tag>]
35059
+ #
35060
+ # @!attribute [rw] dedicated_host_ids
35061
+ # The IDs of the Dedicated Hosts to disassociate from the event
35062
+ # window.
35063
+ # @return [Array<String>]
35064
+ #
35065
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowDisassociationRequest AWS API Documentation
35066
+ #
35067
+ class InstanceEventWindowDisassociationRequest < Struct.new(
35068
+ :instance_ids,
35069
+ :instance_tags,
35070
+ :dedicated_host_ids)
35071
+ SENSITIVE = []
35072
+ include Aws::Structure
35073
+ end
35074
+
35075
+ # The state of the event window.
35076
+ #
35077
+ # @!attribute [rw] instance_event_window_id
35078
+ # The ID of the event window.
35079
+ # @return [String]
35080
+ #
35081
+ # @!attribute [rw] state
35082
+ # The current state of the event window.
35083
+ # @return [String]
35084
+ #
35085
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowStateChange AWS API Documentation
35086
+ #
35087
+ class InstanceEventWindowStateChange < Struct.new(
35088
+ :instance_event_window_id,
35089
+ :state)
35090
+ SENSITIVE = []
35091
+ include Aws::Structure
35092
+ end
35093
+
35094
+ # The start day and time and the end day and time of the time range, in
35095
+ # UTC.
35096
+ #
35097
+ # @!attribute [rw] start_week_day
35098
+ # The day on which the time range begins.
35099
+ # @return [String]
35100
+ #
35101
+ # @!attribute [rw] start_hour
35102
+ # The hour when the time range begins.
35103
+ # @return [Integer]
35104
+ #
35105
+ # @!attribute [rw] end_week_day
35106
+ # The day on which the time range ends.
35107
+ # @return [String]
35108
+ #
35109
+ # @!attribute [rw] end_hour
35110
+ # The hour when the time range ends.
35111
+ # @return [Integer]
35112
+ #
35113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowTimeRange AWS API Documentation
35114
+ #
35115
+ class InstanceEventWindowTimeRange < Struct.new(
35116
+ :start_week_day,
35117
+ :start_hour,
35118
+ :end_week_day,
35119
+ :end_hour)
35120
+ SENSITIVE = []
35121
+ include Aws::Structure
35122
+ end
35123
+
35124
+ # The start day and time and the end day and time of the time range, in
35125
+ # UTC.
35126
+ #
35127
+ # @note When making an API call, you may pass InstanceEventWindowTimeRangeRequest
35128
+ # data as a hash:
35129
+ #
35130
+ # {
35131
+ # start_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
35132
+ # start_hour: 1,
35133
+ # end_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
35134
+ # end_hour: 1,
35135
+ # }
35136
+ #
35137
+ # @!attribute [rw] start_week_day
35138
+ # The day on which the time range begins.
35139
+ # @return [String]
35140
+ #
35141
+ # @!attribute [rw] start_hour
35142
+ # The hour when the time range begins.
35143
+ # @return [Integer]
35144
+ #
35145
+ # @!attribute [rw] end_week_day
35146
+ # The day on which the time range ends.
35147
+ # @return [String]
35148
+ #
35149
+ # @!attribute [rw] end_hour
35150
+ # The hour when the time range ends.
35151
+ # @return [Integer]
35152
+ #
35153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceEventWindowTimeRangeRequest AWS API Documentation
35154
+ #
35155
+ class InstanceEventWindowTimeRangeRequest < Struct.new(
35156
+ :start_week_day,
35157
+ :start_hour,
35158
+ :end_week_day,
35159
+ :end_hour)
35160
+ SENSITIVE = []
35161
+ include Aws::Structure
35162
+ end
35163
+
34060
35164
  # Describes an instance to export.
34061
35165
  #
34062
35166
  # @!attribute [rw] instance_id
@@ -34097,6 +35201,21 @@ module Aws::EC2
34097
35201
  include Aws::Structure
34098
35202
  end
34099
35203
 
35204
+ # Information about an IPv4 delegated prefix.
35205
+ #
35206
+ # @!attribute [rw] ipv_4_prefix
35207
+ # One or more IPv4 delegated prefixes assigned to the network
35208
+ # interface.
35209
+ # @return [String]
35210
+ #
35211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv4Prefix AWS API Documentation
35212
+ #
35213
+ class InstanceIpv4Prefix < Struct.new(
35214
+ :ipv_4_prefix)
35215
+ SENSITIVE = []
35216
+ include Aws::Structure
35217
+ end
35218
+
34100
35219
  # Describes an IPv6 address.
34101
35220
  #
34102
35221
  # @note When making an API call, you may pass InstanceIpv6Address
@@ -34139,6 +35258,21 @@ module Aws::EC2
34139
35258
  include Aws::Structure
34140
35259
  end
34141
35260
 
35261
+ # Information about an IPv6 delegated prefix.
35262
+ #
35263
+ # @!attribute [rw] ipv_6_prefix
35264
+ # One or more IPv6 delegated prefixes assigned to the network
35265
+ # interface.
35266
+ # @return [String]
35267
+ #
35268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceIpv6Prefix AWS API Documentation
35269
+ #
35270
+ class InstanceIpv6Prefix < Struct.new(
35271
+ :ipv_6_prefix)
35272
+ SENSITIVE = []
35273
+ include Aws::Structure
35274
+ end
35275
+
34142
35276
  # Describes the market (purchasing) option for the instances.
34143
35277
  #
34144
35278
  # @note When making an API call, you may pass InstanceMarketOptionsRequest
@@ -34383,6 +35517,16 @@ module Aws::EC2
34383
35517
  # Valid values: `interface` \| `efa` \| `trunk`
34384
35518
  # @return [String]
34385
35519
  #
35520
+ # @!attribute [rw] ipv_4_prefixes
35521
+ # The IPv4 delegated prefixes that are assigned to the network
35522
+ # interface.
35523
+ # @return [Array<Types::InstanceIpv4Prefix>]
35524
+ #
35525
+ # @!attribute [rw] ipv_6_prefixes
35526
+ # The IPv6 delegated prefixes that are assigned to the network
35527
+ # interface.
35528
+ # @return [Array<Types::InstanceIpv6Prefix>]
35529
+ #
34386
35530
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
34387
35531
  #
34388
35532
  class InstanceNetworkInterface < Struct.new(
@@ -34401,7 +35545,9 @@ module Aws::EC2
34401
35545
  :status,
34402
35546
  :subnet_id,
34403
35547
  :vpc_id,
34404
- :interface_type)
35548
+ :interface_type,
35549
+ :ipv_4_prefixes,
35550
+ :ipv_6_prefixes)
34405
35551
  SENSITIVE = []
34406
35552
  include Aws::Structure
34407
35553
  end
@@ -34507,6 +35653,18 @@ module Aws::EC2
34507
35653
  # associate_carrier_ip_address: false,
34508
35654
  # interface_type: "String",
34509
35655
  # network_card_index: 1,
35656
+ # ipv_4_prefixes: [
35657
+ # {
35658
+ # ipv_4_prefix: "String",
35659
+ # },
35660
+ # ],
35661
+ # ipv_4_prefix_count: 1,
35662
+ # ipv_6_prefixes: [
35663
+ # {
35664
+ # ipv_6_prefix: "String",
35665
+ # },
35666
+ # ],
35667
+ # ipv_6_prefix_count: 1,
34510
35668
  # }
34511
35669
  #
34512
35670
  # @!attribute [rw] associate_public_ip_address
@@ -34633,6 +35791,30 @@ module Aws::EC2
34633
35791
  # network card index 0. The default is network card index 0.
34634
35792
  # @return [Integer]
34635
35793
  #
35794
+ # @!attribute [rw] ipv_4_prefixes
35795
+ # One or more IPv4 delegated prefixes to be assigned to the network
35796
+ # interface. You cannot use this option if you use the
35797
+ # `Ipv4PrefixCount` option.
35798
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
35799
+ #
35800
+ # @!attribute [rw] ipv_4_prefix_count
35801
+ # The number of IPv4 delegated prefixes to be automatically assigned
35802
+ # to the network interface. You cannot use this option if you use the
35803
+ # `Ipv4Prefix` option.
35804
+ # @return [Integer]
35805
+ #
35806
+ # @!attribute [rw] ipv_6_prefixes
35807
+ # One or more IPv6 delegated prefixes to be assigned to the network
35808
+ # interface. You cannot use this option if you use the
35809
+ # `Ipv6PrefixCount` option.
35810
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
35811
+ #
35812
+ # @!attribute [rw] ipv_6_prefix_count
35813
+ # The number of IPv6 delegated prefixes to be automatically assigned
35814
+ # to the network interface. You cannot use this option if you use the
35815
+ # `Ipv6Prefix` option.
35816
+ # @return [Integer]
35817
+ #
34636
35818
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
34637
35819
  #
34638
35820
  class InstanceNetworkInterfaceSpecification < Struct.new(
@@ -34650,7 +35832,11 @@ module Aws::EC2
34650
35832
  :subnet_id,
34651
35833
  :associate_carrier_ip_address,
34652
35834
  :interface_type,
34653
- :network_card_index)
35835
+ :network_card_index,
35836
+ :ipv_4_prefixes,
35837
+ :ipv_4_prefix_count,
35838
+ :ipv_6_prefixes,
35839
+ :ipv_6_prefix_count)
34654
35840
  SENSITIVE = []
34655
35841
  include Aws::Structure
34656
35842
  end
@@ -35196,7 +36382,7 @@ module Aws::EC2
35196
36382
  # @return [String]
35197
36383
  #
35198
36384
  # @!attribute [rw] owner_id
35199
- # The ID of the AWS account that owns the internet gateway.
36385
+ # The ID of the account that owns the internet gateway.
35200
36386
  # @return [String]
35201
36387
  #
35202
36388
  # @!attribute [rw] tags
@@ -35319,7 +36505,7 @@ module Aws::EC2
35319
36505
  # @return [Integer]
35320
36506
  #
35321
36507
  # @!attribute [rw] user_id_group_pairs
35322
- # The security group and AWS account ID pairs.
36508
+ # The security group and Amazon Web Services account ID pairs.
35323
36509
  # @return [Array<Types::UserIdGroupPair>]
35324
36510
  #
35325
36511
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpPermission AWS API Documentation
@@ -35369,6 +36555,67 @@ module Aws::EC2
35369
36555
  include Aws::Structure
35370
36556
  end
35371
36557
 
36558
+ # Describes an IPv4 Prefix Delegation.
36559
+ #
36560
+ # @!attribute [rw] ipv_4_prefix
36561
+ # The IPv4 Prefix Delegation prefix. For information, see [Prefix
36562
+ # Delegation][1] in the *Amazon Elastic Compute Cloud User Guide*.
36563
+ #
36564
+ #
36565
+ #
36566
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
36567
+ # @return [String]
36568
+ #
36569
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecification AWS API Documentation
36570
+ #
36571
+ class Ipv4PrefixSpecification < Struct.new(
36572
+ :ipv_4_prefix)
36573
+ SENSITIVE = []
36574
+ include Aws::Structure
36575
+ end
36576
+
36577
+ # Describes the IPv4 Prefix Delegation option for a network interface.
36578
+ #
36579
+ # @note When making an API call, you may pass Ipv4PrefixSpecificationRequest
36580
+ # data as a hash:
36581
+ #
36582
+ # {
36583
+ # ipv_4_prefix: "String",
36584
+ # }
36585
+ #
36586
+ # @!attribute [rw] ipv_4_prefix
36587
+ # The IPv4 Prefix Delegation prefix. For information, see [Prefix
36588
+ # Delegation][1] in the *Amazon Elastic Compute Cloud User Guide*.
36589
+ #
36590
+ #
36591
+ #
36592
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-prefix-delegation
36593
+ # @return [String]
36594
+ #
36595
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationRequest AWS API Documentation
36596
+ #
36597
+ class Ipv4PrefixSpecificationRequest < Struct.new(
36598
+ :ipv_4_prefix)
36599
+ SENSITIVE = []
36600
+ include Aws::Structure
36601
+ end
36602
+
36603
+ # Information about the IPv4 delegated prefixes assigned to a network
36604
+ # interface.
36605
+ #
36606
+ # @!attribute [rw] ipv_4_prefix
36607
+ # One or more IPv4 delegated prefixes assigned to the network
36608
+ # interface.
36609
+ # @return [String]
36610
+ #
36611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv4PrefixSpecificationResponse AWS API Documentation
36612
+ #
36613
+ class Ipv4PrefixSpecificationResponse < Struct.new(
36614
+ :ipv_4_prefix)
36615
+ SENSITIVE = []
36616
+ include Aws::Structure
36617
+ end
36618
+
35372
36619
  # Describes an IPv6 CIDR block association.
35373
36620
  #
35374
36621
  # @!attribute [rw] ipv_6_cidr
@@ -35431,6 +36678,57 @@ module Aws::EC2
35431
36678
  include Aws::Structure
35432
36679
  end
35433
36680
 
36681
+ # Describes the IPv6 Prefix Delegation.
36682
+ #
36683
+ # @!attribute [rw] ipv_6_prefix
36684
+ # The IPv6 Prefix Delegation prefix.
36685
+ # @return [String]
36686
+ #
36687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecification AWS API Documentation
36688
+ #
36689
+ class Ipv6PrefixSpecification < Struct.new(
36690
+ :ipv_6_prefix)
36691
+ SENSITIVE = []
36692
+ include Aws::Structure
36693
+ end
36694
+
36695
+ # Describes the IPv4 Prefix Delegation option for a network interface.
36696
+ #
36697
+ # @note When making an API call, you may pass Ipv6PrefixSpecificationRequest
36698
+ # data as a hash:
36699
+ #
36700
+ # {
36701
+ # ipv_6_prefix: "String",
36702
+ # }
36703
+ #
36704
+ # @!attribute [rw] ipv_6_prefix
36705
+ # The IPv6 Prefix Delegation prefix.
36706
+ # @return [String]
36707
+ #
36708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationRequest AWS API Documentation
36709
+ #
36710
+ class Ipv6PrefixSpecificationRequest < Struct.new(
36711
+ :ipv_6_prefix)
36712
+ SENSITIVE = []
36713
+ include Aws::Structure
36714
+ end
36715
+
36716
+ # Information about the IPv6 delegated prefixes assigned to a network
36717
+ # interface.
36718
+ #
36719
+ # @!attribute [rw] ipv_6_prefix
36720
+ # One or more IPv6 delegated prefixes assigned to the network
36721
+ # interface.
36722
+ # @return [String]
36723
+ #
36724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6PrefixSpecificationResponse AWS API Documentation
36725
+ #
36726
+ class Ipv6PrefixSpecificationResponse < Struct.new(
36727
+ :ipv_6_prefix)
36728
+ SENSITIVE = []
36729
+ include Aws::Structure
36730
+ end
36731
+
35434
36732
  # \[EC2-VPC only\] Describes an IPv6 range.
35435
36733
  #
35436
36734
  # @note When making an API call, you may pass Ipv6Range
@@ -35507,8 +36805,8 @@ module Aws::EC2
35507
36805
  # @!attribute [rw] key_fingerprint
35508
36806
  # If you used CreateKeyPair to create the key pair, this is the SHA-1
35509
36807
  # digest of the DER encoded private key. If you used ImportKeyPair to
35510
- # provide AWS the public key, this is the MD5 public key fingerprint
35511
- # as specified in section 4 of RFC4716.
36808
+ # provide Amazon Web Services the public key, this is the MD5 public
36809
+ # key fingerprint as specified in section 4 of RFC4716.
35512
36810
  # @return [String]
35513
36811
  #
35514
36812
  # @!attribute [rw] key_name
@@ -36043,8 +37341,7 @@ module Aws::EC2
36043
37341
  # @return [Integer]
36044
37342
  #
36045
37343
  # @!attribute [rw] kms_key_id
36046
- # The ARN of the AWS Key Management Service (AWS KMS) CMK used for
36047
- # encryption.
37344
+ # The ARN of the Key Management Service (KMS) CMK used for encryption.
36048
37345
  # @return [String]
36049
37346
  #
36050
37347
  # @!attribute [rw] snapshot_id
@@ -36134,8 +37431,8 @@ module Aws::EC2
36134
37431
  # @return [Integer]
36135
37432
  #
36136
37433
  # @!attribute [rw] kms_key_id
36137
- # The ARN of the symmetric AWS Key Management Service (AWS KMS) CMK
36138
- # used for encryption.
37434
+ # The ARN of the symmetric Key Management Service (KMS) CMK used for
37435
+ # encryption.
36139
37436
  # @return [String]
36140
37437
  #
36141
37438
  # @!attribute [rw] snapshot_id
@@ -36241,11 +37538,13 @@ module Aws::EC2
36241
37538
  include Aws::Structure
36242
37539
  end
36243
37540
 
36244
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
37541
+ # Indicates whether the instance is enabled for Amazon Web Services
37542
+ # Nitro Enclaves.
36245
37543
  #
36246
37544
  # @!attribute [rw] enabled
36247
- # If this parameter is set to `true`, the instance is enabled for AWS
36248
- # Nitro Enclaves; otherwise, it is not enabled for AWS Nitro Enclaves.
37545
+ # If this parameter is set to `true`, the instance is enabled for
37546
+ # Amazon Web Services Nitro Enclaves; otherwise, it is not enabled for
37547
+ # Amazon Web Services Nitro Enclaves.
36249
37548
  # @return [Boolean]
36250
37549
  #
36251
37550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnclaveOptions AWS API Documentation
@@ -36256,9 +37555,10 @@ module Aws::EC2
36256
37555
  include Aws::Structure
36257
37556
  end
36258
37557
 
36259
- # Indicates whether the instance is enabled for AWS Nitro Enclaves. For
36260
- # more information, see [ What is AWS Nitro Enclaves?][1] in the *AWS
36261
- # Nitro Enclaves User Guide*.
37558
+ # Indicates whether the instance is enabled for Amazon Web Services
37559
+ # Nitro Enclaves. For more information, see [ What is Amazon Web
37560
+ # Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
37561
+ # Enclaves User Guide*.
36262
37562
  #
36263
37563
  #
36264
37564
  #
@@ -36272,8 +37572,8 @@ module Aws::EC2
36272
37572
  # }
36273
37573
  #
36274
37574
  # @!attribute [rw] enabled
36275
- # To enable the instance for AWS Nitro Enclaves, set this parameter to
36276
- # `true`.
37575
+ # To enable the instance for Amazon Web Services Nitro Enclaves, set
37576
+ # this parameter to `true`.
36277
37577
  # @return [Boolean]
36278
37578
  #
36279
37579
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnclaveOptionsRequest AWS API Documentation
@@ -36570,7 +37870,7 @@ module Aws::EC2
36570
37870
  # Use this option when you launch an instance in a Wavelength Zone and
36571
37871
  # want to associate a Carrier IP address with the network interface.
36572
37872
  # For more information about Carrier IP addresses, see [Carrier IP
36573
- # addresses][1] in the *AWS Wavelength Developer Guide*.
37873
+ # addresses][1] in the *Wavelength Developer Guide*.
36574
37874
  #
36575
37875
  #
36576
37876
  #
@@ -36636,6 +37936,26 @@ module Aws::EC2
36636
37936
  # The index of the network card.
36637
37937
  # @return [Integer]
36638
37938
  #
37939
+ # @!attribute [rw] ipv_4_prefixes
37940
+ # One or more IPv4 delegated prefixes assigned to the network
37941
+ # interface.
37942
+ # @return [Array<Types::Ipv4PrefixSpecificationResponse>]
37943
+ #
37944
+ # @!attribute [rw] ipv_4_prefix_count
37945
+ # The number of IPv4 delegated prefixes that AWS automatically
37946
+ # assigned to the network interface.
37947
+ # @return [Integer]
37948
+ #
37949
+ # @!attribute [rw] ipv_6_prefixes
37950
+ # One or more IPv6 delegated prefixes assigned to the network
37951
+ # interface.
37952
+ # @return [Array<Types::Ipv6PrefixSpecificationResponse>]
37953
+ #
37954
+ # @!attribute [rw] ipv_6_prefix_count
37955
+ # The number of IPv6 delegated prefixes that AWS automatically
37956
+ # assigned to the network interface.
37957
+ # @return [Integer]
37958
+ #
36639
37959
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
36640
37960
  #
36641
37961
  class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
@@ -36653,7 +37973,11 @@ module Aws::EC2
36653
37973
  :private_ip_addresses,
36654
37974
  :secondary_private_ip_address_count,
36655
37975
  :subnet_id,
36656
- :network_card_index)
37976
+ :network_card_index,
37977
+ :ipv_4_prefixes,
37978
+ :ipv_4_prefix_count,
37979
+ :ipv_6_prefixes,
37980
+ :ipv_6_prefix_count)
36657
37981
  SENSITIVE = []
36658
37982
  include Aws::Structure
36659
37983
  end
@@ -36688,6 +38012,18 @@ module Aws::EC2
36688
38012
  # secondary_private_ip_address_count: 1,
36689
38013
  # subnet_id: "SubnetId",
36690
38014
  # network_card_index: 1,
38015
+ # ipv_4_prefixes: [
38016
+ # {
38017
+ # ipv_4_prefix: "String",
38018
+ # },
38019
+ # ],
38020
+ # ipv_4_prefix_count: 1,
38021
+ # ipv_6_prefixes: [
38022
+ # {
38023
+ # ipv_6_prefix: "String",
38024
+ # },
38025
+ # ],
38026
+ # ipv_6_prefix_count: 1,
36691
38027
  # }
36692
38028
  #
36693
38029
  # @!attribute [rw] associate_carrier_ip_address
@@ -36697,7 +38033,7 @@ module Aws::EC2
36697
38033
  # Use this option when you launch an instance in a Wavelength Zone and
36698
38034
  # want to associate a Carrier IP address with the network interface.
36699
38035
  # For more information about Carrier IP addresses, see [Carrier IP
36700
- # addresses][1] in the *AWS Wavelength Developer Guide*.
38036
+ # addresses][1] in the *Wavelength Developer Guide*.
36701
38037
  #
36702
38038
  #
36703
38039
  #
@@ -36781,6 +38117,30 @@ module Aws::EC2
36781
38117
  # network card index 0. The default is network card index 0.
36782
38118
  # @return [Integer]
36783
38119
  #
38120
+ # @!attribute [rw] ipv_4_prefixes
38121
+ # One or more IPv4 delegated prefixes to be assigned to the network
38122
+ # interface. You cannot use this option if you use the
38123
+ # `Ipv4PrefixCount` option.
38124
+ # @return [Array<Types::Ipv4PrefixSpecificationRequest>]
38125
+ #
38126
+ # @!attribute [rw] ipv_4_prefix_count
38127
+ # The number of IPv4 delegated prefixes to be automatically assigned
38128
+ # to the network interface. You cannot use this option if you use the
38129
+ # `Ipv4Prefix` option.
38130
+ # @return [Integer]
38131
+ #
38132
+ # @!attribute [rw] ipv_6_prefixes
38133
+ # One or more IPv6 delegated prefixes to be assigned to the network
38134
+ # interface. You cannot use this option if you use the
38135
+ # `Ipv6PrefixCount` option.
38136
+ # @return [Array<Types::Ipv6PrefixSpecificationRequest>]
38137
+ #
38138
+ # @!attribute [rw] ipv_6_prefix_count
38139
+ # The number of IPv6 delegated prefixes to be automatically assigned
38140
+ # to the network interface. You cannot use this option if you use the
38141
+ # `Ipv6Prefix` option.
38142
+ # @return [Integer]
38143
+ #
36784
38144
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
36785
38145
  #
36786
38146
  class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
@@ -36798,7 +38158,11 @@ module Aws::EC2
36798
38158
  :private_ip_addresses,
36799
38159
  :secondary_private_ip_address_count,
36800
38160
  :subnet_id,
36801
- :network_card_index)
38161
+ :network_card_index,
38162
+ :ipv_4_prefixes,
38163
+ :ipv_4_prefix_count,
38164
+ :ipv_6_prefixes,
38165
+ :ipv_6_prefix_count)
36802
38166
  SENSITIVE = []
36803
38167
  include Aws::Structure
36804
38168
  end
@@ -37179,7 +38543,7 @@ module Aws::EC2
37179
38543
  # data as a hash:
37180
38544
  #
37181
38545
  # {
37182
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
38546
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
37183
38547
  # tags: [
37184
38548
  # {
37185
38549
  # key: "String",
@@ -38230,12 +39594,12 @@ module Aws::EC2
38230
39594
  # }
38231
39595
  #
38232
39596
  # @!attribute [rw] kms_key_id
38233
- # The identifier of the AWS Key Management Service (AWS KMS) customer
38234
- # master key (CMK) to use for Amazon EBS encryption. If this parameter
38235
- # is not specified, your AWS managed CMK for EBS is used. If
38236
- # `KmsKeyId` is specified, the encrypted state must be `true`.
39597
+ # The identifier of the Key Management Service (KMS) KMS key to use
39598
+ # for Amazon EBS encryption. If this parameter is not specified, your
39599
+ # KMS key for Amazon EBS is used. If `KmsKeyId` is specified, the
39600
+ # encrypted state must be `true`.
38237
39601
  #
38238
- # You can specify the CMK using any of the following:
39602
+ # You can specify the KMS key using any of the following:
38239
39603
  #
38240
39604
  # * Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.
38241
39605
  #
@@ -38247,11 +39611,11 @@ module Aws::EC2
38247
39611
  # * Alias ARN. For example,
38248
39612
  # arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
38249
39613
  #
38250
- # AWS authenticates the CMK asynchronously. Therefore, if you specify
38251
- # an ID, alias, or ARN that is not valid, the action can appear to
38252
- # complete, but eventually fails.
39614
+ # Amazon Web Services authenticates the KMS key asynchronously.
39615
+ # Therefore, if you specify an ID, alias, or ARN that is not valid,
39616
+ # the action can appear to complete, but eventually fails.
38253
39617
  #
38254
- # Amazon EBS does not support asymmetric CMKs.
39618
+ # Amazon EBS does not support asymmetric KMS keys.
38255
39619
  # @return [String]
38256
39620
  #
38257
39621
  # @!attribute [rw] dry_run
@@ -38271,8 +39635,8 @@ module Aws::EC2
38271
39635
  end
38272
39636
 
38273
39637
  # @!attribute [rw] kms_key_id
38274
- # The Amazon Resource Name (ARN) of the default CMK for encryption by
38275
- # default.
39638
+ # The Amazon Resource Name (ARN) of the default KMS key for encryption
39639
+ # by default.
38276
39640
  # @return [String]
38277
39641
  #
38278
39642
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -39115,6 +40479,97 @@ module Aws::EC2
39115
40479
  include Aws::Structure
39116
40480
  end
39117
40481
 
40482
+ # @note When making an API call, you may pass ModifyInstanceEventWindowRequest
40483
+ # data as a hash:
40484
+ #
40485
+ # {
40486
+ # dry_run: false,
40487
+ # name: "String",
40488
+ # instance_event_window_id: "InstanceEventWindowId", # required
40489
+ # time_ranges: [
40490
+ # {
40491
+ # start_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
40492
+ # start_hour: 1,
40493
+ # end_week_day: "sunday", # accepts sunday, monday, tuesday, wednesday, thursday, friday, saturday
40494
+ # end_hour: 1,
40495
+ # },
40496
+ # ],
40497
+ # cron_expression: "InstanceEventWindowCronExpression",
40498
+ # }
40499
+ #
40500
+ # @!attribute [rw] dry_run
40501
+ # Checks whether you have the required permissions for the action,
40502
+ # without actually making the request, and provides an error response.
40503
+ # If you have the required permissions, the error response is
40504
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
40505
+ # @return [Boolean]
40506
+ #
40507
+ # @!attribute [rw] name
40508
+ # The name of the event window.
40509
+ # @return [String]
40510
+ #
40511
+ # @!attribute [rw] instance_event_window_id
40512
+ # The ID of the event window.
40513
+ # @return [String]
40514
+ #
40515
+ # @!attribute [rw] time_ranges
40516
+ # The time ranges of the event window.
40517
+ # @return [Array<Types::InstanceEventWindowTimeRangeRequest>]
40518
+ #
40519
+ # @!attribute [rw] cron_expression
40520
+ # The cron expression of the event window, for example, `* 0-4,20-23 *
40521
+ # * 1,5`.
40522
+ #
40523
+ # Constraints:
40524
+ #
40525
+ # * Only hour and day of the week values are supported.
40526
+ #
40527
+ # * For day of the week values, you can specify either integers `0`
40528
+ # through `6`, or alternative single values `SUN` through `SAT`.
40529
+ #
40530
+ # * The minute, month, and year must be specified by `*`.
40531
+ #
40532
+ # * The hour value must be one or a multiple range, for example, `0-4`
40533
+ # or `0-4,20-23`.
40534
+ #
40535
+ # * Each hour range must be &gt;= 2 hours, for example, `0-2` or
40536
+ # `20-23`.
40537
+ #
40538
+ # * The event window must be &gt;= 4 hours. The combined total time
40539
+ # ranges in the event window must be &gt;= 4 hours.
40540
+ #
40541
+ # For more information about cron expressions, see [cron][1] on the
40542
+ # *Wikipedia website*.
40543
+ #
40544
+ #
40545
+ #
40546
+ # [1]: https://en.wikipedia.org/wiki/Cron
40547
+ # @return [String]
40548
+ #
40549
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceEventWindowRequest AWS API Documentation
40550
+ #
40551
+ class ModifyInstanceEventWindowRequest < Struct.new(
40552
+ :dry_run,
40553
+ :name,
40554
+ :instance_event_window_id,
40555
+ :time_ranges,
40556
+ :cron_expression)
40557
+ SENSITIVE = []
40558
+ include Aws::Structure
40559
+ end
40560
+
40561
+ # @!attribute [rw] instance_event_window
40562
+ # Information about the event window.
40563
+ # @return [Types::InstanceEventWindow]
40564
+ #
40565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyInstanceEventWindowResult AWS API Documentation
40566
+ #
40567
+ class ModifyInstanceEventWindowResult < Struct.new(
40568
+ :instance_event_window)
40569
+ SENSITIVE = []
40570
+ include Aws::Structure
40571
+ end
40572
+
39118
40573
  # @note When making an API call, you may pass ModifyInstanceMetadataOptionsRequest
39119
40574
  # data as a hash:
39120
40575
  #
@@ -39550,6 +41005,66 @@ module Aws::EC2
39550
41005
  include Aws::Structure
39551
41006
  end
39552
41007
 
41008
+ # @note When making an API call, you may pass ModifySecurityGroupRulesRequest
41009
+ # data as a hash:
41010
+ #
41011
+ # {
41012
+ # group_id: "SecurityGroupId", # required
41013
+ # security_group_rules: [ # required
41014
+ # {
41015
+ # security_group_rule_id: "SecurityGroupRuleId",
41016
+ # security_group_rule: {
41017
+ # ip_protocol: "String",
41018
+ # from_port: 1,
41019
+ # to_port: 1,
41020
+ # cidr_ipv_4: "String",
41021
+ # cidr_ipv_6: "String",
41022
+ # prefix_list_id: "PrefixListResourceId",
41023
+ # referenced_group_id: "SecurityGroupId",
41024
+ # description: "String",
41025
+ # },
41026
+ # },
41027
+ # ],
41028
+ # dry_run: false,
41029
+ # }
41030
+ #
41031
+ # @!attribute [rw] group_id
41032
+ # The ID of the security group.
41033
+ # @return [String]
41034
+ #
41035
+ # @!attribute [rw] security_group_rules
41036
+ # Information about the security group properties to update.
41037
+ # @return [Array<Types::SecurityGroupRuleUpdate>]
41038
+ #
41039
+ # @!attribute [rw] dry_run
41040
+ # Checks whether you have the required permissions for the action,
41041
+ # without actually making the request, and provides an error response.
41042
+ # If you have the required permissions, the error response is
41043
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
41044
+ # @return [Boolean]
41045
+ #
41046
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesRequest AWS API Documentation
41047
+ #
41048
+ class ModifySecurityGroupRulesRequest < Struct.new(
41049
+ :group_id,
41050
+ :security_group_rules,
41051
+ :dry_run)
41052
+ SENSITIVE = []
41053
+ include Aws::Structure
41054
+ end
41055
+
41056
+ # @!attribute [rw] return
41057
+ # Returns `true` if the request succeeds; otherwise, returns an error.
41058
+ # @return [Boolean]
41059
+ #
41060
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesResult AWS API Documentation
41061
+ #
41062
+ class ModifySecurityGroupRulesResult < Struct.new(
41063
+ :return)
41064
+ SENSITIVE = []
41065
+ include Aws::Structure
41066
+ end
41067
+
39553
41068
  # @note When making an API call, you may pass ModifySnapshotAttributeRequest
39554
41069
  # data as a hash:
39555
41070
  #
@@ -40411,7 +41926,7 @@ module Aws::EC2
40411
41926
  #
40412
41927
  # * `standard`\: 1-1,024
40413
41928
  #
40414
- # Default: If no size is specified, the existing size is retained.
41929
+ # Default: The existing size is retained.
40415
41930
  # @return [Integer]
40416
41931
  #
40417
41932
  # @!attribute [rw] volume_type
@@ -40419,7 +41934,7 @@ module Aws::EC2
40419
41934
  # [Amazon EBS volume types][1] in the *Amazon Elastic Compute Cloud
40420
41935
  # User Guide*.
40421
41936
  #
40422
- # Default: If no type is specified, the existing type is retained.
41937
+ # Default: The existing type is retained.
40423
41938
  #
40424
41939
  #
40425
41940
  #
@@ -40438,17 +41953,17 @@ module Aws::EC2
40438
41953
  #
40439
41954
  # * `io2`\: 100-64,000 IOPS
40440
41955
  #
40441
- # Default: If no IOPS value is specified, the existing value is
40442
- # retained, unless a volume type is modified that supports different
40443
- # values.
41956
+ # Default: The existing value is retained if you keep the same volume
41957
+ # type. If you change the volume type to `io1`, `io2`, or `gp3`, the
41958
+ # default is 3,000.
40444
41959
  # @return [Integer]
40445
41960
  #
40446
41961
  # @!attribute [rw] throughput
40447
41962
  # The target throughput of the volume, in MiB/s. This parameter is
40448
41963
  # valid only for `gp3` volumes. The maximum value is 1,000.
40449
41964
  #
40450
- # Default: If no throughput value is specified, the existing value is
40451
- # retained.
41965
+ # Default: The existing value is retained if the source and target
41966
+ # volume type is `gp3`. Otherwise, the default value is 125.
40452
41967
  #
40453
41968
  # Valid Range: Minimum value of 125. Maximum value of 1000.
40454
41969
  # @return [Integer]
@@ -41783,7 +43298,7 @@ module Aws::EC2
41783
43298
  # @return [String]
41784
43299
  #
41785
43300
  # @!attribute [rw] owner_id
41786
- # The ID of the AWS account that owns the network ACL.
43301
+ # The ID of the account that owns the network ACL.
41787
43302
  # @return [String]
41788
43303
  #
41789
43304
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkAcl AWS API Documentation
@@ -41980,8 +43495,8 @@ module Aws::EC2
41980
43495
  # @return [String]
41981
43496
  #
41982
43497
  # @!attribute [rw] filter_in_arns
41983
- # The Amazon Resource Names (ARN) of the AWS resources that the path
41984
- # must traverse.
43498
+ # The Amazon Resource Names (ARN) of the Amazon Web Services resources
43499
+ # that the path must traverse.
41985
43500
  # @return [Array<String>]
41986
43501
  #
41987
43502
  # @!attribute [rw] start_date
@@ -42060,20 +43575,22 @@ module Aws::EC2
42060
43575
  # @return [Time]
42061
43576
  #
42062
43577
  # @!attribute [rw] source
42063
- # The AWS resource that is the source of the path.
43578
+ # The Amazon Web Services resource that is the source of the path.
42064
43579
  # @return [String]
42065
43580
  #
42066
43581
  # @!attribute [rw] destination
42067
- # The AWS resource that is the destination of the path.
43582
+ # The Amazon Web Services resource that is the destination of the
43583
+ # path.
42068
43584
  # @return [String]
42069
43585
  #
42070
43586
  # @!attribute [rw] source_ip
42071
- # The IP address of the AWS resource that is the source of the path.
43587
+ # The IP address of the Amazon Web Services resource that is the
43588
+ # source of the path.
42072
43589
  # @return [String]
42073
43590
  #
42074
43591
  # @!attribute [rw] destination_ip
42075
- # The IP address of the AWS resource that is the destination of the
42076
- # path.
43592
+ # The IP address of the Amazon Web Services resource that is the
43593
+ # destination of the path.
42077
43594
  # @return [String]
42078
43595
  #
42079
43596
  # @!attribute [rw] protocol
@@ -42164,6 +43681,16 @@ module Aws::EC2
42164
43681
  # The private IPv4 addresses associated with the network interface.
42165
43682
  # @return [Array<Types::NetworkInterfacePrivateIpAddress>]
42166
43683
  #
43684
+ # @!attribute [rw] ipv_4_prefixes
43685
+ # The IPv4 Prefix Delegation prefixes that are assigned to the network
43686
+ # interface.
43687
+ # @return [Array<Types::Ipv4PrefixSpecification>]
43688
+ #
43689
+ # @!attribute [rw] ipv_6_prefixes
43690
+ # The IPv6 Prefix Delegation prefixes that are assigned to the network
43691
+ # interface.
43692
+ # @return [Array<Types::Ipv6PrefixSpecification>]
43693
+ #
42167
43694
  # @!attribute [rw] requester_id
42168
43695
  # The alias or account ID of the principal or service that created the
42169
43696
  # network interface.
@@ -42211,6 +43738,8 @@ module Aws::EC2
42211
43738
  :private_dns_name,
42212
43739
  :private_ip_address,
42213
43740
  :private_ip_addresses,
43741
+ :ipv_4_prefixes,
43742
+ :ipv_6_prefixes,
42214
43743
  :requester_id,
42215
43744
  :requester_managed,
42216
43745
  :source_dest_check,
@@ -43604,7 +45133,7 @@ module Aws::EC2
43604
45133
  # dry_run: false,
43605
45134
  # pool_tag_specifications: [
43606
45135
  # {
43607
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
45136
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
43608
45137
  # tags: [
43609
45138
  # {
43610
45139
  # key: "String",
@@ -43914,7 +45443,7 @@ module Aws::EC2
43914
45443
  # offering_id: "OfferingId", # required
43915
45444
  # tag_specifications: [
43916
45445
  # {
43917
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
45446
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
43918
45447
  # tags: [
43919
45448
  # {
43920
45449
  # key: "String",
@@ -44230,6 +45759,41 @@ module Aws::EC2
44230
45759
  include Aws::Structure
44231
45760
  end
44232
45761
 
45762
+ # Describes the security group that is referenced in the security group
45763
+ # rule.
45764
+ #
45765
+ # @!attribute [rw] group_id
45766
+ # The ID of the security group.
45767
+ # @return [String]
45768
+ #
45769
+ # @!attribute [rw] peering_status
45770
+ # The status of a VPC peering connection, if applicable.
45771
+ # @return [String]
45772
+ #
45773
+ # @!attribute [rw] user_id
45774
+ # The account ID.
45775
+ # @return [String]
45776
+ #
45777
+ # @!attribute [rw] vpc_id
45778
+ # The ID of the VPC.
45779
+ # @return [String]
45780
+ #
45781
+ # @!attribute [rw] vpc_peering_connection_id
45782
+ # The ID of the VPC peering connection.
45783
+ # @return [String]
45784
+ #
45785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReferencedSecurityGroup AWS API Documentation
45786
+ #
45787
+ class ReferencedSecurityGroup < Struct.new(
45788
+ :group_id,
45789
+ :peering_status,
45790
+ :user_id,
45791
+ :vpc_id,
45792
+ :vpc_peering_connection_id)
45793
+ SENSITIVE = []
45794
+ include Aws::Structure
45795
+ end
45796
+
44233
45797
  # Describes a Region.
44234
45798
  #
44235
45799
  # @!attribute [rw] endpoint
@@ -45564,6 +47128,18 @@ module Aws::EC2
45564
47128
  # secondary_private_ip_address_count: 1,
45565
47129
  # subnet_id: "SubnetId",
45566
47130
  # network_card_index: 1,
47131
+ # ipv_4_prefixes: [
47132
+ # {
47133
+ # ipv_4_prefix: "String",
47134
+ # },
47135
+ # ],
47136
+ # ipv_4_prefix_count: 1,
47137
+ # ipv_6_prefixes: [
47138
+ # {
47139
+ # ipv_6_prefix: "String",
47140
+ # },
47141
+ # ],
47142
+ # ipv_6_prefix_count: 1,
45567
47143
  # },
45568
47144
  # ],
45569
47145
  # image_id: "ImageId",
@@ -45588,7 +47164,7 @@ module Aws::EC2
45588
47164
  # user_data: "String",
45589
47165
  # tag_specifications: [
45590
47166
  # {
45591
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
47167
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
45592
47168
  # tags: [
45593
47169
  # {
45594
47170
  # key: "String",
@@ -45837,8 +47413,8 @@ module Aws::EC2
45837
47413
  # @!attribute [rw] hibernation_options
45838
47414
  # Indicates whether an instance is enabled for hibernation. This
45839
47415
  # parameter is valid only if the instance meets the [hibernation
45840
- # prerequisites][1]. For more information, see [Hibernate Your
45841
- # Instance][2] in the *Amazon Elastic Compute Cloud User Guide*.
47416
+ # prerequisites][1]. For more information, see [Hibernate your
47417
+ # instance][2] in the *Amazon Elastic Compute Cloud User Guide*.
45842
47418
  #
45843
47419
  #
45844
47420
  #
@@ -45848,7 +47424,7 @@ module Aws::EC2
45848
47424
  #
45849
47425
  # @!attribute [rw] metadata_options
45850
47426
  # The metadata options for the instance. For more information, see
45851
- # [Instance Metadata and User Data][1] in the *Amazon Elastic Compute
47427
+ # [Instance metadata and user data][1] in the *Amazon Elastic Compute
45852
47428
  # Cloud User Guide*.
45853
47429
  #
45854
47430
  #
@@ -45857,12 +47433,13 @@ module Aws::EC2
45857
47433
  # @return [Types::LaunchTemplateInstanceMetadataOptionsRequest]
45858
47434
  #
45859
47435
  # @!attribute [rw] enclave_options
45860
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
45861
- # For more information, see [ What is AWS Nitro Enclaves?][1] in the
45862
- # *AWS Nitro Enclaves User Guide*.
47436
+ # Indicates whether the instance is enabled for Amazon Web Services
47437
+ # Nitro Enclaves. For more information, see [ What is Amazon Web
47438
+ # Services Nitro Enclaves?][1] in the *Amazon Web Services Nitro
47439
+ # Enclaves User Guide*.
45863
47440
  #
45864
- # You can't enable AWS Nitro Enclaves and hibernation on the same
45865
- # instance.
47441
+ # You can't enable Amazon Web Services Nitro Enclaves and hibernation
47442
+ # on the same instance.
45866
47443
  #
45867
47444
  #
45868
47445
  #
@@ -45988,6 +47565,18 @@ module Aws::EC2
45988
47565
  # associate_carrier_ip_address: false,
45989
47566
  # interface_type: "String",
45990
47567
  # network_card_index: 1,
47568
+ # ipv_4_prefixes: [
47569
+ # {
47570
+ # ipv_4_prefix: "String",
47571
+ # },
47572
+ # ],
47573
+ # ipv_4_prefix_count: 1,
47574
+ # ipv_6_prefixes: [
47575
+ # {
47576
+ # ipv_6_prefix: "String",
47577
+ # },
47578
+ # ],
47579
+ # ipv_6_prefix_count: 1,
45991
47580
  # },
45992
47581
  # ],
45993
47582
  # placement: {
@@ -46002,7 +47591,7 @@ module Aws::EC2
46002
47591
  # weighted_capacity: 1.0,
46003
47592
  # tag_specifications: [
46004
47593
  # {
46005
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
47594
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46006
47595
  # tags: [
46007
47596
  # {
46008
47597
  # key: "String",
@@ -46063,7 +47652,7 @@ module Aws::EC2
46063
47652
  # context: "String",
46064
47653
  # tag_specifications: [
46065
47654
  # {
46066
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
47655
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46067
47656
  # tags: [
46068
47657
  # {
46069
47658
  # key: "String",
@@ -46181,6 +47770,18 @@ module Aws::EC2
46181
47770
  # associate_carrier_ip_address: false,
46182
47771
  # interface_type: "String",
46183
47772
  # network_card_index: 1,
47773
+ # ipv_4_prefixes: [
47774
+ # {
47775
+ # ipv_4_prefix: "String",
47776
+ # },
47777
+ # ],
47778
+ # ipv_4_prefix_count: 1,
47779
+ # ipv_6_prefixes: [
47780
+ # {
47781
+ # ipv_6_prefix: "String",
47782
+ # },
47783
+ # ],
47784
+ # ipv_6_prefix_count: 1,
46184
47785
  # },
46185
47786
  # ],
46186
47787
  # placement: {
@@ -46198,7 +47799,7 @@ module Aws::EC2
46198
47799
  # valid_until: Time.now,
46199
47800
  # tag_specifications: [
46200
47801
  # {
46201
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
47802
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
46202
47803
  # tags: [
46203
47804
  # {
46204
47805
  # key: "String",
@@ -46427,6 +48028,18 @@ module Aws::EC2
46427
48028
  # associate_carrier_ip_address: false,
46428
48029
  # interface_type: "String",
46429
48030
  # network_card_index: 1,
48031
+ # ipv_4_prefixes: [
48032
+ # {
48033
+ # ipv_4_prefix: "String",
48034
+ # },
48035
+ # ],
48036
+ # ipv_4_prefix_count: 1,
48037
+ # ipv_6_prefixes: [
48038
+ # {
48039
+ # ipv_6_prefix: "String",
48040
+ # },
48041
+ # ],
48042
+ # ipv_6_prefix_count: 1,
46430
48043
  # },
46431
48044
  # ],
46432
48045
  # placement: {
@@ -47135,8 +48748,8 @@ module Aws::EC2
47135
48748
  end
47136
48749
 
47137
48750
  # @!attribute [rw] kms_key_id
47138
- # The Amazon Resource Name (ARN) of the default CMK for EBS encryption
47139
- # by default.
48751
+ # The Amazon Resource Name (ARN) of the default KMS key for EBS
48752
+ # encryption by default.
47140
48753
  # @return [String]
47141
48754
  #
47142
48755
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResetEbsDefaultKmsKeyIdResult AWS API Documentation
@@ -47451,7 +49064,7 @@ module Aws::EC2
47451
49064
  #
47452
49065
  # @!attribute [rw] cpu_options
47453
49066
  # The CPU options for the instance. For more information, see
47454
- # [Optimizing CPU Options][1] in the *Amazon Elastic Compute Cloud
49067
+ # [Optimizing CPU options][1] in the *Amazon Elastic Compute Cloud
47455
49068
  # User Guide*.
47456
49069
  #
47457
49070
  #
@@ -47469,7 +49082,7 @@ module Aws::EC2
47469
49082
  #
47470
49083
  # @!attribute [rw] hibernation_options
47471
49084
  # Indicates whether an instance is configured for hibernation. For
47472
- # more information, see [Hibernate Your Instance][1] in the *Amazon
49085
+ # more information, see [Hibernate your instance][1] in the *Amazon
47473
49086
  # Elastic Compute Cloud User Guide*.
47474
49087
  #
47475
49088
  #
@@ -47479,7 +49092,7 @@ module Aws::EC2
47479
49092
  #
47480
49093
  # @!attribute [rw] metadata_options
47481
49094
  # The metadata options for the instance. For more information, see
47482
- # [Instance Metadata and User Data][1] in the *Amazon Elastic Compute
49095
+ # [Instance metadata and user data][1] in the *Amazon Elastic Compute
47483
49096
  # Cloud User Guide*.
47484
49097
  #
47485
49098
  #
@@ -47488,7 +49101,8 @@ module Aws::EC2
47488
49101
  # @return [Types::LaunchTemplateInstanceMetadataOptions]
47489
49102
  #
47490
49103
  # @!attribute [rw] enclave_options
47491
- # Indicates whether the instance is enabled for AWS Nitro Enclaves.
49104
+ # Indicates whether the instance is enabled for Amazon Web Services
49105
+ # Nitro Enclaves.
47492
49106
  # @return [Types::LaunchTemplateEnclaveOptions]
47493
49107
  #
47494
49108
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResponseLaunchTemplateData AWS API Documentation
@@ -47724,6 +49338,7 @@ module Aws::EC2
47724
49338
  # ],
47725
49339
  # },
47726
49340
  # ],
49341
+ # security_group_rule_ids: ["String"],
47727
49342
  # cidr_ip: "String",
47728
49343
  # from_port: 1,
47729
49344
  # ip_protocol: "String",
@@ -47749,6 +49364,10 @@ module Aws::EC2
47749
49364
  # permissions.
47750
49365
  # @return [Array<Types::IpPermission>]
47751
49366
  #
49367
+ # @!attribute [rw] security_group_rule_ids
49368
+ # The IDs of the security group rules.
49369
+ # @return [Array<String>]
49370
+ #
47752
49371
  # @!attribute [rw] cidr_ip
47753
49372
  # Not supported. Use a set of IP permissions to specify the CIDR.
47754
49373
  # @return [String]
@@ -47782,6 +49401,7 @@ module Aws::EC2
47782
49401
  :dry_run,
47783
49402
  :group_id,
47784
49403
  :ip_permissions,
49404
+ :security_group_rule_ids,
47785
49405
  :cidr_ip,
47786
49406
  :from_port,
47787
49407
  :ip_protocol,
@@ -47860,6 +49480,7 @@ module Aws::EC2
47860
49480
  # source_security_group_owner_id: "String",
47861
49481
  # to_port: 1,
47862
49482
  # dry_run: false,
49483
+ # security_group_rule_ids: ["String"],
47863
49484
  # }
47864
49485
  #
47865
49486
  # @!attribute [rw] cidr_ip
@@ -47910,12 +49531,13 @@ module Aws::EC2
47910
49531
  # @return [String]
47911
49532
  #
47912
49533
  # @!attribute [rw] source_security_group_owner_id
47913
- # \[EC2-Classic\] The AWS account ID of the source security group, if
47914
- # the source security group is in a different account. You can't
47915
- # specify this parameter in combination with the following parameters:
47916
- # the CIDR IP address range, the IP protocol, the start of the port
47917
- # range, and the end of the port range. To revoke a specific rule for
47918
- # an IP protocol and port range, use a set of IP permissions instead.
49534
+ # \[EC2-Classic\] The Amazon Web Services account ID of the source
49535
+ # security group, if the source security group is in a different
49536
+ # account. You can't specify this parameter in combination with the
49537
+ # following parameters: the CIDR IP address range, the IP protocol,
49538
+ # the start of the port range, and the end of the port range. To
49539
+ # revoke a specific rule for an IP protocol and port range, use a set
49540
+ # of IP permissions instead.
47919
49541
  # @return [String]
47920
49542
  #
47921
49543
  # @!attribute [rw] to_port
@@ -47931,6 +49553,10 @@ module Aws::EC2
47931
49553
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
47932
49554
  # @return [Boolean]
47933
49555
  #
49556
+ # @!attribute [rw] security_group_rule_ids
49557
+ # The IDs of the security group rules.
49558
+ # @return [Array<String>]
49559
+ #
47934
49560
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressRequest AWS API Documentation
47935
49561
  #
47936
49562
  class RevokeSecurityGroupIngressRequest < Struct.new(
@@ -47943,7 +49569,8 @@ module Aws::EC2
47943
49569
  :source_security_group_name,
47944
49570
  :source_security_group_owner_id,
47945
49571
  :to_port,
47946
- :dry_run)
49572
+ :dry_run,
49573
+ :security_group_rule_ids)
47947
49574
  SENSITIVE = []
47948
49575
  include Aws::Structure
47949
49576
  end
@@ -47978,7 +49605,7 @@ module Aws::EC2
47978
49605
  # @return [String]
47979
49606
  #
47980
49607
  # @!attribute [rw] destination_prefix_list_id
47981
- # The prefix of the AWS service.
49608
+ # The prefix of the Amazon Web Service.
47982
49609
  # @return [String]
47983
49610
  #
47984
49611
  # @!attribute [rw] egress_only_internet_gateway_id
@@ -47994,7 +49621,7 @@ module Aws::EC2
47994
49621
  # @return [String]
47995
49622
  #
47996
49623
  # @!attribute [rw] instance_owner_id
47997
- # The AWS account ID of the owner of the instance.
49624
+ # The ID of account that owns the instance.
47998
49625
  # @return [String]
47999
49626
  #
48000
49627
  # @!attribute [rw] nat_gateway_id
@@ -48090,7 +49717,7 @@ module Aws::EC2
48090
49717
  # @return [String]
48091
49718
  #
48092
49719
  # @!attribute [rw] owner_id
48093
- # The ID of the AWS account that owns the route table.
49720
+ # The ID of the account that owns the route table.
48094
49721
  # @return [String]
48095
49722
  #
48096
49723
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RouteTable AWS API Documentation
@@ -48278,6 +49905,18 @@ module Aws::EC2
48278
49905
  # associate_carrier_ip_address: false,
48279
49906
  # interface_type: "String",
48280
49907
  # network_card_index: 1,
49908
+ # ipv_4_prefixes: [
49909
+ # {
49910
+ # ipv_4_prefix: "String",
49911
+ # },
49912
+ # ],
49913
+ # ipv_4_prefix_count: 1,
49914
+ # ipv_6_prefixes: [
49915
+ # {
49916
+ # ipv_6_prefix: "String",
49917
+ # },
49918
+ # ],
49919
+ # ipv_6_prefix_count: 1,
48281
49920
  # },
48282
49921
  # ],
48283
49922
  # private_ip_address: "String",
@@ -48294,7 +49933,7 @@ module Aws::EC2
48294
49933
  # ],
48295
49934
  # tag_specifications: [
48296
49935
  # {
48297
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
49936
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
48298
49937
  # tags: [
48299
49938
  # {
48300
49939
  # key: "String",
@@ -50029,7 +51668,7 @@ module Aws::EC2
50029
51668
  include Aws::Structure
50030
51669
  end
50031
51670
 
50032
- # Describes a security group
51671
+ # Describes a security group.
50033
51672
  #
50034
51673
  # @!attribute [rw] description
50035
51674
  # A description of the security group.
@@ -50044,7 +51683,8 @@ module Aws::EC2
50044
51683
  # @return [Array<Types::IpPermission>]
50045
51684
  #
50046
51685
  # @!attribute [rw] owner_id
50047
- # The AWS account ID of the owner of the security group.
51686
+ # The Amazon Web Services account ID of the owner of the security
51687
+ # group.
50048
51688
  # @return [String]
50049
51689
  #
50050
51690
  # @!attribute [rw] group_id
@@ -50122,6 +51762,249 @@ module Aws::EC2
50122
51762
  include Aws::Structure
50123
51763
  end
50124
51764
 
51765
+ # Describes a security group rule.
51766
+ #
51767
+ # @!attribute [rw] security_group_rule_id
51768
+ # The ID of the security group rule.
51769
+ # @return [String]
51770
+ #
51771
+ # @!attribute [rw] group_id
51772
+ # The ID of the security group.
51773
+ # @return [String]
51774
+ #
51775
+ # @!attribute [rw] group_owner_id
51776
+ # The ID of the account that owns the security group.
51777
+ # @return [String]
51778
+ #
51779
+ # @!attribute [rw] is_egress
51780
+ # Indicates whether the security group rule is an outbound rule.
51781
+ # @return [Boolean]
51782
+ #
51783
+ # @!attribute [rw] ip_protocol
51784
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
51785
+ # [Protocol Numbers][1]).
51786
+ #
51787
+ # Use `-1` to specify all protocols.
51788
+ #
51789
+ #
51790
+ #
51791
+ # [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
51792
+ # @return [String]
51793
+ #
51794
+ # @!attribute [rw] from_port
51795
+ # The start of port range for the TCP and UDP protocols, or an
51796
+ # ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
51797
+ # you specify all ICMP/ICMPv6 types, you must specify all codes.
51798
+ # @return [Integer]
51799
+ #
51800
+ # @!attribute [rw] to_port
51801
+ # The end of port range for the TCP and UDP protocols, or an
51802
+ # ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
51803
+ # If you specify all ICMP/ICMPv6 types, you must specify all codes.
51804
+ # @return [Integer]
51805
+ #
51806
+ # @!attribute [rw] cidr_ipv_4
51807
+ # The IPv4 CIDR range.
51808
+ # @return [String]
51809
+ #
51810
+ # @!attribute [rw] cidr_ipv_6
51811
+ # The IPv6 CIDR range.
51812
+ # @return [String]
51813
+ #
51814
+ # @!attribute [rw] prefix_list_id
51815
+ # The ID of the prefix list.
51816
+ # @return [String]
51817
+ #
51818
+ # @!attribute [rw] referenced_group_info
51819
+ # Describes the security group that is referenced in the rule.
51820
+ # @return [Types::ReferencedSecurityGroup]
51821
+ #
51822
+ # @!attribute [rw] description
51823
+ # The security group rule description.
51824
+ # @return [String]
51825
+ #
51826
+ # @!attribute [rw] tags
51827
+ # The tags applied to the security group rule.
51828
+ # @return [Array<Types::Tag>]
51829
+ #
51830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRule AWS API Documentation
51831
+ #
51832
+ class SecurityGroupRule < Struct.new(
51833
+ :security_group_rule_id,
51834
+ :group_id,
51835
+ :group_owner_id,
51836
+ :is_egress,
51837
+ :ip_protocol,
51838
+ :from_port,
51839
+ :to_port,
51840
+ :cidr_ipv_4,
51841
+ :cidr_ipv_6,
51842
+ :prefix_list_id,
51843
+ :referenced_group_info,
51844
+ :description,
51845
+ :tags)
51846
+ SENSITIVE = []
51847
+ include Aws::Structure
51848
+ end
51849
+
51850
+ # Describes the description of a security group rule.
51851
+ #
51852
+ # You can use this when you want to update the security group rule
51853
+ # description for either an inbound or outbound rule.
51854
+ #
51855
+ # @note When making an API call, you may pass SecurityGroupRuleDescription
51856
+ # data as a hash:
51857
+ #
51858
+ # {
51859
+ # security_group_rule_id: "String",
51860
+ # description: "String",
51861
+ # }
51862
+ #
51863
+ # @!attribute [rw] security_group_rule_id
51864
+ # The ID of the security group rule.
51865
+ # @return [String]
51866
+ #
51867
+ # @!attribute [rw] description
51868
+ # The description of the security group rule.
51869
+ # @return [String]
51870
+ #
51871
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleDescription AWS API Documentation
51872
+ #
51873
+ class SecurityGroupRuleDescription < Struct.new(
51874
+ :security_group_rule_id,
51875
+ :description)
51876
+ SENSITIVE = []
51877
+ include Aws::Structure
51878
+ end
51879
+
51880
+ # Describes a security group rule.
51881
+ #
51882
+ # You must specify exactly one of the following parameters, based on the
51883
+ # rule type:
51884
+ #
51885
+ # * CidrIpv4
51886
+ #
51887
+ # * CidrIpv6
51888
+ #
51889
+ # * PrefixListId
51890
+ #
51891
+ # * ReferencedGroupId
51892
+ #
51893
+ # When you modify a rule, you cannot change the rule type. For example,
51894
+ # if the rule uses an IPv4 address range, you must use `CidrIpv4` to
51895
+ # specify a new IPv4 address range.
51896
+ #
51897
+ # @note When making an API call, you may pass SecurityGroupRuleRequest
51898
+ # data as a hash:
51899
+ #
51900
+ # {
51901
+ # ip_protocol: "String",
51902
+ # from_port: 1,
51903
+ # to_port: 1,
51904
+ # cidr_ipv_4: "String",
51905
+ # cidr_ipv_6: "String",
51906
+ # prefix_list_id: "PrefixListResourceId",
51907
+ # referenced_group_id: "SecurityGroupId",
51908
+ # description: "String",
51909
+ # }
51910
+ #
51911
+ # @!attribute [rw] ip_protocol
51912
+ # The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
51913
+ # [Protocol Numbers][1]).
51914
+ #
51915
+ # Use `-1` to specify all protocols.
51916
+ #
51917
+ #
51918
+ #
51919
+ # [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
51920
+ # @return [String]
51921
+ #
51922
+ # @!attribute [rw] from_port
51923
+ # The start of port range for the TCP and UDP protocols, or an
51924
+ # ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
51925
+ # you specify all ICMP/ICMPv6 types, you must specify all codes.
51926
+ # @return [Integer]
51927
+ #
51928
+ # @!attribute [rw] to_port
51929
+ # The end of port range for the TCP and UDP protocols, or an
51930
+ # ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
51931
+ # If you specify all ICMP/ICMPv6 types, you must specify all codes.
51932
+ # @return [Integer]
51933
+ #
51934
+ # @!attribute [rw] cidr_ipv_4
51935
+ # The IPv4 CIDR range. To specify a single IPv4 address, use the /32
51936
+ # prefix length.
51937
+ # @return [String]
51938
+ #
51939
+ # @!attribute [rw] cidr_ipv_6
51940
+ # The IPv6 CIDR range. To specify a single IPv6 address, use the /128
51941
+ # prefix length.
51942
+ # @return [String]
51943
+ #
51944
+ # @!attribute [rw] prefix_list_id
51945
+ # The ID of the prefix list.
51946
+ # @return [String]
51947
+ #
51948
+ # @!attribute [rw] referenced_group_id
51949
+ # The ID of the security group that is referenced in the security
51950
+ # group rule.
51951
+ # @return [String]
51952
+ #
51953
+ # @!attribute [rw] description
51954
+ # The description of the security group rule.
51955
+ # @return [String]
51956
+ #
51957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleRequest AWS API Documentation
51958
+ #
51959
+ class SecurityGroupRuleRequest < Struct.new(
51960
+ :ip_protocol,
51961
+ :from_port,
51962
+ :to_port,
51963
+ :cidr_ipv_4,
51964
+ :cidr_ipv_6,
51965
+ :prefix_list_id,
51966
+ :referenced_group_id,
51967
+ :description)
51968
+ SENSITIVE = []
51969
+ include Aws::Structure
51970
+ end
51971
+
51972
+ # Describes an update to a security group rule.
51973
+ #
51974
+ # @note When making an API call, you may pass SecurityGroupRuleUpdate
51975
+ # data as a hash:
51976
+ #
51977
+ # {
51978
+ # security_group_rule_id: "SecurityGroupRuleId",
51979
+ # security_group_rule: {
51980
+ # ip_protocol: "String",
51981
+ # from_port: 1,
51982
+ # to_port: 1,
51983
+ # cidr_ipv_4: "String",
51984
+ # cidr_ipv_6: "String",
51985
+ # prefix_list_id: "PrefixListResourceId",
51986
+ # referenced_group_id: "SecurityGroupId",
51987
+ # description: "String",
51988
+ # },
51989
+ # }
51990
+ #
51991
+ # @!attribute [rw] security_group_rule_id
51992
+ # The ID of the security group rule.
51993
+ # @return [String]
51994
+ #
51995
+ # @!attribute [rw] security_group_rule
51996
+ # Information about the security group rule.
51997
+ # @return [Types::SecurityGroupRuleRequest]
51998
+ #
51999
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleUpdate AWS API Documentation
52000
+ #
52001
+ class SecurityGroupRuleUpdate < Struct.new(
52002
+ :security_group_rule_id,
52003
+ :security_group_rule)
52004
+ SENSITIVE = []
52005
+ include Aws::Structure
52006
+ end
52007
+
50125
52008
  # @note When making an API call, you may pass SendDiagnosticInterruptRequest
50126
52009
  # data as a hash:
50127
52010
  #
@@ -50407,13 +52290,13 @@ module Aws::EC2
50407
52290
  # @return [Boolean]
50408
52291
  #
50409
52292
  # @!attribute [rw] kms_key_id
50410
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
50411
- # (AWS KMS) customer master key (CMK) that was used to protect the
50412
- # volume encryption key for the parent volume.
52293
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
52294
+ # KMS key that was used to protect the volume encryption key for the
52295
+ # parent volume.
50413
52296
  # @return [String]
50414
52297
  #
50415
52298
  # @!attribute [rw] owner_id
50416
- # The AWS account ID of the EBS snapshot owner.
52299
+ # The ID of the account that owns the EBS snapshot.
50417
52300
  # @return [String]
50418
52301
  #
50419
52302
  # @!attribute [rw] progress
@@ -50435,11 +52318,10 @@ module Aws::EC2
50435
52318
  #
50436
52319
  # @!attribute [rw] state_message
50437
52320
  # Encrypted Amazon EBS snapshots are copied asynchronously. If a
50438
- # snapshot copy operation fails (for example, if the proper AWS Key
50439
- # Management Service (AWS KMS) permissions are not obtained) this
50440
- # field displays error state details to help you diagnose why the
50441
- # error occurred. This parameter is only returned by
50442
- # DescribeSnapshots.
52321
+ # snapshot copy operation fails (for example, if the proper Key
52322
+ # Management Service (KMS) permissions are not obtained) this field
52323
+ # displays error state details to help you diagnose why the error
52324
+ # occurred. This parameter is only returned by DescribeSnapshots.
50443
52325
  # @return [String]
50444
52326
  #
50445
52327
  # @!attribute [rw] volume_id
@@ -50453,15 +52335,15 @@ module Aws::EC2
50453
52335
  # @return [Integer]
50454
52336
  #
50455
52337
  # @!attribute [rw] owner_alias
50456
- # The AWS owner alias, from an Amazon-maintained list (`amazon`). This
50457
- # is not the user-configured AWS account alias set using the IAM
50458
- # console.
52338
+ # The Amazon Web Services owner alias, from an Amazon-maintained list
52339
+ # (`amazon`). This is not the user-configured account alias set using
52340
+ # the IAM console.
50459
52341
  # @return [String]
50460
52342
  #
50461
52343
  # @!attribute [rw] outpost_arn
50462
- # The ARN of the AWS Outpost on which the snapshot is stored. For more
50463
- # information, see [EBS Local Snapshot on Outposts][1] in the *Amazon
50464
- # Elastic Compute Cloud User Guide*.
52344
+ # The ARN of the Outpost on which the snapshot is stored. For more
52345
+ # information, see [Amazon EBS local snapshots on Outposts][1] in the
52346
+ # *Amazon Elastic Compute Cloud User Guide*.
50465
52347
  #
50466
52348
  #
50467
52349
  #
@@ -50643,9 +52525,9 @@ module Aws::EC2
50643
52525
  # @return [String]
50644
52526
  #
50645
52527
  # @!attribute [rw] outpost_arn
50646
- # The ARN of the AWS Outpost on which the snapshot is stored. For more
50647
- # information, see [EBS Local Snapshot on Outposts][1] in the *Amazon
50648
- # Elastic Compute Cloud User Guide*.
52528
+ # The ARN of the Outpost on which the snapshot is stored. For more
52529
+ # information, see [Amazon EBS local snapshots on Outposts][1] in the
52530
+ # *Amazon Elastic Compute Cloud User Guide*.
50649
52531
  #
50650
52532
  #
50651
52533
  #
@@ -50887,6 +52769,18 @@ module Aws::EC2
50887
52769
  # associate_carrier_ip_address: false,
50888
52770
  # interface_type: "String",
50889
52771
  # network_card_index: 1,
52772
+ # ipv_4_prefixes: [
52773
+ # {
52774
+ # ipv_4_prefix: "String",
52775
+ # },
52776
+ # ],
52777
+ # ipv_4_prefix_count: 1,
52778
+ # ipv_6_prefixes: [
52779
+ # {
52780
+ # ipv_6_prefix: "String",
52781
+ # },
52782
+ # ],
52783
+ # ipv_6_prefix_count: 1,
50890
52784
  # },
50891
52785
  # ],
50892
52786
  # placement: {
@@ -50901,7 +52795,7 @@ module Aws::EC2
50901
52795
  # weighted_capacity: 1.0,
50902
52796
  # tag_specifications: [
50903
52797
  # {
50904
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52798
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
50905
52799
  # tags: [
50906
52800
  # {
50907
52801
  # key: "String",
@@ -51201,6 +53095,18 @@ module Aws::EC2
51201
53095
  # associate_carrier_ip_address: false,
51202
53096
  # interface_type: "String",
51203
53097
  # network_card_index: 1,
53098
+ # ipv_4_prefixes: [
53099
+ # {
53100
+ # ipv_4_prefix: "String",
53101
+ # },
53102
+ # ],
53103
+ # ipv_4_prefix_count: 1,
53104
+ # ipv_6_prefixes: [
53105
+ # {
53106
+ # ipv_6_prefix: "String",
53107
+ # },
53108
+ # ],
53109
+ # ipv_6_prefix_count: 1,
51204
53110
  # },
51205
53111
  # ],
51206
53112
  # placement: {
@@ -51215,7 +53121,7 @@ module Aws::EC2
51215
53121
  # weighted_capacity: 1.0,
51216
53122
  # tag_specifications: [
51217
53123
  # {
51218
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
53124
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51219
53125
  # tags: [
51220
53126
  # {
51221
53127
  # key: "String",
@@ -51276,7 +53182,7 @@ module Aws::EC2
51276
53182
  # context: "String",
51277
53183
  # tag_specifications: [
51278
53184
  # {
51279
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
53185
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51280
53186
  # tags: [
51281
53187
  # {
51282
53188
  # key: "String",
@@ -51557,7 +53463,7 @@ module Aws::EC2
51557
53463
  # data as a hash:
51558
53464
  #
51559
53465
  # {
51560
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
53466
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
51561
53467
  # tags: [
51562
53468
  # {
51563
53469
  # key: "String",
@@ -51822,22 +53728,7 @@ module Aws::EC2
51822
53728
  # @return [String]
51823
53729
  #
51824
53730
  # @!attribute [rw] block_duration_minutes
51825
- # The required duration for the Spot Instances (also known as Spot
51826
- # blocks), in minutes. This value must be a multiple of 60 (60, 120,
51827
- # 180, 240, 300, or 360).
51828
- #
51829
- # The duration period starts as soon as your Spot Instance receives
51830
- # its instance ID. At the end of the duration period, Amazon EC2 marks
51831
- # the Spot Instance for termination and provides a Spot Instance
51832
- # termination notice, which gives the instance a two-minute warning
51833
- # before it terminates.
51834
- #
51835
- # You can't specify an Availability Zone group or a launch group if
51836
- # you specify a duration.
51837
- #
51838
- # New accounts or accounts with no previous billing history with
51839
- # Amazon Web Services are not eligible for Spot Instances with a
51840
- # defined duration (also known as Spot blocks).
53731
+ # Deprecated.
51841
53732
  # @return [Integer]
51842
53733
  #
51843
53734
  # @!attribute [rw] valid_until
@@ -52293,7 +54184,7 @@ module Aws::EC2
52293
54184
  # dry_run: false,
52294
54185
  # tag_specifications: [
52295
54186
  # {
52296
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
54187
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52297
54188
  # tags: [
52298
54189
  # {
52299
54190
  # key: "String",
@@ -52327,8 +54218,8 @@ module Aws::EC2
52327
54218
  #
52328
54219
  # @!attribute [rw] client_token
52329
54220
  # Unique, case-sensitive identifier that you provide to ensure the
52330
- # idempotency of the request. For more information, see [How to Ensure
52331
- # Idempotency][1].
54221
+ # idempotency of the request. For more information, see [How to ensure
54222
+ # idempotency][1].
52332
54223
  #
52333
54224
  # **A suitable default value is auto-generated.** You should normally
52334
54225
  # not need to pass this option.
@@ -52682,7 +54573,7 @@ module Aws::EC2
52682
54573
  # @return [String]
52683
54574
  #
52684
54575
  # @!attribute [rw] owner_id
52685
- # The ID of the AWS account that owns the subnet.
54576
+ # The ID of the account that owns the subnet.
52686
54577
  # @return [String]
52687
54578
  #
52688
54579
  # @!attribute [rw] assign_ipv_6_address_on_creation
@@ -52770,6 +54661,50 @@ module Aws::EC2
52770
54661
  include Aws::Structure
52771
54662
  end
52772
54663
 
54664
+ # Describes a subnet CIDR reservation.
54665
+ #
54666
+ # @!attribute [rw] subnet_cidr_reservation_id
54667
+ # The ID of the subnet CIDR reservation.
54668
+ # @return [String]
54669
+ #
54670
+ # @!attribute [rw] subnet_id
54671
+ # The ID of the subnet.
54672
+ # @return [String]
54673
+ #
54674
+ # @!attribute [rw] cidr
54675
+ # The CIDR that has been reserved.
54676
+ # @return [String]
54677
+ #
54678
+ # @!attribute [rw] reservation_type
54679
+ # The type of reservation.
54680
+ # @return [String]
54681
+ #
54682
+ # @!attribute [rw] owner_id
54683
+ # The ID of the account that owns the subnet CIDR reservation.
54684
+ # @return [String]
54685
+ #
54686
+ # @!attribute [rw] description
54687
+ # The description assigned to the subnet CIDR reservation.
54688
+ # @return [String]
54689
+ #
54690
+ # @!attribute [rw] tags
54691
+ # The tags assigned to the subnet CIDR reservation.
54692
+ # @return [Array<Types::Tag>]
54693
+ #
54694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SubnetCidrReservation AWS API Documentation
54695
+ #
54696
+ class SubnetCidrReservation < Struct.new(
54697
+ :subnet_cidr_reservation_id,
54698
+ :subnet_id,
54699
+ :cidr,
54700
+ :reservation_type,
54701
+ :owner_id,
54702
+ :description,
54703
+ :tags)
54704
+ SENSITIVE = []
54705
+ include Aws::Structure
54706
+ end
54707
+
52773
54708
  # Describes an IPv6 CIDR block associated with a subnet.
52774
54709
  #
52775
54710
  # @!attribute [rw] association_id
@@ -52892,7 +54827,7 @@ module Aws::EC2
52892
54827
  # data as a hash:
52893
54828
  #
52894
54829
  # {
52895
- # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
54830
+ # resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
52896
54831
  # tags: [
52897
54832
  # {
52898
54833
  # key: "String",
@@ -52909,19 +54844,19 @@ module Aws::EC2
52909
54844
  # \| `elastic-ip` \| `elastic-gpu` \| `export-image-task` \|
52910
54845
  # `export-instance-task` \| `fleet` \| `fpga-image` \|
52911
54846
  # `host-reservation` \| `image`\| `import-image-task` \|
52912
- # `import-snapshot-task` \| `instance` \| `internet-gateway` \|
52913
- # `ipv4pool-ec2` \| `ipv6pool-ec2` \| `key-pair` \| `launch-template`
52914
- # \| `local-gateway-route-table-vpc-association` \| `placement-group`
52915
- # \| `prefix-list` \| `natgateway` \| `network-acl` \|
52916
- # `network-interface` \| `reserved-instances` \|`route-table` \|
52917
- # `security-group`\| `snapshot` \| `spot-fleet-request` \|
52918
- # `spot-instances-request` \| `snapshot` \| `subnet` \|
52919
- # `traffic-mirror-filter` \| `traffic-mirror-session` \|
54847
+ # `import-snapshot-task` \| `instance` \| `instance-event-window` \|
54848
+ # `internet-gateway` \| `ipv4pool-ec2` \| `ipv6pool-ec2` \| `key-pair`
54849
+ # \| `launch-template` \| `local-gateway-route-table-vpc-association`
54850
+ # \| `placement-group` \| `prefix-list` \| `natgateway` \|
54851
+ # `network-acl` \| `network-interface` \| `reserved-instances`
54852
+ # \|`route-table` \| `security-group`\| `snapshot` \|
54853
+ # `spot-fleet-request` \| `spot-instances-request` \| `snapshot` \|
54854
+ # `subnet` \| `traffic-mirror-filter` \| `traffic-mirror-session` \|
52920
54855
  # `traffic-mirror-target` \| `transit-gateway` \|
52921
54856
  # `transit-gateway-attachment` \| `transit-gateway-multicast-domain`
52922
54857
  # \| `transit-gateway-route-table` \| `volume` \|`vpc` \| `
52923
54858
  # vpc-peering-connection` \| `vpc-endpoint` (for interface and gateway
52924
- # endpoints) \| `vpc-endpoint-service` (for AWS PrivateLink) \|
54859
+ # endpoints) \| `vpc-endpoint-service` (for PrivateLink) \|
52925
54860
  # `vpc-flow-log` \| `vpn-connection` \| `vpn-gateway`.
52926
54861
  #
52927
54862
  # To tag a resource after it has been created, see [CreateTags][1].
@@ -54998,23 +56933,30 @@ module Aws::EC2
54998
56933
  # data as a hash:
54999
56934
  #
55000
56935
  # {
56936
+ # ipv_6_addresses: ["String"],
56937
+ # ipv_6_prefixes: ["String"],
55001
56938
  # network_interface_id: "NetworkInterfaceId", # required
55002
- # ipv_6_addresses: ["String"], # required
55003
56939
  # }
55004
56940
  #
55005
- # @!attribute [rw] network_interface_id
55006
- # The ID of the network interface.
55007
- # @return [String]
55008
- #
55009
56941
  # @!attribute [rw] ipv_6_addresses
55010
56942
  # The IPv6 addresses to unassign from the network interface.
55011
56943
  # @return [Array<String>]
55012
56944
  #
56945
+ # @!attribute [rw] ipv_6_prefixes
56946
+ # One or moreIPv6 Prefix Delegation prefixes to unassign from the
56947
+ # network interface.
56948
+ # @return [Array<String>]
56949
+ #
56950
+ # @!attribute [rw] network_interface_id
56951
+ # The ID of the network interface.
56952
+ # @return [String]
56953
+ #
55013
56954
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesRequest AWS API Documentation
55014
56955
  #
55015
56956
  class UnassignIpv6AddressesRequest < Struct.new(
55016
- :network_interface_id,
55017
- :ipv_6_addresses)
56957
+ :ipv_6_addresses,
56958
+ :ipv_6_prefixes,
56959
+ :network_interface_id)
55018
56960
  SENSITIVE = []
55019
56961
  include Aws::Structure
55020
56962
  end
@@ -55028,11 +56970,17 @@ module Aws::EC2
55028
56970
  # interface.
55029
56971
  # @return [Array<String>]
55030
56972
  #
56973
+ # @!attribute [rw] unassigned_ipv_6_prefixes
56974
+ # The IPv4 Prefix Delegation prefixes that have been unassigned from
56975
+ # the network interface.
56976
+ # @return [Array<String>]
56977
+ #
55031
56978
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignIpv6AddressesResult AWS API Documentation
55032
56979
  #
55033
56980
  class UnassignIpv6AddressesResult < Struct.new(
55034
56981
  :network_interface_id,
55035
- :unassigned_ipv_6_addresses)
56982
+ :unassigned_ipv_6_addresses,
56983
+ :unassigned_ipv_6_prefixes)
55036
56984
  SENSITIVE = []
55037
56985
  include Aws::Structure
55038
56986
  end
@@ -55044,7 +56992,8 @@ module Aws::EC2
55044
56992
  #
55045
56993
  # {
55046
56994
  # network_interface_id: "NetworkInterfaceId", # required
55047
- # private_ip_addresses: ["String"], # required
56995
+ # private_ip_addresses: ["String"],
56996
+ # ipv_4_prefixes: ["String"],
55048
56997
  # }
55049
56998
  #
55050
56999
  # @!attribute [rw] network_interface_id
@@ -55057,11 +57006,17 @@ module Aws::EC2
55057
57006
  # more than one IP address.
55058
57007
  # @return [Array<String>]
55059
57008
  #
57009
+ # @!attribute [rw] ipv_4_prefixes
57010
+ # The IPv4 Prefix Delegation prefixes to unassign from the network
57011
+ # interface.
57012
+ # @return [Array<String>]
57013
+ #
55060
57014
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UnassignPrivateIpAddressesRequest AWS API Documentation
55061
57015
  #
55062
57016
  class UnassignPrivateIpAddressesRequest < Struct.new(
55063
57017
  :network_interface_id,
55064
- :private_ip_addresses)
57018
+ :private_ip_addresses,
57019
+ :ipv_4_prefixes)
55065
57020
  SENSITIVE = []
55066
57021
  include Aws::Structure
55067
57022
  end
@@ -55168,7 +57123,7 @@ module Aws::EC2
55168
57123
  end
55169
57124
 
55170
57125
  # Information about the error that occurred. For more information about
55171
- # errors, see [Error Codes][1].
57126
+ # errors, see [Error codes][1].
55172
57127
  #
55173
57128
  #
55174
57129
  #
@@ -55198,7 +57153,7 @@ module Aws::EC2
55198
57153
  # dry_run: false,
55199
57154
  # group_id: "SecurityGroupId",
55200
57155
  # group_name: "SecurityGroupName",
55201
- # ip_permissions: [ # required
57156
+ # ip_permissions: [
55202
57157
  # {
55203
57158
  # from_port: 1,
55204
57159
  # ip_protocol: "String",
@@ -55234,6 +57189,12 @@ module Aws::EC2
55234
57189
  # ],
55235
57190
  # },
55236
57191
  # ],
57192
+ # security_group_rule_descriptions: [
57193
+ # {
57194
+ # security_group_rule_id: "String",
57195
+ # description: "String",
57196
+ # },
57197
+ # ],
55237
57198
  # }
55238
57199
  #
55239
57200
  # @!attribute [rw] dry_run
@@ -55256,16 +57217,23 @@ module Aws::EC2
55256
57217
  # @return [String]
55257
57218
  #
55258
57219
  # @!attribute [rw] ip_permissions
55259
- # The IP permissions for the security group rule.
57220
+ # The IP permissions for the security group rule. You must specify
57221
+ # either the IP permissions or the description.
55260
57222
  # @return [Array<Types::IpPermission>]
55261
57223
  #
57224
+ # @!attribute [rw] security_group_rule_descriptions
57225
+ # The description for the egress security group rules. You must
57226
+ # specify either the description or the IP permissions.
57227
+ # @return [Array<Types::SecurityGroupRuleDescription>]
57228
+ #
55262
57229
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsEgressRequest AWS API Documentation
55263
57230
  #
55264
57231
  class UpdateSecurityGroupRuleDescriptionsEgressRequest < Struct.new(
55265
57232
  :dry_run,
55266
57233
  :group_id,
55267
57234
  :group_name,
55268
- :ip_permissions)
57235
+ :ip_permissions,
57236
+ :security_group_rule_descriptions)
55269
57237
  SENSITIVE = []
55270
57238
  include Aws::Structure
55271
57239
  end
@@ -55289,7 +57257,7 @@ module Aws::EC2
55289
57257
  # dry_run: false,
55290
57258
  # group_id: "SecurityGroupId",
55291
57259
  # group_name: "SecurityGroupName",
55292
- # ip_permissions: [ # required
57260
+ # ip_permissions: [
55293
57261
  # {
55294
57262
  # from_port: 1,
55295
57263
  # ip_protocol: "String",
@@ -55325,6 +57293,12 @@ module Aws::EC2
55325
57293
  # ],
55326
57294
  # },
55327
57295
  # ],
57296
+ # security_group_rule_descriptions: [
57297
+ # {
57298
+ # security_group_rule_id: "String",
57299
+ # description: "String",
57300
+ # },
57301
+ # ],
55328
57302
  # }
55329
57303
  #
55330
57304
  # @!attribute [rw] dry_run
@@ -55347,16 +57321,23 @@ module Aws::EC2
55347
57321
  # @return [String]
55348
57322
  #
55349
57323
  # @!attribute [rw] ip_permissions
55350
- # The IP permissions for the security group rule.
57324
+ # The IP permissions for the security group rule. You must specify
57325
+ # either IP permissions or a description.
55351
57326
  # @return [Array<Types::IpPermission>]
55352
57327
  #
57328
+ # @!attribute [rw] security_group_rule_descriptions
57329
+ # \[VPC only\] The description for the ingress security group rules.
57330
+ # You must specify either a description or IP permissions.
57331
+ # @return [Array<Types::SecurityGroupRuleDescription>]
57332
+ #
55353
57333
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsIngressRequest AWS API Documentation
55354
57334
  #
55355
57335
  class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
55356
57336
  :dry_run,
55357
57337
  :group_id,
55358
57338
  :group_name,
55359
- :ip_permissions)
57339
+ :ip_permissions,
57340
+ :security_group_rule_descriptions)
55360
57341
  SENSITIVE = []
55361
57342
  include Aws::Structure
55362
57343
  end
@@ -55442,7 +57423,7 @@ module Aws::EC2
55442
57423
  include Aws::Structure
55443
57424
  end
55444
57425
 
55445
- # Describes a security group and AWS account ID pair.
57426
+ # Describes a security group and Amazon Web Services account ID pair.
55446
57427
  #
55447
57428
  # @note When making an API call, you may pass UserIdGroupPair
55448
57429
  # data as a hash:
@@ -55483,14 +57464,14 @@ module Aws::EC2
55483
57464
  # @return [String]
55484
57465
  #
55485
57466
  # @!attribute [rw] user_id
55486
- # The ID of an AWS account.
57467
+ # The ID of an Amazon Web Services account.
55487
57468
  #
55488
57469
  # For a referenced security group in another VPC, the account ID of
55489
57470
  # the referenced security group is returned in the response. If the
55490
57471
  # referenced security group is deleted, this value is not returned.
55491
57472
  #
55492
57473
  # \[EC2-Classic\] Required when adding or removing rules that
55493
- # reference a security group in another AWS account.
57474
+ # reference a security group in another Amazon Web Services account.
55494
57475
  # @return [String]
55495
57476
  #
55496
57477
  # @!attribute [rw] vpc_id
@@ -55660,9 +57641,9 @@ module Aws::EC2
55660
57641
  # @return [Boolean]
55661
57642
  #
55662
57643
  # @!attribute [rw] kms_key_id
55663
- # The Amazon Resource Name (ARN) of the AWS Key Management Service
55664
- # (AWS KMS) customer master key (CMK) that was used to protect the
55665
- # volume encryption key for the volume.
57644
+ # The Amazon Resource Name (ARN) of the Key Management Service (KMS)
57645
+ # KMS key that was used to protect the volume encryption key for the
57646
+ # volume.
55666
57647
  # @return [String]
55667
57648
  #
55668
57649
  # @!attribute [rw] outpost_arn
@@ -56078,7 +58059,7 @@ module Aws::EC2
56078
58059
  # @return [String]
56079
58060
  #
56080
58061
  # @!attribute [rw] owner_id
56081
- # The ID of the AWS account that owns the VPC.
58062
+ # The ID of the account that owns the VPC.
56082
58063
  # @return [String]
56083
58064
  #
56084
58065
  # @!attribute [rw] instance_tenancy
@@ -56494,7 +58475,7 @@ module Aws::EC2
56494
58475
  # @return [Array<Types::CidrBlock>]
56495
58476
  #
56496
58477
  # @!attribute [rw] owner_id
56497
- # The AWS account ID of the VPC owner.
58478
+ # The ID of the account that owns the VPC.
56498
58479
  # @return [String]
56499
58480
  #
56500
58481
  # @!attribute [rw] peering_options