aws-sdk-ec2 1.518.0 → 1.520.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10488,6 +10488,129 @@ module Aws::EC2
10488
10488
  include Aws::Structure
10489
10489
  end
10490
10490
 
10491
+ # @!attribute [rw] local_gateway_id
10492
+ # The ID of the local gateway.
10493
+ # @return [String]
10494
+ #
10495
+ # @!attribute [rw] local_bgp_asn
10496
+ # The Autonomous System Number(ASN) for the local Border Gateway
10497
+ # Protocol (BGP).
10498
+ # @return [Integer]
10499
+ #
10500
+ # @!attribute [rw] local_bgp_asn_extended
10501
+ # The extended 32-bit ASN for the local BGP configuration.
10502
+ # @return [Integer]
10503
+ #
10504
+ # @!attribute [rw] tag_specifications
10505
+ # The tags to apply to the local gateway virtual interface group when
10506
+ # the resource is being created.
10507
+ # @return [Array<Types::TagSpecification>]
10508
+ #
10509
+ # @!attribute [rw] dry_run
10510
+ # Checks whether you have the required permissions for the action,
10511
+ # without actually making the request, and provides an error response.
10512
+ # If you have the required permissions, the error response is
10513
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
10514
+ # @return [Boolean]
10515
+ #
10516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayVirtualInterfaceGroupRequest AWS API Documentation
10517
+ #
10518
+ class CreateLocalGatewayVirtualInterfaceGroupRequest < Struct.new(
10519
+ :local_gateway_id,
10520
+ :local_bgp_asn,
10521
+ :local_bgp_asn_extended,
10522
+ :tag_specifications,
10523
+ :dry_run)
10524
+ SENSITIVE = []
10525
+ include Aws::Structure
10526
+ end
10527
+
10528
+ # @!attribute [rw] local_gateway_virtual_interface_group
10529
+ # Information about the created local gateway virtual interface group.
10530
+ # @return [Types::LocalGatewayVirtualInterfaceGroup]
10531
+ #
10532
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayVirtualInterfaceGroupResult AWS API Documentation
10533
+ #
10534
+ class CreateLocalGatewayVirtualInterfaceGroupResult < Struct.new(
10535
+ :local_gateway_virtual_interface_group)
10536
+ SENSITIVE = []
10537
+ include Aws::Structure
10538
+ end
10539
+
10540
+ # @!attribute [rw] local_gateway_virtual_interface_group_id
10541
+ # The ID of the local gateway virtual interface group.
10542
+ # @return [String]
10543
+ #
10544
+ # @!attribute [rw] outpost_lag_id
10545
+ # References the Link Aggregation Group (LAG) that connects the
10546
+ # Outpost to on-premises network devices.
10547
+ # @return [String]
10548
+ #
10549
+ # @!attribute [rw] vlan
10550
+ # The virtual local area network (VLAN) used for the local gateway
10551
+ # virtual interface.
10552
+ # @return [Integer]
10553
+ #
10554
+ # @!attribute [rw] local_address
10555
+ # The IP address assigned to the local gateway virtual interface on
10556
+ # the Outpost side. Only IPv4 is supported.
10557
+ # @return [String]
10558
+ #
10559
+ # @!attribute [rw] peer_address
10560
+ # The peer IP address for the local gateway virtual interface. Only
10561
+ # IPv4 is supported.
10562
+ # @return [String]
10563
+ #
10564
+ # @!attribute [rw] peer_bgp_asn
10565
+ # The Autonomous System Number (ASN) of the Border Gateway Protocol
10566
+ # (BGP) peer.
10567
+ # @return [Integer]
10568
+ #
10569
+ # @!attribute [rw] tag_specifications
10570
+ # The tags to apply to a resource when the local gateway virtual
10571
+ # interface is being created.
10572
+ # @return [Array<Types::TagSpecification>]
10573
+ #
10574
+ # @!attribute [rw] dry_run
10575
+ # Checks whether you have the required permissions for the action,
10576
+ # without actually making the request, and provides an error response.
10577
+ # If you have the required permissions, the error response is
10578
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
10579
+ # @return [Boolean]
10580
+ #
10581
+ # @!attribute [rw] peer_bgp_asn_extended
10582
+ # The extended 32-bit ASN of the BGP peer for use with larger ASN
10583
+ # values.
10584
+ # @return [Integer]
10585
+ #
10586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayVirtualInterfaceRequest AWS API Documentation
10587
+ #
10588
+ class CreateLocalGatewayVirtualInterfaceRequest < Struct.new(
10589
+ :local_gateway_virtual_interface_group_id,
10590
+ :outpost_lag_id,
10591
+ :vlan,
10592
+ :local_address,
10593
+ :peer_address,
10594
+ :peer_bgp_asn,
10595
+ :tag_specifications,
10596
+ :dry_run,
10597
+ :peer_bgp_asn_extended)
10598
+ SENSITIVE = []
10599
+ include Aws::Structure
10600
+ end
10601
+
10602
+ # @!attribute [rw] local_gateway_virtual_interface
10603
+ # Information about the local gateway virtual interface.
10604
+ # @return [Types::LocalGatewayVirtualInterface]
10605
+ #
10606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayVirtualInterfaceResult AWS API Documentation
10607
+ #
10608
+ class CreateLocalGatewayVirtualInterfaceResult < Struct.new(
10609
+ :local_gateway_virtual_interface)
10610
+ SENSITIVE = []
10611
+ include Aws::Structure
10612
+ end
10613
+
10491
10614
  # @!attribute [rw] dry_run
10492
10615
  # Checks whether you have the required permissions for the action,
10493
10616
  # without actually making the request, and provides an error response.
@@ -11385,6 +11508,40 @@ module Aws::EC2
11385
11508
  # manually delete it when you no longer need it.
11386
11509
  # @return [Boolean]
11387
11510
  #
11511
+ # @!attribute [rw] volume_initialization_rate
11512
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
11513
+ # (volume initialization rate), in MiB/s, at which to download the
11514
+ # snapshot blocks from Amazon S3 to the replacement root volume. This
11515
+ # is also known as *volume initialization*. Specifying a volume
11516
+ # initialization rate ensures that the volume is initialized at a
11517
+ # predictable and consistent rate after creation.
11518
+ #
11519
+ # Omit this parameter if:
11520
+ #
11521
+ # * You want to create the volume using fast snapshot restore. You
11522
+ # must specify a snapshot that is enabled for fast snapshot restore.
11523
+ # In this case, the volume is fully initialized at creation.
11524
+ #
11525
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
11526
+ # restore and a volume initialization rate, the volume will be
11527
+ # initialized at the specified rate instead of fast snapshot
11528
+ # restore.
11529
+ #
11530
+ # </note>
11531
+ #
11532
+ # * You want to create a volume that is initialized at the default
11533
+ # rate.
11534
+ #
11535
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
11536
+ # *Amazon EC2 User Guide*.
11537
+ #
11538
+ # Valid range: 100 - 300 MiB/s
11539
+ #
11540
+ #
11541
+ #
11542
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
11543
+ # @return [Integer]
11544
+ #
11388
11545
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReplaceRootVolumeTaskRequest AWS API Documentation
11389
11546
  #
11390
11547
  class CreateReplaceRootVolumeTaskRequest < Struct.new(
@@ -11394,7 +11551,8 @@ module Aws::EC2
11394
11551
  :dry_run,
11395
11552
  :tag_specifications,
11396
11553
  :image_id,
11397
- :delete_replaced_root_volume)
11554
+ :delete_replaced_root_volume,
11555
+ :volume_initialization_rate)
11398
11556
  SENSITIVE = []
11399
11557
  include Aws::Structure
11400
11558
  end
@@ -14219,6 +14377,41 @@ module Aws::EC2
14219
14377
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
14220
14378
  # @return [String]
14221
14379
  #
14380
+ # @!attribute [rw] volume_initialization_rate
14381
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
14382
+ # (volume initialization rate), in MiB/s, at which to download the
14383
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
14384
+ # *volume initialization*. Specifying a volume initialization rate
14385
+ # ensures that the volume is initialized at a predictable and
14386
+ # consistent rate after creation.
14387
+ #
14388
+ # This parameter is supported only for volumes created from snapshots.
14389
+ # Omit this parameter if:
14390
+ #
14391
+ # * You want to create the volume using fast snapshot restore. You
14392
+ # must specify a snapshot that is enabled for fast snapshot restore.
14393
+ # In this case, the volume is fully initialized at creation.
14394
+ #
14395
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
14396
+ # restore and a volume initialization rate, the volume will be
14397
+ # initialized at the specified rate instead of fast snapshot
14398
+ # restore.
14399
+ #
14400
+ # </note>
14401
+ #
14402
+ # * You want to create a volume that is initialized at the default
14403
+ # rate.
14404
+ #
14405
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
14406
+ # *Amazon EC2 User Guide*.
14407
+ #
14408
+ # Valid range: 100 - 300 MiB/s
14409
+ #
14410
+ #
14411
+ #
14412
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
14413
+ # @return [Integer]
14414
+ #
14222
14415
  # @!attribute [rw] operator
14223
14416
  # Reserved for internal use.
14224
14417
  # @return [Types::OperatorRequest]
@@ -14245,6 +14438,7 @@ module Aws::EC2
14245
14438
  :multi_attach_enabled,
14246
14439
  :throughput,
14247
14440
  :client_token,
14441
+ :volume_initialization_rate,
14248
14442
  :operator,
14249
14443
  :dry_run)
14250
14444
  SENSITIVE = []
@@ -16239,6 +16433,70 @@ module Aws::EC2
16239
16433
  include Aws::Structure
16240
16434
  end
16241
16435
 
16436
+ # @!attribute [rw] local_gateway_virtual_interface_group_id
16437
+ # The ID of the local gateway virtual interface group to delete.
16438
+ # @return [String]
16439
+ #
16440
+ # @!attribute [rw] dry_run
16441
+ # Checks whether you have the required permissions for the action,
16442
+ # without actually making the request, and provides an error response.
16443
+ # If you have the required permissions, the error response is
16444
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
16445
+ # @return [Boolean]
16446
+ #
16447
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayVirtualInterfaceGroupRequest AWS API Documentation
16448
+ #
16449
+ class DeleteLocalGatewayVirtualInterfaceGroupRequest < Struct.new(
16450
+ :local_gateway_virtual_interface_group_id,
16451
+ :dry_run)
16452
+ SENSITIVE = []
16453
+ include Aws::Structure
16454
+ end
16455
+
16456
+ # @!attribute [rw] local_gateway_virtual_interface_group
16457
+ # Information about the deleted local gateway virtual interface group.
16458
+ # @return [Types::LocalGatewayVirtualInterfaceGroup]
16459
+ #
16460
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayVirtualInterfaceGroupResult AWS API Documentation
16461
+ #
16462
+ class DeleteLocalGatewayVirtualInterfaceGroupResult < Struct.new(
16463
+ :local_gateway_virtual_interface_group)
16464
+ SENSITIVE = []
16465
+ include Aws::Structure
16466
+ end
16467
+
16468
+ # @!attribute [rw] local_gateway_virtual_interface_id
16469
+ # The ID of the local virtual interface to delete.
16470
+ # @return [String]
16471
+ #
16472
+ # @!attribute [rw] dry_run
16473
+ # Checks whether you have the required permissions for the action,
16474
+ # without actually making the request, and provides an error response.
16475
+ # If you have the required permissions, the error response is
16476
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
16477
+ # @return [Boolean]
16478
+ #
16479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayVirtualInterfaceRequest AWS API Documentation
16480
+ #
16481
+ class DeleteLocalGatewayVirtualInterfaceRequest < Struct.new(
16482
+ :local_gateway_virtual_interface_id,
16483
+ :dry_run)
16484
+ SENSITIVE = []
16485
+ include Aws::Structure
16486
+ end
16487
+
16488
+ # @!attribute [rw] local_gateway_virtual_interface
16489
+ # Information about the deleted local gateway virtual interface.
16490
+ # @return [Types::LocalGatewayVirtualInterface]
16491
+ #
16492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayVirtualInterfaceResult AWS API Documentation
16493
+ #
16494
+ class DeleteLocalGatewayVirtualInterfaceResult < Struct.new(
16495
+ :local_gateway_virtual_interface)
16496
+ SENSITIVE = []
16497
+ include Aws::Structure
16498
+ end
16499
+
16242
16500
  # @!attribute [rw] dry_run
16243
16501
  # Checks whether you have the required permissions for the action,
16244
16502
  # without actually making the request, and provides an error response.
@@ -25599,6 +25857,88 @@ module Aws::EC2
25599
25857
  include Aws::Structure
25600
25858
  end
25601
25859
 
25860
+ # @!attribute [rw] outpost_lag_ids
25861
+ # The IDs of the Outpost LAGs.
25862
+ # @return [Array<String>]
25863
+ #
25864
+ # @!attribute [rw] filters
25865
+ # The filters to use for narrowing down the request. The following
25866
+ # filters are supported:
25867
+ #
25868
+ # * `service-link-virtual-interface-id` - The ID of the service link
25869
+ # virtual interface.
25870
+ #
25871
+ # * `service-link-virtual-interface-arn` - The ARN of the service link
25872
+ # virtual interface.
25873
+ #
25874
+ # * `outpost-id` - The Outpost ID.
25875
+ #
25876
+ # * `outpost-arn` - The Outpost ARN.
25877
+ #
25878
+ # * `owner-id` - The ID of the Amazon Web Services account that owns
25879
+ # the service link virtual interface.
25880
+ #
25881
+ # * `vlan` - The ID of the address pool.
25882
+ #
25883
+ # * `local-address` - The local address.
25884
+ #
25885
+ # * `peer-address` - The peer address.
25886
+ #
25887
+ # * `peer-bgp-asn` - The peer BGP ASN.
25888
+ #
25889
+ # * `outpost-lag-id` - The Outpost LAG ID.
25890
+ #
25891
+ # * `configuration-state` - The configuration state of the service
25892
+ # link virtual interface.
25893
+ # @return [Array<Types::Filter>]
25894
+ #
25895
+ # @!attribute [rw] max_results
25896
+ # The maximum number of results to return with a single call. To
25897
+ # retrieve the remaining results, make another call with the returned
25898
+ # `nextToken` value.
25899
+ # @return [Integer]
25900
+ #
25901
+ # @!attribute [rw] next_token
25902
+ # The token for the next page of results.
25903
+ # @return [String]
25904
+ #
25905
+ # @!attribute [rw] dry_run
25906
+ # Checks whether you have the required permissions for the action,
25907
+ # without actually making the request, and provides an error response.
25908
+ # If you have the required permissions, the error response is
25909
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
25910
+ # @return [Boolean]
25911
+ #
25912
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeOutpostLagsRequest AWS API Documentation
25913
+ #
25914
+ class DescribeOutpostLagsRequest < Struct.new(
25915
+ :outpost_lag_ids,
25916
+ :filters,
25917
+ :max_results,
25918
+ :next_token,
25919
+ :dry_run)
25920
+ SENSITIVE = []
25921
+ include Aws::Structure
25922
+ end
25923
+
25924
+ # @!attribute [rw] outpost_lags
25925
+ # The Outpost LAGs.
25926
+ # @return [Array<Types::OutpostLag>]
25927
+ #
25928
+ # @!attribute [rw] next_token
25929
+ # The token to use to retrieve the next page of results. This value is
25930
+ # `null` when there are no more results to return.
25931
+ # @return [String]
25932
+ #
25933
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeOutpostLagsResult AWS API Documentation
25934
+ #
25935
+ class DescribeOutpostLagsResult < Struct.new(
25936
+ :outpost_lags,
25937
+ :next_token)
25938
+ SENSITIVE = []
25939
+ include Aws::Structure
25940
+ end
25941
+
25602
25942
  # @!attribute [rw] group_ids
25603
25943
  # The IDs of the placement groups.
25604
25944
  # @return [Array<String>]
@@ -27158,6 +27498,79 @@ module Aws::EC2
27158
27498
  include Aws::Structure
27159
27499
  end
27160
27500
 
27501
+ # @!attribute [rw] service_link_virtual_interface_ids
27502
+ # The IDs of the service link virtual interfaces.
27503
+ # @return [Array<String>]
27504
+ #
27505
+ # @!attribute [rw] filters
27506
+ # The filters to use for narrowing down the request. The following
27507
+ # filters are supported:
27508
+ #
27509
+ # * `outpost-lag-id` - The ID of the Outpost LAG.
27510
+ #
27511
+ # * `outpost-arn` - The Outpost ARN.
27512
+ #
27513
+ # * `owner-id` - The ID of the Amazon Web Services account that owns
27514
+ # the service link virtual interface.
27515
+ #
27516
+ # * `state` - The state of the Outpost LAG.
27517
+ #
27518
+ # * `vlan` - The ID of the address pool.
27519
+ #
27520
+ # * `service-link-virtual-interface-id` - The ID of the service link
27521
+ # virtual interface.
27522
+ #
27523
+ # * `local-gateway-virtual-interface-id` - The ID of the local gateway
27524
+ # virtual interface.
27525
+ # @return [Array<Types::Filter>]
27526
+ #
27527
+ # @!attribute [rw] max_results
27528
+ # The maximum number of results to return with a single call. To
27529
+ # retrieve the remaining results, make another call with the returned
27530
+ # `nextToken` value.
27531
+ # @return [Integer]
27532
+ #
27533
+ # @!attribute [rw] next_token
27534
+ # The token for the next page of results.
27535
+ # @return [String]
27536
+ #
27537
+ # @!attribute [rw] dry_run
27538
+ # Checks whether you have the required permissions for the action,
27539
+ # without actually making the request, and provides an error response.
27540
+ # If you have the required permissions, the error response is
27541
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
27542
+ # @return [Boolean]
27543
+ #
27544
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeServiceLinkVirtualInterfacesRequest AWS API Documentation
27545
+ #
27546
+ class DescribeServiceLinkVirtualInterfacesRequest < Struct.new(
27547
+ :service_link_virtual_interface_ids,
27548
+ :filters,
27549
+ :max_results,
27550
+ :next_token,
27551
+ :dry_run)
27552
+ SENSITIVE = []
27553
+ include Aws::Structure
27554
+ end
27555
+
27556
+ # @!attribute [rw] service_link_virtual_interfaces
27557
+ # Describes the service link virtual interfaces.
27558
+ # @return [Array<Types::ServiceLinkVirtualInterface>]
27559
+ #
27560
+ # @!attribute [rw] next_token
27561
+ # The token to use to retrieve the next page of results. This value is
27562
+ # `null` when there are no more results to return.
27563
+ # @return [String]
27564
+ #
27565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeServiceLinkVirtualInterfacesResult AWS API Documentation
27566
+ #
27567
+ class DescribeServiceLinkVirtualInterfacesResult < Struct.new(
27568
+ :service_link_virtual_interfaces,
27569
+ :next_token)
27570
+ SENSITIVE = []
27571
+ include Aws::Structure
27572
+ end
27573
+
27161
27574
  # @!attribute [rw] attribute
27162
27575
  # The snapshot attribute you would like to view.
27163
27576
  # @return [String]
@@ -33361,6 +33774,44 @@ module Aws::EC2
33361
33774
  # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
33362
33775
  # @return [Boolean]
33363
33776
  #
33777
+ # @!attribute [rw] volume_initialization_rate
33778
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
33779
+ # (volume initialization rate), in MiB/s, at which to download the
33780
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
33781
+ # *volume initialization*. Specifying a volume initialization rate
33782
+ # ensures that the volume is initialized at a predictable and
33783
+ # consistent rate after creation.
33784
+ #
33785
+ # This parameter is supported only for volumes created from snapshots.
33786
+ # Omit this parameter if:
33787
+ #
33788
+ # * You want to create the volume using fast snapshot restore. You
33789
+ # must specify a snapshot that is enabled for fast snapshot restore.
33790
+ # In this case, the volume is fully initialized at creation.
33791
+ #
33792
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
33793
+ # restore and a volume initialization rate, the volume will be
33794
+ # initialized at the specified rate instead of fast snapshot
33795
+ # restore.
33796
+ #
33797
+ # </note>
33798
+ #
33799
+ # * You want to create a volume that is initialized at the default
33800
+ # rate.
33801
+ #
33802
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
33803
+ # *Amazon EC2 User Guide*.
33804
+ #
33805
+ # This parameter is not supported when using [CreateImage][2].
33806
+ #
33807
+ # Valid range: 100 - 300 MiB/s
33808
+ #
33809
+ #
33810
+ #
33811
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
33812
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
33813
+ # @return [Integer]
33814
+ #
33364
33815
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
33365
33816
  #
33366
33817
  class EbsBlockDevice < Struct.new(
@@ -33372,7 +33823,8 @@ module Aws::EC2
33372
33823
  :kms_key_id,
33373
33824
  :throughput,
33374
33825
  :outpost_arn,
33375
- :encrypted)
33826
+ :encrypted,
33827
+ :volume_initialization_rate)
33376
33828
  SENSITIVE = []
33377
33829
  include Aws::Structure
33378
33830
  end
@@ -49019,6 +49471,12 @@ module Aws::EC2
49019
49471
  # The throughput that the volume supports, in MiB/s.
49020
49472
  # @return [Integer]
49021
49473
  #
49474
+ # @!attribute [rw] volume_initialization_rate
49475
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
49476
+ # initialization rate) specified for the volume, in MiB/s. If no
49477
+ # volume initialization rate was specified, the value is `null`.
49478
+ # @return [Integer]
49479
+ #
49022
49480
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
49023
49481
  #
49024
49482
  class LaunchTemplateEbsBlockDevice < Struct.new(
@@ -49029,7 +49487,8 @@ module Aws::EC2
49029
49487
  :snapshot_id,
49030
49488
  :volume_size,
49031
49489
  :volume_type,
49032
- :throughput)
49490
+ :throughput,
49491
+ :volume_initialization_rate)
49033
49492
  SENSITIVE = []
49034
49493
  include Aws::Structure
49035
49494
  end
@@ -49115,6 +49574,41 @@ module Aws::EC2
49115
49574
  # Valid Range: Minimum value of 125. Maximum value of 1000.
49116
49575
  # @return [Integer]
49117
49576
  #
49577
+ # @!attribute [rw] volume_initialization_rate
49578
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
49579
+ # (volume initialization rate), in MiB/s, at which to download the
49580
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
49581
+ # *volume initialization*. Specifying a volume initialization rate
49582
+ # ensures that the volume is initialized at a predictable and
49583
+ # consistent rate after creation.
49584
+ #
49585
+ # This parameter is supported only for volumes created from snapshots.
49586
+ # Omit this parameter if:
49587
+ #
49588
+ # * You want to create the volume using fast snapshot restore. You
49589
+ # must specify a snapshot that is enabled for fast snapshot restore.
49590
+ # In this case, the volume is fully initialized at creation.
49591
+ #
49592
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
49593
+ # restore and a volume initialization rate, the volume will be
49594
+ # initialized at the specified rate instead of fast snapshot
49595
+ # restore.
49596
+ #
49597
+ # </note>
49598
+ #
49599
+ # * You want to create a volume that is initialized at the default
49600
+ # rate.
49601
+ #
49602
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
49603
+ # *Amazon EC2 User Guide*.
49604
+ #
49605
+ # Valid range: 100 - 300 MiB/s
49606
+ #
49607
+ #
49608
+ #
49609
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
49610
+ # @return [Integer]
49611
+ #
49118
49612
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
49119
49613
  #
49120
49614
  class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
@@ -49125,7 +49619,8 @@ module Aws::EC2
49125
49619
  :snapshot_id,
49126
49620
  :volume_size,
49127
49621
  :volume_type,
49128
- :throughput)
49622
+ :throughput,
49623
+ :volume_initialization_rate)
49129
49624
  SENSITIVE = []
49130
49625
  include Aws::Structure
49131
49626
  end
@@ -51047,6 +51542,19 @@ module Aws::EC2
51047
51542
  # The ID of the local gateway.
51048
51543
  # @return [String]
51049
51544
  #
51545
+ # @!attribute [rw] local_gateway_virtual_interface_group_id
51546
+ # The ID of the local gateway virtual interface group.
51547
+ # @return [String]
51548
+ #
51549
+ # @!attribute [rw] local_gateway_virtual_interface_arn
51550
+ # The Amazon Resource Number (ARN) of the local gateway virtual
51551
+ # interface.
51552
+ # @return [String]
51553
+ #
51554
+ # @!attribute [rw] outpost_lag_id
51555
+ # The Outpost LAG ID.
51556
+ # @return [String]
51557
+ #
51050
51558
  # @!attribute [rw] vlan
51051
51559
  # The ID of the VLAN.
51052
51560
  # @return [Integer]
@@ -51068,6 +51576,11 @@ module Aws::EC2
51068
51576
  # The peer BGP ASN.
51069
51577
  # @return [Integer]
51070
51578
  #
51579
+ # @!attribute [rw] peer_bgp_asn_extended
51580
+ # The extended 32-bit ASN of the BGP peer for use with larger ASN
51581
+ # values.
51582
+ # @return [Integer]
51583
+ #
51071
51584
  # @!attribute [rw] owner_id
51072
51585
  # The ID of the Amazon Web Services account that owns the local
51073
51586
  # gateway virtual interface.
@@ -51077,18 +51590,27 @@ module Aws::EC2
51077
51590
  # The tags assigned to the virtual interface.
51078
51591
  # @return [Array<Types::Tag>]
51079
51592
  #
51593
+ # @!attribute [rw] configuration_state
51594
+ # The current state of the local gateway virtual interface.
51595
+ # @return [String]
51596
+ #
51080
51597
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayVirtualInterface AWS API Documentation
51081
51598
  #
51082
51599
  class LocalGatewayVirtualInterface < Struct.new(
51083
51600
  :local_gateway_virtual_interface_id,
51084
51601
  :local_gateway_id,
51602
+ :local_gateway_virtual_interface_group_id,
51603
+ :local_gateway_virtual_interface_arn,
51604
+ :outpost_lag_id,
51085
51605
  :vlan,
51086
51606
  :local_address,
51087
51607
  :peer_address,
51088
51608
  :local_bgp_asn,
51089
51609
  :peer_bgp_asn,
51610
+ :peer_bgp_asn_extended,
51090
51611
  :owner_id,
51091
- :tags)
51612
+ :tags,
51613
+ :configuration_state)
51092
51614
  SENSITIVE = []
51093
51615
  include Aws::Structure
51094
51616
  end
@@ -51112,10 +51634,28 @@ module Aws::EC2
51112
51634
  # gateway virtual interface group.
51113
51635
  # @return [String]
51114
51636
  #
51637
+ # @!attribute [rw] local_bgp_asn
51638
+ # The Autonomous System Number(ASN) for the local Border Gateway
51639
+ # Protocol (BGP).
51640
+ # @return [Integer]
51641
+ #
51642
+ # @!attribute [rw] local_bgp_asn_extended
51643
+ # The extended 32-bit ASN for the local BGP configuration.
51644
+ # @return [Integer]
51645
+ #
51646
+ # @!attribute [rw] local_gateway_virtual_interface_group_arn
51647
+ # The Amazon Resource Number (ARN) of the local gateway virtual
51648
+ # interface group.
51649
+ # @return [String]
51650
+ #
51115
51651
  # @!attribute [rw] tags
51116
51652
  # The tags assigned to the virtual interface group.
51117
51653
  # @return [Array<Types::Tag>]
51118
51654
  #
51655
+ # @!attribute [rw] configuration_state
51656
+ # The current state of the local gateway virtual interface group.
51657
+ # @return [String]
51658
+ #
51119
51659
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayVirtualInterfaceGroup AWS API Documentation
51120
51660
  #
51121
51661
  class LocalGatewayVirtualInterfaceGroup < Struct.new(
@@ -51123,7 +51663,11 @@ module Aws::EC2
51123
51663
  :local_gateway_virtual_interface_ids,
51124
51664
  :local_gateway_id,
51125
51665
  :owner_id,
51126
- :tags)
51666
+ :local_bgp_asn,
51667
+ :local_bgp_asn_extended,
51668
+ :local_gateway_virtual_interface_group_arn,
51669
+ :tags,
51670
+ :configuration_state)
51127
51671
  SENSITIVE = []
51128
51672
  include Aws::Structure
51129
51673
  end
@@ -58602,6 +59146,52 @@ module Aws::EC2
58602
59146
  include Aws::Structure
58603
59147
  end
58604
59148
 
59149
+ # Describes an Outpost link aggregation group (LAG).
59150
+ #
59151
+ # @!attribute [rw] outpost_arn
59152
+ # The Amazon Resource Number (ARN) of the Outpost LAG.
59153
+ # @return [String]
59154
+ #
59155
+ # @!attribute [rw] owner_id
59156
+ # The ID of the Outpost LAG owner.
59157
+ # @return [String]
59158
+ #
59159
+ # @!attribute [rw] state
59160
+ # The current state of the Outpost LAG.
59161
+ # @return [String]
59162
+ #
59163
+ # @!attribute [rw] outpost_lag_id
59164
+ # The ID of the Outpost LAG.
59165
+ # @return [String]
59166
+ #
59167
+ # @!attribute [rw] local_gateway_virtual_interface_ids
59168
+ # The IDs of the local gateway virtual interfaces associated with the
59169
+ # Outpost LAG.
59170
+ # @return [Array<String>]
59171
+ #
59172
+ # @!attribute [rw] service_link_virtual_interface_ids
59173
+ # The service link virtual interface IDs associated with the Outpost
59174
+ # LAG.
59175
+ # @return [Array<String>]
59176
+ #
59177
+ # @!attribute [rw] tags
59178
+ # The tags associated with the Outpost LAG.
59179
+ # @return [Array<Types::Tag>]
59180
+ #
59181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/OutpostLag AWS API Documentation
59182
+ #
59183
+ class OutpostLag < Struct.new(
59184
+ :outpost_arn,
59185
+ :owner_id,
59186
+ :state,
59187
+ :outpost_lag_id,
59188
+ :local_gateway_virtual_interface_ids,
59189
+ :service_link_virtual_interface_ids,
59190
+ :tags)
59191
+ SENSITIVE = []
59192
+ include Aws::Structure
59193
+ end
59194
+
58605
59195
  # Describes a packet header statement.
58606
59196
  #
58607
59197
  # @!attribute [rw] source_addresses
@@ -67470,6 +68060,84 @@ module Aws::EC2
67470
68060
  include Aws::Structure
67471
68061
  end
67472
68062
 
68063
+ # Describes the service link virtual interfaces that establish
68064
+ # connectivity between Amazon Web Services Outpost and on-premises
68065
+ # networks.
68066
+ #
68067
+ # @!attribute [rw] service_link_virtual_interface_id
68068
+ # The ID of the service link virtual interface.
68069
+ # @return [String]
68070
+ #
68071
+ # @!attribute [rw] service_link_virtual_interface_arn
68072
+ # The Amazon Resource Number (ARN) for the service link virtual
68073
+ # interface.
68074
+ # @return [String]
68075
+ #
68076
+ # @!attribute [rw] outpost_id
68077
+ # The Outpost ID for the service link virtual interface.
68078
+ # @return [String]
68079
+ #
68080
+ # @!attribute [rw] outpost_arn
68081
+ # The Outpost Amazon Resource Number (ARN) for the service link
68082
+ # virtual interface.
68083
+ # @return [String]
68084
+ #
68085
+ # @!attribute [rw] owner_id
68086
+ # The ID of the Amazon Web Services account that owns the service link
68087
+ # virtual interface..
68088
+ # @return [String]
68089
+ #
68090
+ # @!attribute [rw] local_address
68091
+ # The IPv4 address assigned to the local gateway virtual interface on
68092
+ # the Outpost side.
68093
+ # @return [String]
68094
+ #
68095
+ # @!attribute [rw] peer_address
68096
+ # The IPv4 peer address for the service link virtual interface.
68097
+ # @return [String]
68098
+ #
68099
+ # @!attribute [rw] peer_bgp_asn
68100
+ # The ASN for the Border Gateway Protocol (BGP) associated with the
68101
+ # service link virtual interface.
68102
+ # @return [Integer]
68103
+ #
68104
+ # @!attribute [rw] vlan
68105
+ # The virtual local area network for the service link virtual
68106
+ # interface.
68107
+ # @return [Integer]
68108
+ #
68109
+ # @!attribute [rw] outpost_lag_id
68110
+ # The link aggregation group (LAG) ID for the service link virtual
68111
+ # interface.
68112
+ # @return [String]
68113
+ #
68114
+ # @!attribute [rw] tags
68115
+ # The tags associated with the service link virtual interface.
68116
+ # @return [Array<Types::Tag>]
68117
+ #
68118
+ # @!attribute [rw] configuration_state
68119
+ # The current state of the service link virtual interface.
68120
+ # @return [String]
68121
+ #
68122
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ServiceLinkVirtualInterface AWS API Documentation
68123
+ #
68124
+ class ServiceLinkVirtualInterface < Struct.new(
68125
+ :service_link_virtual_interface_id,
68126
+ :service_link_virtual_interface_arn,
68127
+ :outpost_id,
68128
+ :outpost_arn,
68129
+ :owner_id,
68130
+ :local_address,
68131
+ :peer_address,
68132
+ :peer_bgp_asn,
68133
+ :vlan,
68134
+ :outpost_lag_id,
68135
+ :tags,
68136
+ :configuration_state)
68137
+ SENSITIVE = []
68138
+ include Aws::Structure
68139
+ end
68140
+
67473
68141
  # Describes the type of service for a VPC endpoint.
67474
68142
  #
67475
68143
  # @!attribute [rw] service_type
@@ -74577,6 +75245,13 @@ module Aws::EC2
74577
75245
  # The service provider that manages the volume.
74578
75246
  # @return [Types::OperatorResponse]
74579
75247
  #
75248
+ # @!attribute [rw] volume_initialization_rate
75249
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
75250
+ # initialization rate) specified for the volume during creation, in
75251
+ # MiB/s. If no volume initialization rate was specified, the value is
75252
+ # `null`.
75253
+ # @return [Integer]
75254
+ #
74580
75255
  # @!attribute [rw] volume_id
74581
75256
  # The ID of the volume.
74582
75257
  # @return [String]
@@ -74630,6 +75305,7 @@ module Aws::EC2
74630
75305
  :throughput,
74631
75306
  :sse_type,
74632
75307
  :operator,
75308
+ :volume_initialization_rate,
74633
75309
  :volume_id,
74634
75310
  :size,
74635
75311
  :snapshot_id,