aws-sdk-ec2 1.519.0 → 1.522.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.
@@ -3060,6 +3060,10 @@ module Aws::EC2
3060
3060
  # attaches to the instance.
3061
3061
  # @return [Types::EnaSrdSpecification]
3062
3062
  #
3063
+ # @!attribute [rw] ena_queue_count
3064
+ # The number of ENA queues to be created with the instance.
3065
+ # @return [Integer]
3066
+ #
3063
3067
  # @!attribute [rw] dry_run
3064
3068
  # Checks whether you have the required permissions for the action,
3065
3069
  # without actually making the request, and provides an error response.
@@ -3084,6 +3088,7 @@ module Aws::EC2
3084
3088
  class AttachNetworkInterfaceRequest < Struct.new(
3085
3089
  :network_card_index,
3086
3090
  :ena_srd_specification,
3091
+ :ena_queue_count,
3087
3092
  :dry_run,
3088
3093
  :network_interface_id,
3089
3094
  :instance_id,
@@ -6470,7 +6475,7 @@ module Aws::EC2
6470
6475
  # Indicates whether the client VPN session is disconnected after the
6471
6476
  # maximum `sessionTimeoutHours` is reached. If `true`, users are
6472
6477
  # prompted to reconnect client VPN. If `false`, client VPN attempts to
6473
- # reconnect automatically. The default value is `false`.
6478
+ # reconnect automatically. The default value is `true`.
6474
6479
  # @return [Boolean]
6475
6480
  #
6476
6481
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnEndpoint AWS API Documentation
@@ -8335,7 +8340,7 @@ module Aws::EC2
8335
8340
  # maximum timeout specified in `SessionTimeoutHours` is reached. If
8336
8341
  # `true`, users are prompted to reconnect client VPN. If `false`,
8337
8342
  # client VPN attempts to reconnect automatically. The default value is
8338
- # `false`.
8343
+ # `true`.
8339
8344
  # @return [Boolean]
8340
8345
  #
8341
8346
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateClientVpnEndpointRequest AWS API Documentation
@@ -11508,6 +11513,40 @@ module Aws::EC2
11508
11513
  # manually delete it when you no longer need it.
11509
11514
  # @return [Boolean]
11510
11515
  #
11516
+ # @!attribute [rw] volume_initialization_rate
11517
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
11518
+ # (volume initialization rate), in MiB/s, at which to download the
11519
+ # snapshot blocks from Amazon S3 to the replacement root volume. This
11520
+ # is also known as *volume initialization*. Specifying a volume
11521
+ # initialization rate ensures that the volume is initialized at a
11522
+ # predictable and consistent rate after creation.
11523
+ #
11524
+ # Omit this parameter if:
11525
+ #
11526
+ # * You want to create the volume using fast snapshot restore. You
11527
+ # must specify a snapshot that is enabled for fast snapshot restore.
11528
+ # In this case, the volume is fully initialized at creation.
11529
+ #
11530
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
11531
+ # restore and a volume initialization rate, the volume will be
11532
+ # initialized at the specified rate instead of fast snapshot
11533
+ # restore.
11534
+ #
11535
+ # </note>
11536
+ #
11537
+ # * You want to create a volume that is initialized at the default
11538
+ # rate.
11539
+ #
11540
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
11541
+ # *Amazon EC2 User Guide*.
11542
+ #
11543
+ # Valid range: 100 - 300 MiB/s
11544
+ #
11545
+ #
11546
+ #
11547
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
11548
+ # @return [Integer]
11549
+ #
11511
11550
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateReplaceRootVolumeTaskRequest AWS API Documentation
11512
11551
  #
11513
11552
  class CreateReplaceRootVolumeTaskRequest < Struct.new(
@@ -11517,7 +11556,8 @@ module Aws::EC2
11517
11556
  :dry_run,
11518
11557
  :tag_specifications,
11519
11558
  :image_id,
11520
- :delete_replaced_root_volume)
11559
+ :delete_replaced_root_volume,
11560
+ :volume_initialization_rate)
11521
11561
  SENSITIVE = []
11522
11562
  include Aws::Structure
11523
11563
  end
@@ -14342,6 +14382,41 @@ module Aws::EC2
14342
14382
  # [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
14343
14383
  # @return [String]
14344
14384
  #
14385
+ # @!attribute [rw] volume_initialization_rate
14386
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
14387
+ # (volume initialization rate), in MiB/s, at which to download the
14388
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
14389
+ # *volume initialization*. Specifying a volume initialization rate
14390
+ # ensures that the volume is initialized at a predictable and
14391
+ # consistent rate after creation.
14392
+ #
14393
+ # This parameter is supported only for volumes created from snapshots.
14394
+ # Omit this parameter if:
14395
+ #
14396
+ # * You want to create the volume using fast snapshot restore. You
14397
+ # must specify a snapshot that is enabled for fast snapshot restore.
14398
+ # In this case, the volume is fully initialized at creation.
14399
+ #
14400
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
14401
+ # restore and a volume initialization rate, the volume will be
14402
+ # initialized at the specified rate instead of fast snapshot
14403
+ # restore.
14404
+ #
14405
+ # </note>
14406
+ #
14407
+ # * You want to create a volume that is initialized at the default
14408
+ # rate.
14409
+ #
14410
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
14411
+ # *Amazon EC2 User Guide*.
14412
+ #
14413
+ # Valid range: 100 - 300 MiB/s
14414
+ #
14415
+ #
14416
+ #
14417
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
14418
+ # @return [Integer]
14419
+ #
14345
14420
  # @!attribute [rw] operator
14346
14421
  # Reserved for internal use.
14347
14422
  # @return [Types::OperatorRequest]
@@ -14368,6 +14443,7 @@ module Aws::EC2
14368
14443
  :multi_attach_enabled,
14369
14444
  :throughput,
14370
14445
  :client_token,
14446
+ :volume_initialization_rate,
14371
14447
  :operator,
14372
14448
  :dry_run)
14373
14449
  SENSITIVE = []
@@ -22823,6 +22899,10 @@ module Aws::EC2
22823
22899
  # Adapter (ENA) is supported or required (`required` \| `supported`
22824
22900
  # \| `unsupported`).
22825
22901
  #
22902
+ # * `network-info.flexible-ena-queues-support` - Indicates whether an
22903
+ # instance supports flexible ENA queues (`supported` \|
22904
+ # `unsupported`).
22905
+ #
22826
22906
  # * `network-info.encryption-in-transit-supported` - Indicates whether
22827
22907
  # the instance type automatically encrypts in-transit traffic
22828
22908
  # between instances (`true` \| `false`).
@@ -33703,6 +33783,44 @@ module Aws::EC2
33703
33783
  # [2]: https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances
33704
33784
  # @return [Boolean]
33705
33785
  #
33786
+ # @!attribute [rw] volume_initialization_rate
33787
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
33788
+ # (volume initialization rate), in MiB/s, at which to download the
33789
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
33790
+ # *volume initialization*. Specifying a volume initialization rate
33791
+ # ensures that the volume is initialized at a predictable and
33792
+ # consistent rate after creation.
33793
+ #
33794
+ # This parameter is supported only for volumes created from snapshots.
33795
+ # Omit this parameter if:
33796
+ #
33797
+ # * You want to create the volume using fast snapshot restore. You
33798
+ # must specify a snapshot that is enabled for fast snapshot restore.
33799
+ # In this case, the volume is fully initialized at creation.
33800
+ #
33801
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
33802
+ # restore and a volume initialization rate, the volume will be
33803
+ # initialized at the specified rate instead of fast snapshot
33804
+ # restore.
33805
+ #
33806
+ # </note>
33807
+ #
33808
+ # * You want to create a volume that is initialized at the default
33809
+ # rate.
33810
+ #
33811
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
33812
+ # *Amazon EC2 User Guide*.
33813
+ #
33814
+ # This parameter is not supported when using [CreateImage][2].
33815
+ #
33816
+ # Valid range: 100 - 300 MiB/s
33817
+ #
33818
+ #
33819
+ #
33820
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
33821
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateImage.html
33822
+ # @return [Integer]
33823
+ #
33706
33824
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsBlockDevice AWS API Documentation
33707
33825
  #
33708
33826
  class EbsBlockDevice < Struct.new(
@@ -33714,7 +33832,8 @@ module Aws::EC2
33714
33832
  :kms_key_id,
33715
33833
  :throughput,
33716
33834
  :outpost_arn,
33717
- :encrypted)
33835
+ :encrypted,
33836
+ :volume_initialization_rate)
33718
33837
  SENSITIVE = []
33719
33838
  include Aws::Structure
33720
33839
  end
@@ -44947,6 +45066,10 @@ module Aws::EC2
44947
45066
  # attached to the instance.
44948
45067
  # @return [Types::InstanceAttachmentEnaSrdSpecification]
44949
45068
  #
45069
+ # @!attribute [rw] ena_queue_count
45070
+ # The number of ENA queues created with the instance.
45071
+ # @return [Integer]
45072
+ #
44950
45073
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceAttachment AWS API Documentation
44951
45074
  #
44952
45075
  class InstanceNetworkInterfaceAttachment < Struct.new(
@@ -44956,7 +45079,8 @@ module Aws::EC2
44956
45079
  :device_index,
44957
45080
  :status,
44958
45081
  :network_card_index,
44959
- :ena_srd_specification)
45082
+ :ena_srd_specification,
45083
+ :ena_queue_count)
44960
45084
  SENSITIVE = []
44961
45085
  include Aws::Structure
44962
45086
  end
@@ -45150,6 +45274,10 @@ module Aws::EC2
45150
45274
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
45151
45275
  # @return [Types::ConnectionTrackingSpecificationRequest]
45152
45276
  #
45277
+ # @!attribute [rw] ena_queue_count
45278
+ # The number of ENA queues to be created with the instance.
45279
+ # @return [Integer]
45280
+ #
45153
45281
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
45154
45282
  #
45155
45283
  class InstanceNetworkInterfaceSpecification < Struct.new(
@@ -45174,7 +45302,8 @@ module Aws::EC2
45174
45302
  :ipv_6_prefix_count,
45175
45303
  :primary_ipv_6,
45176
45304
  :ena_srd_specification,
45177
- :connection_tracking_specification)
45305
+ :connection_tracking_specification,
45306
+ :ena_queue_count)
45178
45307
  SENSITIVE = []
45179
45308
  include Aws::Structure
45180
45309
  end
@@ -49361,6 +49490,12 @@ module Aws::EC2
49361
49490
  # The throughput that the volume supports, in MiB/s.
49362
49491
  # @return [Integer]
49363
49492
  #
49493
+ # @!attribute [rw] volume_initialization_rate
49494
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
49495
+ # initialization rate) specified for the volume, in MiB/s. If no
49496
+ # volume initialization rate was specified, the value is `null`.
49497
+ # @return [Integer]
49498
+ #
49364
49499
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDevice AWS API Documentation
49365
49500
  #
49366
49501
  class LaunchTemplateEbsBlockDevice < Struct.new(
@@ -49371,7 +49506,8 @@ module Aws::EC2
49371
49506
  :snapshot_id,
49372
49507
  :volume_size,
49373
49508
  :volume_type,
49374
- :throughput)
49509
+ :throughput,
49510
+ :volume_initialization_rate)
49375
49511
  SENSITIVE = []
49376
49512
  include Aws::Structure
49377
49513
  end
@@ -49457,6 +49593,41 @@ module Aws::EC2
49457
49593
  # Valid Range: Minimum value of 125. Maximum value of 1000.
49458
49594
  # @return [Integer]
49459
49595
  #
49596
+ # @!attribute [rw] volume_initialization_rate
49597
+ # Specifies the Amazon EBS Provisioned Rate for Volume Initialization
49598
+ # (volume initialization rate), in MiB/s, at which to download the
49599
+ # snapshot blocks from Amazon S3 to the volume. This is also known as
49600
+ # *volume initialization*. Specifying a volume initialization rate
49601
+ # ensures that the volume is initialized at a predictable and
49602
+ # consistent rate after creation.
49603
+ #
49604
+ # This parameter is supported only for volumes created from snapshots.
49605
+ # Omit this parameter if:
49606
+ #
49607
+ # * You want to create the volume using fast snapshot restore. You
49608
+ # must specify a snapshot that is enabled for fast snapshot restore.
49609
+ # In this case, the volume is fully initialized at creation.
49610
+ #
49611
+ # <note markdown="1"> If you specify a snapshot that is enabled for fast snapshot
49612
+ # restore and a volume initialization rate, the volume will be
49613
+ # initialized at the specified rate instead of fast snapshot
49614
+ # restore.
49615
+ #
49616
+ # </note>
49617
+ #
49618
+ # * You want to create a volume that is initialized at the default
49619
+ # rate.
49620
+ #
49621
+ # For more information, see [ Initialize Amazon EBS volumes][1] in the
49622
+ # *Amazon EC2 User Guide*.
49623
+ #
49624
+ # Valid range: 100 - 300 MiB/s
49625
+ #
49626
+ #
49627
+ #
49628
+ # [1]: https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html
49629
+ # @return [Integer]
49630
+ #
49460
49631
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEbsBlockDeviceRequest AWS API Documentation
49461
49632
  #
49462
49633
  class LaunchTemplateEbsBlockDeviceRequest < Struct.new(
@@ -49467,7 +49638,8 @@ module Aws::EC2
49467
49638
  :snapshot_id,
49468
49639
  :volume_size,
49469
49640
  :volume_type,
49470
- :throughput)
49641
+ :throughput,
49642
+ :volume_initialization_rate)
49471
49643
  SENSITIVE = []
49472
49644
  include Aws::Structure
49473
49645
  end
@@ -50061,6 +50233,10 @@ module Aws::EC2
50061
50233
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
50062
50234
  # @return [Types::ConnectionTrackingSpecification]
50063
50235
  #
50236
+ # @!attribute [rw] ena_queue_count
50237
+ # The number of ENA queues created with the instance.
50238
+ # @return [Integer]
50239
+ #
50064
50240
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
50065
50241
  #
50066
50242
  class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
@@ -50085,7 +50261,8 @@ module Aws::EC2
50085
50261
  :ipv_6_prefix_count,
50086
50262
  :primary_ipv_6,
50087
50263
  :ena_srd_specification,
50088
- :connection_tracking_specification)
50264
+ :connection_tracking_specification,
50265
+ :ena_queue_count)
50089
50266
  SENSITIVE = []
50090
50267
  include Aws::Structure
50091
50268
  end
@@ -50252,6 +50429,10 @@ module Aws::EC2
50252
50429
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
50253
50430
  # @return [Types::ConnectionTrackingSpecificationRequest]
50254
50431
  #
50432
+ # @!attribute [rw] ena_queue_count
50433
+ # The number of ENA queues to be created with the instance.
50434
+ # @return [Integer]
50435
+ #
50255
50436
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
50256
50437
  #
50257
50438
  class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
@@ -50276,7 +50457,8 @@ module Aws::EC2
50276
50457
  :ipv_6_prefix_count,
50277
50458
  :primary_ipv_6,
50278
50459
  :ena_srd_specification,
50279
- :connection_tracking_specification)
50460
+ :connection_tracking_specification,
50461
+ :ena_queue_count)
50280
50462
  SENSITIVE = []
50281
50463
  include Aws::Structure
50282
50464
  end
@@ -52422,7 +52604,7 @@ module Aws::EC2
52422
52604
  # maximum timeout specified in `sessionTimeoutHours` is reached. If
52423
52605
  # `true`, users are prompted to reconnect client VPN. If `false`,
52424
52606
  # client VPN attempts to reconnect automatically. The default value is
52425
- # `false`.
52607
+ # `true`.
52426
52608
  # @return [Boolean]
52427
52609
  #
52428
52610
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyClientVpnEndpointRequest AWS API Documentation
@@ -57792,6 +57974,18 @@ module Aws::EC2
57792
57974
  # The peak (burst) network performance of the network card, in Gbps.
57793
57975
  # @return [Float]
57794
57976
  #
57977
+ # @!attribute [rw] default_ena_queue_count_per_interface
57978
+ # The default number of the ENA queues for each interface.
57979
+ # @return [Integer]
57980
+ #
57981
+ # @!attribute [rw] maximum_ena_queue_count
57982
+ # The maximum number of the ENA queues.
57983
+ # @return [Integer]
57984
+ #
57985
+ # @!attribute [rw] maximum_ena_queue_count_per_interface
57986
+ # The maximum number of the ENA queues for each interface.
57987
+ # @return [Integer]
57988
+ #
57795
57989
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkCardInfo AWS API Documentation
57796
57990
  #
57797
57991
  class NetworkCardInfo < Struct.new(
@@ -57799,7 +57993,10 @@ module Aws::EC2
57799
57993
  :network_performance,
57800
57994
  :maximum_network_interfaces,
57801
57995
  :baseline_bandwidth_in_gbps,
57802
- :peak_bandwidth_in_gbps)
57996
+ :peak_bandwidth_in_gbps,
57997
+ :default_ena_queue_count_per_interface,
57998
+ :maximum_ena_queue_count,
57999
+ :maximum_ena_queue_count_per_interface)
57803
58000
  SENSITIVE = []
57804
58001
  include Aws::Structure
57805
58002
  end
@@ -57868,6 +58065,10 @@ module Aws::EC2
57868
58065
  # the instance type, if supported.
57869
58066
  # @return [Array<String>]
57870
58067
  #
58068
+ # @!attribute [rw] flexible_ena_queues_support
58069
+ # Indicates whether changing the number of ENA queues is supported.
58070
+ # @return [String]
58071
+ #
57871
58072
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInfo AWS API Documentation
57872
58073
  #
57873
58074
  class NetworkInfo < Struct.new(
@@ -57884,7 +58085,8 @@ module Aws::EC2
57884
58085
  :efa_info,
57885
58086
  :encryption_in_transit_supported,
57886
58087
  :ena_srd_supported,
57887
- :bandwidth_weightings)
58088
+ :bandwidth_weightings,
58089
+ :flexible_ena_queues_support)
57888
58090
  SENSITIVE = []
57889
58091
  include Aws::Structure
57890
58092
  end
@@ -58035,6 +58237,11 @@ module Aws::EC2
58035
58237
  # traverse.
58036
58238
  # @return [Array<String>]
58037
58239
  #
58240
+ # @!attribute [rw] filter_out_arns
58241
+ # The Amazon Resource Names (ARN) of the resources that the path must
58242
+ # ignore.
58243
+ # @return [Array<String>]
58244
+ #
58038
58245
  # @!attribute [rw] start_date
58039
58246
  # The time the analysis started.
58040
58247
  # @return [Time]
@@ -58092,6 +58299,7 @@ module Aws::EC2
58092
58299
  :network_insights_path_id,
58093
58300
  :additional_accounts,
58094
58301
  :filter_in_arns,
58302
+ :filter_out_arns,
58095
58303
  :start_date,
58096
58304
  :status,
58097
58305
  :status_message,
@@ -58445,6 +58653,10 @@ module Aws::EC2
58445
58653
  # attaches to the instance.
58446
58654
  # @return [Types::AttachmentEnaSrdSpecification]
58447
58655
  #
58656
+ # @!attribute [rw] ena_queue_count
58657
+ # The number of ENA queues created with the instance.
58658
+ # @return [Integer]
58659
+ #
58448
58660
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachment AWS API Documentation
58449
58661
  #
58450
58662
  class NetworkInterfaceAttachment < Struct.new(
@@ -58456,13 +58668,22 @@ module Aws::EC2
58456
58668
  :instance_id,
58457
58669
  :instance_owner_id,
58458
58670
  :status,
58459
- :ena_srd_specification)
58671
+ :ena_srd_specification,
58672
+ :ena_queue_count)
58460
58673
  SENSITIVE = []
58461
58674
  include Aws::Structure
58462
58675
  end
58463
58676
 
58464
58677
  # Describes an attachment change.
58465
58678
  #
58679
+ # @!attribute [rw] default_ena_queue_count
58680
+ # The default number of the ENA queues.
58681
+ # @return [Boolean]
58682
+ #
58683
+ # @!attribute [rw] ena_queue_count
58684
+ # The number of ENA queues to be created with the instance.
58685
+ # @return [Integer]
58686
+ #
58466
58687
  # @!attribute [rw] attachment_id
58467
58688
  # The ID of the network interface attachment.
58468
58689
  # @return [String]
@@ -58475,6 +58696,8 @@ module Aws::EC2
58475
58696
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachmentChanges AWS API Documentation
58476
58697
  #
58477
58698
  class NetworkInterfaceAttachmentChanges < Struct.new(
58699
+ :default_ena_queue_count,
58700
+ :ena_queue_count,
58478
58701
  :attachment_id,
58479
58702
  :delete_on_termination)
58480
58703
  SENSITIVE = []
@@ -70223,6 +70446,11 @@ module Aws::EC2
70223
70446
  # traverse.
70224
70447
  # @return [Array<String>]
70225
70448
  #
70449
+ # @!attribute [rw] filter_out_arns
70450
+ # The Amazon Resource Names (ARN) of the resources that the path will
70451
+ # ignore.
70452
+ # @return [Array<String>]
70453
+ #
70226
70454
  # @!attribute [rw] dry_run
70227
70455
  # Checks whether you have the required permissions for the action,
70228
70456
  # without actually making the request, and provides an error response.
@@ -70253,6 +70481,7 @@ module Aws::EC2
70253
70481
  :network_insights_path_id,
70254
70482
  :additional_accounts,
70255
70483
  :filter_in_arns,
70484
+ :filter_out_arns,
70256
70485
  :dry_run,
70257
70486
  :tag_specifications,
70258
70487
  :client_token)
@@ -75092,6 +75321,13 @@ module Aws::EC2
75092
75321
  # The service provider that manages the volume.
75093
75322
  # @return [Types::OperatorResponse]
75094
75323
  #
75324
+ # @!attribute [rw] volume_initialization_rate
75325
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
75326
+ # initialization rate) specified for the volume during creation, in
75327
+ # MiB/s. If no volume initialization rate was specified, the value is
75328
+ # `null`.
75329
+ # @return [Integer]
75330
+ #
75095
75331
  # @!attribute [rw] volume_id
75096
75332
  # The ID of the volume.
75097
75333
  # @return [String]
@@ -75145,6 +75381,7 @@ module Aws::EC2
75145
75381
  :throughput,
75146
75382
  :sse_type,
75147
75383
  :operator,
75384
+ :volume_initialization_rate,
75148
75385
  :volume_id,
75149
75386
  :size,
75150
75387
  :snapshot_id,
@@ -101,6 +101,15 @@ module Aws::EC2
101
101
  data[:operator]
102
102
  end
103
103
 
104
+ # The Amazon EBS Provisioned Rate for Volume Initialization (volume
105
+ # initialization rate) specified for the volume during creation, in
106
+ # MiB/s. If no volume initialization rate was specified, the value is
107
+ # `null`.
108
+ # @return [Integer]
109
+ def volume_initialization_rate
110
+ data[:volume_initialization_rate]
111
+ end
112
+
104
113
  # The size of the volume, in GiBs.
105
114
  # @return [Integer]
106
115
  def size
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.519.0'
81
+ GEM_VERSION = '1.522.0'
82
82
 
83
83
  end
84
84