aws-sdk-ec2 1.351.0 → 1.352.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.
@@ -289,7 +289,7 @@ module Aws::EC2
289
289
  end
290
290
 
291
291
  # @!attribute [rw] associations
292
- # Describes the multicast domain associations.
292
+ # Information about the multicast domain associations.
293
293
  # @return [Types::TransitGatewayMulticastDomainAssociations]
294
294
  #
295
295
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptTransitGatewayMulticastDomainAssociationsResult AWS API Documentation
@@ -432,7 +432,7 @@ module Aws::EC2
432
432
  #
433
433
  # {
434
434
  # dry_run: false,
435
- # vpc_peering_connection_id: "VpcPeeringConnectionId",
435
+ # vpc_peering_connection_id: "VpcPeeringConnectionIdWithResolver",
436
436
  # }
437
437
  #
438
438
  # @!attribute [rw] dry_run
@@ -2936,6 +2936,12 @@ module Aws::EC2
2936
2936
  # instance_id: "InstanceId", # required
2937
2937
  # network_interface_id: "NetworkInterfaceId", # required
2938
2938
  # network_card_index: 1,
2939
+ # ena_srd_specification: {
2940
+ # ena_srd_enabled: false,
2941
+ # ena_srd_udp_specification: {
2942
+ # ena_srd_udp_enabled: false,
2943
+ # },
2944
+ # },
2939
2945
  # }
2940
2946
  #
2941
2947
  # @!attribute [rw] device_index
@@ -2963,6 +2969,11 @@ module Aws::EC2
2963
2969
  # network card index 0. The default is network card index 0.
2964
2970
  # @return [Integer]
2965
2971
  #
2972
+ # @!attribute [rw] ena_srd_specification
2973
+ # Configures ENA Express for the network interface that this action
2974
+ # attaches to the instance.
2975
+ # @return [Types::EnaSrdSpecification]
2976
+ #
2966
2977
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachNetworkInterfaceRequest AWS API Documentation
2967
2978
  #
2968
2979
  class AttachNetworkInterfaceRequest < Struct.new(
@@ -2970,7 +2981,8 @@ module Aws::EC2
2970
2981
  :dry_run,
2971
2982
  :instance_id,
2972
2983
  :network_interface_id,
2973
- :network_card_index)
2984
+ :network_card_index,
2985
+ :ena_srd_specification)
2974
2986
  SENSITIVE = []
2975
2987
  include Aws::Structure
2976
2988
  end
@@ -3085,6 +3097,43 @@ module Aws::EC2
3085
3097
  include Aws::Structure
3086
3098
  end
3087
3099
 
3100
+ # Describes the ENA Express configuration for the network interface
3101
+ # that's attached to the instance.
3102
+ #
3103
+ # @!attribute [rw] ena_srd_enabled
3104
+ # Indicates whether ENA Express is enabled for the network interface
3105
+ # that's attached to the instance.
3106
+ # @return [Boolean]
3107
+ #
3108
+ # @!attribute [rw] ena_srd_udp_specification
3109
+ # ENA Express configuration for UDP network traffic.
3110
+ # @return [Types::AttachmentEnaSrdUdpSpecification]
3111
+ #
3112
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachmentEnaSrdSpecification AWS API Documentation
3113
+ #
3114
+ class AttachmentEnaSrdSpecification < Struct.new(
3115
+ :ena_srd_enabled,
3116
+ :ena_srd_udp_specification)
3117
+ SENSITIVE = []
3118
+ include Aws::Structure
3119
+ end
3120
+
3121
+ # Describes the ENA Express configuration for UDP traffic on the network
3122
+ # interface that's attached to the instance.
3123
+ #
3124
+ # @!attribute [rw] ena_srd_udp_enabled
3125
+ # Indicates whether UDP traffic to and from the instance uses ENA
3126
+ # Express. To specify this setting, you must first enable ENA Express.
3127
+ # @return [Boolean]
3128
+ #
3129
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachmentEnaSrdUdpSpecification AWS API Documentation
3130
+ #
3131
+ class AttachmentEnaSrdUdpSpecification < Struct.new(
3132
+ :ena_srd_udp_enabled)
3133
+ SENSITIVE = []
3134
+ include Aws::Structure
3135
+ end
3136
+
3088
3137
  # Describes a value for a resource attribute that is a Boolean value.
3089
3138
  #
3090
3139
  # @note When making an API call, you may pass AttributeBooleanValue
@@ -7793,7 +7842,7 @@ module Aws::EC2
7793
7842
  end
7794
7843
 
7795
7844
  # @!attribute [rw] coip_pool
7796
- # Describes a customer-owned address pool.
7845
+ # Information about the CoIP address pool.
7797
7846
  # @return [Types::CoipPool]
7798
7847
  #
7799
7848
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCoipPoolResult AWS API Documentation
@@ -10322,7 +10371,7 @@ module Aws::EC2
10322
10371
  end
10323
10372
 
10324
10373
  # @!attribute [rw] local_gateway_route_table
10325
- # Describes a local gateway route table.
10374
+ # Information about the local gateway route table.
10326
10375
  # @return [Types::LocalGatewayRouteTable]
10327
10376
  #
10328
10377
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteTableResult AWS API Documentation
@@ -10386,8 +10435,8 @@ module Aws::EC2
10386
10435
  end
10387
10436
 
10388
10437
  # @!attribute [rw] local_gateway_route_table_virtual_interface_group_association
10389
- # Describes an association between a local gateway route table and a
10390
- # virtual interface group.
10438
+ # Information about the local gateway route table virtual interface
10439
+ # group association.
10391
10440
  # @return [Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation]
10392
10441
  #
10393
10442
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult AWS API Documentation
@@ -15123,6 +15172,118 @@ module Aws::EC2
15123
15172
  include Aws::Structure
15124
15173
  end
15125
15174
 
15175
+ # A query used for retrieving network health data.
15176
+ #
15177
+ # @note When making an API call, you may pass DataQuery
15178
+ # data as a hash:
15179
+ #
15180
+ # {
15181
+ # id: "String",
15182
+ # source: "String",
15183
+ # destination: "String",
15184
+ # metric: "aggregate-latency", # accepts aggregate-latency
15185
+ # statistic: "p50", # accepts p50
15186
+ # period: "five-minutes", # accepts five-minutes, fifteen-minutes, one-hour, three-hours, one-day, one-week
15187
+ # }
15188
+ #
15189
+ # @!attribute [rw] id
15190
+ # A user-defined ID associated with a data query that's returned in
15191
+ # the `dataResponse` identifying the query. For example, if you set
15192
+ # the Id to `MyQuery01`in the query, the `dataResponse` identifies the
15193
+ # query as `MyQuery01`.
15194
+ # @return [String]
15195
+ #
15196
+ # @!attribute [rw] source
15197
+ # The Region or Availability Zone that's the source for the data
15198
+ # query. For example, `us-east-1`.
15199
+ # @return [String]
15200
+ #
15201
+ # @!attribute [rw] destination
15202
+ # The Region or Availability Zone that's the target for the data
15203
+ # query. For example, `eu-north-1`.
15204
+ # @return [String]
15205
+ #
15206
+ # @!attribute [rw] metric
15207
+ # The aggregation metric used for the data query. Currently only
15208
+ # `aggregation-latency` is supported, indicating network latency.
15209
+ # @return [String]
15210
+ #
15211
+ # @!attribute [rw] statistic
15212
+ # Metric data aggregations over specified periods of time. The
15213
+ # following are the supported Infrastructure Performance statistics:
15214
+ #
15215
+ # * `p50` - The median value of the metric aggregated over a specified
15216
+ # start and end time. For example, a metric of `five_minutes` is the
15217
+ # median of all the data points gathered within those five minutes.
15218
+ #
15219
+ # ^
15220
+ # @return [String]
15221
+ #
15222
+ # @!attribute [rw] period
15223
+ # The aggregation period used for the data query.
15224
+ # @return [String]
15225
+ #
15226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DataQuery AWS API Documentation
15227
+ #
15228
+ class DataQuery < Struct.new(
15229
+ :id,
15230
+ :source,
15231
+ :destination,
15232
+ :metric,
15233
+ :statistic,
15234
+ :period)
15235
+ SENSITIVE = []
15236
+ include Aws::Structure
15237
+ end
15238
+
15239
+ # The response to a `DataQuery`.
15240
+ #
15241
+ # @!attribute [rw] id
15242
+ # The ID passed in the `DataQuery`.
15243
+ # @return [String]
15244
+ #
15245
+ # @!attribute [rw] source
15246
+ # The Region or Availability Zone that's the source for the data
15247
+ # query. For example, `us-east-1`.
15248
+ # @return [String]
15249
+ #
15250
+ # @!attribute [rw] destination
15251
+ # The Region or Availability Zone that's the destination for the data
15252
+ # query. For example, `eu-west-1`.
15253
+ # @return [String]
15254
+ #
15255
+ # @!attribute [rw] metric
15256
+ # The metric used for the network performance request. Currently only
15257
+ # `aggregate-latency` is supported, showing network latency during a
15258
+ # specified period.
15259
+ # @return [String]
15260
+ #
15261
+ # @!attribute [rw] statistic
15262
+ # The statistic used for the network performance request.
15263
+ # @return [String]
15264
+ #
15265
+ # @!attribute [rw] period
15266
+ # The period used for the network performance request.
15267
+ # @return [String]
15268
+ #
15269
+ # @!attribute [rw] metric_points
15270
+ # A list of `MetricPoint` objects.
15271
+ # @return [Array<Types::MetricPoint>]
15272
+ #
15273
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DataResponse AWS API Documentation
15274
+ #
15275
+ class DataResponse < Struct.new(
15276
+ :id,
15277
+ :source,
15278
+ :destination,
15279
+ :metric,
15280
+ :statistic,
15281
+ :period,
15282
+ :metric_points)
15283
+ SENSITIVE = []
15284
+ include Aws::Structure
15285
+ end
15286
+
15126
15287
  # @note When making an API call, you may pass DeleteCarrierGatewayRequest
15127
15288
  # data as a hash:
15128
15289
  #
@@ -15332,7 +15493,7 @@ module Aws::EC2
15332
15493
  end
15333
15494
 
15334
15495
  # @!attribute [rw] coip_pool
15335
- # Describes a customer-owned address pool.
15496
+ # Information about the CoIP address pool.
15336
15497
  # @return [Types::CoipPool]
15337
15498
  #
15338
15499
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCoipPoolResult AWS API Documentation
@@ -16150,7 +16311,7 @@ module Aws::EC2
16150
16311
  end
16151
16312
 
16152
16313
  # @!attribute [rw] local_gateway_route_table
16153
- # Describes a local gateway route table.
16314
+ # Information about the local gateway route table.
16154
16315
  # @return [Types::LocalGatewayRouteTable]
16155
16316
  #
16156
16317
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteTableResult AWS API Documentation
@@ -16191,8 +16352,7 @@ module Aws::EC2
16191
16352
  end
16192
16353
 
16193
16354
  # @!attribute [rw] local_gateway_route_table_virtual_interface_group_association
16194
- # Describes an association between a local gateway route table and a
16195
- # virtual interface group.
16355
+ # Information about the association.
16196
16356
  # @return [Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation]
16197
16357
  #
16198
16358
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult AWS API Documentation
@@ -18730,6 +18890,71 @@ module Aws::EC2
18730
18890
  include Aws::Structure
18731
18891
  end
18732
18892
 
18893
+ # @note When making an API call, you may pass DescribeAwsNetworkPerformanceMetricSubscriptionsRequest
18894
+ # data as a hash:
18895
+ #
18896
+ # {
18897
+ # max_results: 1,
18898
+ # next_token: "String",
18899
+ # filters: [
18900
+ # {
18901
+ # name: "String",
18902
+ # values: ["String"],
18903
+ # },
18904
+ # ],
18905
+ # dry_run: false,
18906
+ # }
18907
+ #
18908
+ # @!attribute [rw] max_results
18909
+ # The maximum number of results to return with a single call. To
18910
+ # retrieve the remaining results, make another call with the returned
18911
+ # `nextToken` value.
18912
+ # @return [Integer]
18913
+ #
18914
+ # @!attribute [rw] next_token
18915
+ # The token for the next page of results.
18916
+ # @return [String]
18917
+ #
18918
+ # @!attribute [rw] filters
18919
+ # One or more filters.
18920
+ # @return [Array<Types::Filter>]
18921
+ #
18922
+ # @!attribute [rw] dry_run
18923
+ # Checks whether you have the required permissions for the action,
18924
+ # without actually making the request, and provides an error response.
18925
+ # If you have the required permissions, the error response is
18926
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
18927
+ # @return [Boolean]
18928
+ #
18929
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAwsNetworkPerformanceMetricSubscriptionsRequest AWS API Documentation
18930
+ #
18931
+ class DescribeAwsNetworkPerformanceMetricSubscriptionsRequest < Struct.new(
18932
+ :max_results,
18933
+ :next_token,
18934
+ :filters,
18935
+ :dry_run)
18936
+ SENSITIVE = []
18937
+ include Aws::Structure
18938
+ end
18939
+
18940
+ # @!attribute [rw] next_token
18941
+ # The token to use to retrieve the next page of results. This value is
18942
+ # `null` when there are no more results to return.
18943
+ # @return [String]
18944
+ #
18945
+ # @!attribute [rw] subscriptions
18946
+ # Describes the current Infrastructure Performance subscriptions.
18947
+ # @return [Array<Types::Subscription>]
18948
+ #
18949
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAwsNetworkPerformanceMetricSubscriptionsResult AWS API Documentation
18950
+ #
18951
+ class DescribeAwsNetworkPerformanceMetricSubscriptionsResult < Struct.new(
18952
+ :next_token,
18953
+ :subscriptions)
18954
+ SENSITIVE = []
18955
+ include Aws::Structure
18956
+ end
18957
+
18733
18958
  # @note When making an API call, you may pass DescribeBundleTasksRequest
18734
18959
  # data as a hash:
18735
18960
  #
@@ -30296,9 +30521,13 @@ module Aws::EC2
30296
30521
  # @!attribute [rw] filters
30297
30522
  # One or more filters.
30298
30523
  #
30524
+ # * `owner` - The ID or alias of the Amazon Web Services account that
30525
+ # owns the service.
30526
+ #
30299
30527
  # * `service-name` - The name of the service.
30300
30528
  #
30301
- # * `service-type` - The type of service (`Interface` \| `Gateway`).
30529
+ # * `service-type` - The type of service (`Interface` \| `Gateway` \|
30530
+ # `GatewayLoadBalancer`).
30302
30531
  #
30303
30532
  # * `supported-ip-address-types` - The IP address type (`ipv4` \|
30304
30533
  # `ipv6`).
@@ -30401,6 +30630,16 @@ module Aws::EC2
30401
30630
  #
30402
30631
  # * `service-name` - The name of the service.
30403
30632
  #
30633
+ # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
30634
+ # to the resource. Use the tag key in the filter name and the tag
30635
+ # value as the filter value. For example, to find all resources that
30636
+ # have a tag with the key `Owner` and the value `TeamA`, specify
30637
+ # `tag:Owner` for the filter name and `TeamA` for the filter value.
30638
+ #
30639
+ # * `tag-key` - The key of a tag assigned to the resource. Use this
30640
+ # filter to find all resources assigned a tag with a specific key,
30641
+ # regardless of the tag value.
30642
+ #
30404
30643
  # * `vpc-id` - The ID of the VPC in which the endpoint resides.
30405
30644
  #
30406
30645
  # * `vpc-endpoint-id` - The ID of the endpoint.
@@ -30411,16 +30650,6 @@ module Aws::EC2
30411
30650
  #
30412
30651
  # * `vpc-endpoint-type` - The type of VPC endpoint (`Interface` \|
30413
30652
  # `Gateway` \| `GatewayLoadBalancer`).
30414
- #
30415
- # * `tag`\:&lt;key&gt; - The key/value combination of a tag assigned
30416
- # to the resource. Use the tag key in the filter name and the tag
30417
- # value as the filter value. For example, to find all resources that
30418
- # have a tag with the key `Owner` and the value `TeamA`, specify
30419
- # `tag:Owner` for the filter name and `TeamA` for the filter value.
30420
- #
30421
- # * `tag-key` - The key of a tag assigned to the resource. Use this
30422
- # filter to find all resources assigned a tag with a specific key,
30423
- # regardless of the tag value.
30424
30653
  # @return [Array<Types::Filter>]
30425
30654
  #
30426
30655
  # @!attribute [rw] max_results
@@ -31296,6 +31525,66 @@ module Aws::EC2
31296
31525
  include Aws::Structure
31297
31526
  end
31298
31527
 
31528
+ # @note When making an API call, you may pass DisableAwsNetworkPerformanceMetricSubscriptionRequest
31529
+ # data as a hash:
31530
+ #
31531
+ # {
31532
+ # source: "String",
31533
+ # destination: "String",
31534
+ # metric: "aggregate-latency", # accepts aggregate-latency
31535
+ # statistic: "p50", # accepts p50
31536
+ # dry_run: false,
31537
+ # }
31538
+ #
31539
+ # @!attribute [rw] source
31540
+ # The source Region or Availability Zone that the metric subscription
31541
+ # is disabled for. For example, `us-east-1`.
31542
+ # @return [String]
31543
+ #
31544
+ # @!attribute [rw] destination
31545
+ # The target Region or Availability Zone that the metric subscription
31546
+ # is disabled for. For example, `eu-north-1`.
31547
+ # @return [String]
31548
+ #
31549
+ # @!attribute [rw] metric
31550
+ # The metric used for the disabled subscription.
31551
+ # @return [String]
31552
+ #
31553
+ # @!attribute [rw] statistic
31554
+ # The statistic used for the disabled subscription.
31555
+ # @return [String]
31556
+ #
31557
+ # @!attribute [rw] dry_run
31558
+ # Checks whether you have the required permissions for the action,
31559
+ # without actually making the request, and provides an error response.
31560
+ # If you have the required permissions, the error response is
31561
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
31562
+ # @return [Boolean]
31563
+ #
31564
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableAwsNetworkPerformanceMetricSubscriptionRequest AWS API Documentation
31565
+ #
31566
+ class DisableAwsNetworkPerformanceMetricSubscriptionRequest < Struct.new(
31567
+ :source,
31568
+ :destination,
31569
+ :metric,
31570
+ :statistic,
31571
+ :dry_run)
31572
+ SENSITIVE = []
31573
+ include Aws::Structure
31574
+ end
31575
+
31576
+ # @!attribute [rw] output
31577
+ # Indicates whether the unsubscribe action was successful.
31578
+ # @return [Boolean]
31579
+ #
31580
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableAwsNetworkPerformanceMetricSubscriptionResult AWS API Documentation
31581
+ #
31582
+ class DisableAwsNetworkPerformanceMetricSubscriptionResult < Struct.new(
31583
+ :output)
31584
+ SENSITIVE = []
31585
+ include Aws::Structure
31586
+ end
31587
+
31299
31588
  # @note When making an API call, you may pass DisableEbsEncryptionByDefaultRequest
31300
31589
  # data as a hash:
31301
31590
  #
@@ -33226,6 +33515,75 @@ module Aws::EC2
33226
33515
  include Aws::Structure
33227
33516
  end
33228
33517
 
33518
+ # ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD)
33519
+ # technology to increase the maximum bandwidth used per stream and
33520
+ # minimize tail latency of network traffic between EC2 instances. With
33521
+ # ENA Express, you can communicate between two EC2 instances in the same
33522
+ # subnet within the same account, or in different accounts. Both sending
33523
+ # and receiving instances must have ENA Express enabled.
33524
+ #
33525
+ # To improve the reliability of network packet delivery, ENA Express
33526
+ # reorders network packets on the receiving end by default. However,
33527
+ # some UDP-based applications are designed to handle network packets
33528
+ # that are out of order to reduce the overhead for packet delivery at
33529
+ # the network layer. When ENA Express is enabled, you can specify
33530
+ # whether UDP network traffic uses it.
33531
+ #
33532
+ # @note When making an API call, you may pass EnaSrdSpecification
33533
+ # data as a hash:
33534
+ #
33535
+ # {
33536
+ # ena_srd_enabled: false,
33537
+ # ena_srd_udp_specification: {
33538
+ # ena_srd_udp_enabled: false,
33539
+ # },
33540
+ # }
33541
+ #
33542
+ # @!attribute [rw] ena_srd_enabled
33543
+ # Indicates whether ENA Express is enabled for the network interface.
33544
+ # @return [Boolean]
33545
+ #
33546
+ # @!attribute [rw] ena_srd_udp_specification
33547
+ # Configures ENA Express for UDP network traffic.
33548
+ # @return [Types::EnaSrdUdpSpecification]
33549
+ #
33550
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdSpecification AWS API Documentation
33551
+ #
33552
+ class EnaSrdSpecification < Struct.new(
33553
+ :ena_srd_enabled,
33554
+ :ena_srd_udp_specification)
33555
+ SENSITIVE = []
33556
+ include Aws::Structure
33557
+ end
33558
+
33559
+ # ENA Express is compatible with both TCP and UDP transport protocols.
33560
+ # When it’s enabled, TCP traffic automatically uses it. However, some
33561
+ # UDP-based applications are designed to handle network packets that are
33562
+ # out of order, without a need for retransmission, such as live video
33563
+ # broadcasting or other near-real-time applications. For UDP traffic,
33564
+ # you can specify whether to use ENA Express, based on your application
33565
+ # environment needs.
33566
+ #
33567
+ # @note When making an API call, you may pass EnaSrdUdpSpecification
33568
+ # data as a hash:
33569
+ #
33570
+ # {
33571
+ # ena_srd_udp_enabled: false,
33572
+ # }
33573
+ #
33574
+ # @!attribute [rw] ena_srd_udp_enabled
33575
+ # Indicates whether UDP traffic uses ENA Express. To specify this
33576
+ # setting, you must first enable ENA Express.
33577
+ # @return [Boolean]
33578
+ #
33579
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdUdpSpecification AWS API Documentation
33580
+ #
33581
+ class EnaSrdUdpSpecification < Struct.new(
33582
+ :ena_srd_udp_enabled)
33583
+ SENSITIVE = []
33584
+ include Aws::Structure
33585
+ end
33586
+
33229
33587
  # @note When making an API call, you may pass EnableAddressTransferRequest
33230
33588
  # data as a hash:
33231
33589
  #
@@ -33273,6 +33631,66 @@ module Aws::EC2
33273
33631
  include Aws::Structure
33274
33632
  end
33275
33633
 
33634
+ # @note When making an API call, you may pass EnableAwsNetworkPerformanceMetricSubscriptionRequest
33635
+ # data as a hash:
33636
+ #
33637
+ # {
33638
+ # source: "String",
33639
+ # destination: "String",
33640
+ # metric: "aggregate-latency", # accepts aggregate-latency
33641
+ # statistic: "p50", # accepts p50
33642
+ # dry_run: false,
33643
+ # }
33644
+ #
33645
+ # @!attribute [rw] source
33646
+ # The source Region or Availability Zone that the metric subscription
33647
+ # is enabled for. For example, `us-east-1`.
33648
+ # @return [String]
33649
+ #
33650
+ # @!attribute [rw] destination
33651
+ # The target Region or Availability Zone that the metric subscription
33652
+ # is enabled for. For example, `eu-west-1`.
33653
+ # @return [String]
33654
+ #
33655
+ # @!attribute [rw] metric
33656
+ # The metric used for the enabled subscription.
33657
+ # @return [String]
33658
+ #
33659
+ # @!attribute [rw] statistic
33660
+ # The statistic used for the enabled subscription.
33661
+ # @return [String]
33662
+ #
33663
+ # @!attribute [rw] dry_run
33664
+ # Checks whether you have the required permissions for the action,
33665
+ # without actually making the request, and provides an error response.
33666
+ # If you have the required permissions, the error response is
33667
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
33668
+ # @return [Boolean]
33669
+ #
33670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableAwsNetworkPerformanceMetricSubscriptionRequest AWS API Documentation
33671
+ #
33672
+ class EnableAwsNetworkPerformanceMetricSubscriptionRequest < Struct.new(
33673
+ :source,
33674
+ :destination,
33675
+ :metric,
33676
+ :statistic,
33677
+ :dry_run)
33678
+ SENSITIVE = []
33679
+ include Aws::Structure
33680
+ end
33681
+
33682
+ # @!attribute [rw] output
33683
+ # Indicates whether the subscribe action was successful.
33684
+ # @return [Boolean]
33685
+ #
33686
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableAwsNetworkPerformanceMetricSubscriptionResult AWS API Documentation
33687
+ #
33688
+ class EnableAwsNetworkPerformanceMetricSubscriptionResult < Struct.new(
33689
+ :output)
33690
+ SENSITIVE = []
33691
+ include Aws::Structure
33692
+ end
33693
+
33276
33694
  # @note When making an API call, you may pass EnableEbsEncryptionByDefaultRequest
33277
33695
  # data as a hash:
33278
33696
  #
@@ -33721,6 +34139,35 @@ module Aws::EC2
33721
34139
  include Aws::Structure
33722
34140
  end
33723
34141
 
34142
+ # @note When making an API call, you may pass EnableReachabilityAnalyzerOrganizationSharingRequest
34143
+ # data as a hash:
34144
+ #
34145
+ # {
34146
+ # dry_run: false,
34147
+ # }
34148
+ #
34149
+ # @!attribute [rw] dry_run
34150
+ # @return [Boolean]
34151
+ #
34152
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableReachabilityAnalyzerOrganizationSharingRequest AWS API Documentation
34153
+ #
34154
+ class EnableReachabilityAnalyzerOrganizationSharingRequest < Struct.new(
34155
+ :dry_run)
34156
+ SENSITIVE = []
34157
+ include Aws::Structure
34158
+ end
34159
+
34160
+ # @!attribute [rw] return_value
34161
+ # @return [Boolean]
34162
+ #
34163
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableReachabilityAnalyzerOrganizationSharingResult AWS API Documentation
34164
+ #
34165
+ class EnableReachabilityAnalyzerOrganizationSharingResult < Struct.new(
34166
+ :return_value)
34167
+ SENSITIVE = []
34168
+ include Aws::Structure
34169
+ end
34170
+
33724
34171
  # @note When making an API call, you may pass EnableSerialConsoleAccessRequest
33725
34172
  # data as a hash:
33726
34173
  #
@@ -36460,6 +36907,91 @@ module Aws::EC2
36460
36907
  include Aws::Structure
36461
36908
  end
36462
36909
 
36910
+ # @note When making an API call, you may pass GetAwsNetworkPerformanceDataRequest
36911
+ # data as a hash:
36912
+ #
36913
+ # {
36914
+ # data_queries: [
36915
+ # {
36916
+ # id: "String",
36917
+ # source: "String",
36918
+ # destination: "String",
36919
+ # metric: "aggregate-latency", # accepts aggregate-latency
36920
+ # statistic: "p50", # accepts p50
36921
+ # period: "five-minutes", # accepts five-minutes, fifteen-minutes, one-hour, three-hours, one-day, one-week
36922
+ # },
36923
+ # ],
36924
+ # start_time: Time.now,
36925
+ # end_time: Time.now,
36926
+ # max_results: 1,
36927
+ # next_token: "String",
36928
+ # dry_run: false,
36929
+ # }
36930
+ #
36931
+ # @!attribute [rw] data_queries
36932
+ # A list of network performance data queries.
36933
+ # @return [Array<Types::DataQuery>]
36934
+ #
36935
+ # @!attribute [rw] start_time
36936
+ # The starting time for the performance data request. The starting
36937
+ # time must be formatted as `yyyy-mm-ddThh:mm:ss`. For example,
36938
+ # `2022-06-10T12:00:00.000Z`.
36939
+ # @return [Time]
36940
+ #
36941
+ # @!attribute [rw] end_time
36942
+ # The ending time for the performance data request. The end time must
36943
+ # be formatted as `yyyy-mm-ddThh:mm:ss`. For example,
36944
+ # `2022-06-12T12:00:00.000Z`.
36945
+ # @return [Time]
36946
+ #
36947
+ # @!attribute [rw] max_results
36948
+ # The maximum number of results to return with a single call. To
36949
+ # retrieve the remaining results, make another call with the returned
36950
+ # `nextToken` value.
36951
+ # @return [Integer]
36952
+ #
36953
+ # @!attribute [rw] next_token
36954
+ # The token for the next page of results.
36955
+ # @return [String]
36956
+ #
36957
+ # @!attribute [rw] dry_run
36958
+ # Checks whether you have the required permissions for the action,
36959
+ # without actually making the request, and provides an error response.
36960
+ # If you have the required permissions, the error response is
36961
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
36962
+ # @return [Boolean]
36963
+ #
36964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAwsNetworkPerformanceDataRequest AWS API Documentation
36965
+ #
36966
+ class GetAwsNetworkPerformanceDataRequest < Struct.new(
36967
+ :data_queries,
36968
+ :start_time,
36969
+ :end_time,
36970
+ :max_results,
36971
+ :next_token,
36972
+ :dry_run)
36973
+ SENSITIVE = []
36974
+ include Aws::Structure
36975
+ end
36976
+
36977
+ # @!attribute [rw] data_responses
36978
+ # The list of data responses.
36979
+ # @return [Array<Types::DataResponse>]
36980
+ #
36981
+ # @!attribute [rw] next_token
36982
+ # The token to use to retrieve the next page of results. This value is
36983
+ # `null` when there are no more results to return.
36984
+ # @return [String]
36985
+ #
36986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetAwsNetworkPerformanceDataResult AWS API Documentation
36987
+ #
36988
+ class GetAwsNetworkPerformanceDataResult < Struct.new(
36989
+ :data_responses,
36990
+ :next_token)
36991
+ SENSITIVE = []
36992
+ include Aws::Structure
36993
+ end
36994
+
36463
36995
  # @note When making an API call, you may pass GetCapacityReservationUsageRequest
36464
36996
  # data as a hash:
36465
36997
  #
@@ -48274,7 +48806,7 @@ module Aws::EC2
48274
48806
  # @return [String]
48275
48807
  #
48276
48808
  # @!attribute [rw] state_reason
48277
- # Describes a state change.
48809
+ # Information about the state change.
48278
48810
  # @return [Types::StateReason]
48279
48811
  #
48280
48812
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTable AWS API Documentation
@@ -48677,6 +49209,39 @@ module Aws::EC2
48677
49209
  include Aws::Structure
48678
49210
  end
48679
49211
 
49212
+ # Indicates whether the network was healthy or unhealthy at a particular
49213
+ # point. The value is aggregated from the `startDate` to the `endDate`.
49214
+ # Currently only `five_minutes` is supported.
49215
+ #
49216
+ # @!attribute [rw] start_date
49217
+ # The start date for the metric point. The starting date for the
49218
+ # metric point. The starting time must be formatted as
49219
+ # `yyyy-mm-ddThh:mm:ss`. For example, `2022-06-10T12:00:00.000Z`.
49220
+ # @return [Time]
49221
+ #
49222
+ # @!attribute [rw] end_date
49223
+ # The end date for the metric point. The ending time must be formatted
49224
+ # as `yyyy-mm-ddThh:mm:ss`. For example, `2022-06-12T12:00:00.000Z`.
49225
+ # @return [Time]
49226
+ #
49227
+ # @!attribute [rw] value
49228
+ # @return [Float]
49229
+ #
49230
+ # @!attribute [rw] status
49231
+ # The status of the metric point.
49232
+ # @return [String]
49233
+ #
49234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/MetricPoint AWS API Documentation
49235
+ #
49236
+ class MetricPoint < Struct.new(
49237
+ :start_date,
49238
+ :end_date,
49239
+ :value,
49240
+ :status)
49241
+ SENSITIVE = []
49242
+ include Aws::Structure
49243
+ end
49244
+
48680
49245
  # @note When making an API call, you may pass ModifyAddressAttributeRequest
48681
49246
  # data as a hash:
48682
49247
  #
@@ -50941,7 +51506,7 @@ module Aws::EC2
50941
51506
  end
50942
51507
 
50943
51508
  # @!attribute [rw] route
50944
- # Describes a route for a local gateway route table.
51509
+ # Information about the local gateway route table.
50945
51510
  # @return [Types::LocalGatewayRoute]
50946
51511
  #
50947
51512
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRouteResult AWS API Documentation
@@ -51055,12 +51620,18 @@ module Aws::EC2
51055
51620
  # source_dest_check: {
51056
51621
  # value: false,
51057
51622
  # },
51623
+ # ena_srd_specification: {
51624
+ # ena_srd_enabled: false,
51625
+ # ena_srd_udp_specification: {
51626
+ # ena_srd_udp_enabled: false,
51627
+ # },
51628
+ # },
51058
51629
  # }
51059
51630
  #
51060
51631
  # @!attribute [rw] attachment
51061
- # Information about the interface attachment. If modifying the
51062
- # 'delete on termination' attribute, you must specify the ID of the
51063
- # interface attachment.
51632
+ # Information about the interface attachment. If modifying the `delete
51633
+ # on termination` attribute, you must specify the ID of the interface
51634
+ # attachment.
51064
51635
  # @return [Types::NetworkInterfaceAttachmentChanges]
51065
51636
  #
51066
51637
  # @!attribute [rw] description
@@ -51095,6 +51666,11 @@ module Aws::EC2
51095
51666
  # services such as network address translation, routing, or firewalls.
51096
51667
  # @return [Types::AttributeBooleanValue]
51097
51668
  #
51669
+ # @!attribute [rw] ena_srd_specification
51670
+ # Updates the ENA Express configuration for the network interface
51671
+ # that’s attached to the instance.
51672
+ # @return [Types::EnaSrdSpecification]
51673
+ #
51098
51674
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeRequest AWS API Documentation
51099
51675
  #
51100
51676
  class ModifyNetworkInterfaceAttributeRequest < Struct.new(
@@ -51103,7 +51679,8 @@ module Aws::EC2
51103
51679
  :dry_run,
51104
51680
  :groups,
51105
51681
  :network_interface_id,
51106
- :source_dest_check)
51682
+ :source_dest_check,
51683
+ :ena_srd_specification)
51107
51684
  SENSITIVE = []
51108
51685
  include Aws::Structure
51109
51686
  end
@@ -52141,7 +52718,7 @@ module Aws::EC2
52141
52718
  end
52142
52719
 
52143
52720
  # @!attribute [rw] transit_gateway
52144
- # Describes a transit gateway.
52721
+ # Information about the transit gateway.
52145
52722
  # @return [Types::TransitGateway]
52146
52723
  #
52147
52724
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayResult AWS API Documentation
@@ -53031,7 +53608,7 @@ module Aws::EC2
53031
53608
  end
53032
53609
 
53033
53610
  # @!attribute [rw] vpn_connection
53034
- # Describes a VPN connection.
53611
+ # Information about the VPN connection.
53035
53612
  # @return [Types::VpnConnection]
53036
53613
  #
53037
53614
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnConnectionOptionsResult AWS API Documentation
@@ -53090,7 +53667,7 @@ module Aws::EC2
53090
53667
  end
53091
53668
 
53092
53669
  # @!attribute [rw] vpn_connection
53093
- # Describes a VPN connection.
53670
+ # Information about the VPN connection.
53094
53671
  # @return [Types::VpnConnection]
53095
53672
  #
53096
53673
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnConnectionResult AWS API Documentation
@@ -53136,7 +53713,7 @@ module Aws::EC2
53136
53713
  end
53137
53714
 
53138
53715
  # @!attribute [rw] vpn_connection
53139
- # Describes a VPN connection.
53716
+ # Information about the VPN connection.
53140
53717
  # @return [Types::VpnConnection]
53141
53718
  #
53142
53719
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnTunnelCertificateResult AWS API Documentation
@@ -53242,7 +53819,7 @@ module Aws::EC2
53242
53819
  end
53243
53820
 
53244
53821
  # @!attribute [rw] vpn_connection
53245
- # Describes a VPN connection.
53822
+ # Information about the VPN connection.
53246
53823
  # @return [Types::VpnConnection]
53247
53824
  #
53248
53825
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnTunnelOptionsResult AWS API Documentation
@@ -54124,6 +54701,13 @@ module Aws::EC2
54124
54701
  # in-transit traffic between instances.
54125
54702
  # @return [Boolean]
54126
54703
  #
54704
+ # @!attribute [rw] ena_srd_supported
54705
+ # Indicates whether the instance type supports ENA Express. ENA
54706
+ # Express uses Amazon Web Services Scalable Reliable Datagram (SRD)
54707
+ # technology to increase the maximum bandwidth used per stream and
54708
+ # minimize tail latency of network traffic between EC2 instances.
54709
+ # @return [Boolean]
54710
+ #
54127
54711
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInfo AWS API Documentation
54128
54712
  #
54129
54713
  class NetworkInfo < Struct.new(
@@ -54138,7 +54722,8 @@ module Aws::EC2
54138
54722
  :ena_support,
54139
54723
  :efa_supported,
54140
54724
  :efa_info,
54141
- :encryption_in_transit_supported)
54725
+ :encryption_in_transit_supported,
54726
+ :ena_srd_supported)
54142
54727
  SENSITIVE = []
54143
54728
  include Aws::Structure
54144
54729
  end
@@ -54279,6 +54864,9 @@ module Aws::EC2
54279
54864
  # The ID of the path.
54280
54865
  # @return [String]
54281
54866
  #
54867
+ # @!attribute [rw] additional_accounts
54868
+ # @return [Array<String>]
54869
+ #
54282
54870
  # @!attribute [rw] filter_in_arns
54283
54871
  # The Amazon Resource Names (ARN) of the Amazon Web Services resources
54284
54872
  # that the path must traverse.
@@ -54325,6 +54913,9 @@ module Aws::EC2
54325
54913
  # Potential intermediate components.
54326
54914
  # @return [Array<Types::AlternatePathHint>]
54327
54915
  #
54916
+ # @!attribute [rw] suggested_accounts
54917
+ # @return [Array<String>]
54918
+ #
54328
54919
  # @!attribute [rw] tags
54329
54920
  # The tags.
54330
54921
  # @return [Array<Types::Tag>]
@@ -54335,6 +54926,7 @@ module Aws::EC2
54335
54926
  :network_insights_analysis_id,
54336
54927
  :network_insights_analysis_arn,
54337
54928
  :network_insights_path_id,
54929
+ :additional_accounts,
54338
54930
  :filter_in_arns,
54339
54931
  :start_date,
54340
54932
  :status,
@@ -54345,6 +54937,7 @@ module Aws::EC2
54345
54937
  :return_path_components,
54346
54938
  :explanations,
54347
54939
  :alternate_path_hints,
54940
+ :suggested_accounts,
54348
54941
  :tags)
54349
54942
  SENSITIVE = []
54350
54943
  include Aws::Structure
@@ -54373,6 +54966,12 @@ module Aws::EC2
54373
54966
  # path.
54374
54967
  # @return [String]
54375
54968
  #
54969
+ # @!attribute [rw] source_arn
54970
+ # @return [String]
54971
+ #
54972
+ # @!attribute [rw] destination_arn
54973
+ # @return [String]
54974
+ #
54376
54975
  # @!attribute [rw] source_ip
54377
54976
  # The IP address of the Amazon Web Services resource that is the
54378
54977
  # source of the path.
@@ -54403,6 +55002,8 @@ module Aws::EC2
54403
55002
  :created_date,
54404
55003
  :source,
54405
55004
  :destination,
55005
+ :source_arn,
55006
+ :destination_arn,
54406
55007
  :source_ip,
54407
55008
  :destination_ip,
54408
55009
  :protocol,
@@ -54647,6 +55248,11 @@ module Aws::EC2
54647
55248
  # The attachment state.
54648
55249
  # @return [String]
54649
55250
  #
55251
+ # @!attribute [rw] ena_srd_specification
55252
+ # Configures ENA Express for the network interface that this action
55253
+ # attaches to the instance.
55254
+ # @return [Types::AttachmentEnaSrdSpecification]
55255
+ #
54650
55256
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachment AWS API Documentation
54651
55257
  #
54652
55258
  class NetworkInterfaceAttachment < Struct.new(
@@ -54657,7 +55263,8 @@ module Aws::EC2
54657
55263
  :network_card_index,
54658
55264
  :instance_id,
54659
55265
  :instance_owner_id,
54660
- :status)
55266
+ :status,
55267
+ :ena_srd_specification)
54661
55268
  SENSITIVE = []
54662
55269
  include Aws::Structure
54663
55270
  end
@@ -55679,7 +56286,7 @@ module Aws::EC2
55679
56286
  # If not specified, an Availability Zone will be automatically chosen
55680
56287
  # for you based on the load balancing criteria for the Region.
55681
56288
  #
55682
- # This parameter is not supported by [CreateFleet][1].
56289
+ # This parameter is not supported for [CreateFleet][1].
55683
56290
  #
55684
56291
  #
55685
56292
  #
@@ -55687,26 +56294,27 @@ module Aws::EC2
55687
56294
  # @return [String]
55688
56295
  #
55689
56296
  # @!attribute [rw] affinity
55690
- # The affinity setting for the instance on the Dedicated Host. This
55691
- # parameter is not supported for the [ImportInstance][1] command.
56297
+ # The affinity setting for the instance on the Dedicated Host.
55692
56298
  #
55693
- # This parameter is not supported by [CreateFleet][2].
56299
+ # This parameter is not supported for [CreateFleet][1] or
56300
+ # [ImportInstance][2].
55694
56301
  #
55695
56302
  #
55696
56303
  #
55697
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55698
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56304
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56305
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55699
56306
  # @return [String]
55700
56307
  #
55701
56308
  # @!attribute [rw] group_name
55702
- # The name of the placement group the instance is in.
56309
+ # The name of the placement group that the instance is in. If you
56310
+ # specify `GroupName`, you can't specify `GroupId`.
55703
56311
  # @return [String]
55704
56312
  #
55705
56313
  # @!attribute [rw] partition_number
55706
56314
  # The number of the partition that the instance is in. Valid only if
55707
56315
  # the placement group strategy is set to `partition`.
55708
56316
  #
55709
- # This parameter is not supported by [CreateFleet][1].
56317
+ # This parameter is not supported for [CreateFleet][1].
55710
56318
  #
55711
56319
  #
55712
56320
  #
@@ -55714,50 +56322,43 @@ module Aws::EC2
55714
56322
  # @return [Integer]
55715
56323
  #
55716
56324
  # @!attribute [rw] host_id
55717
- # The ID of the Dedicated Host on which the instance resides. This
55718
- # parameter is not supported for the [ImportInstance][1] command.
56325
+ # The ID of the Dedicated Host on which the instance resides.
55719
56326
  #
55720
- # This parameter is not supported by [CreateFleet][2].
56327
+ # This parameter is not supported for [CreateFleet][1] or
56328
+ # [ImportInstance][2].
55721
56329
  #
55722
56330
  #
55723
56331
  #
55724
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55725
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56332
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56333
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55726
56334
  # @return [String]
55727
56335
  #
55728
56336
  # @!attribute [rw] tenancy
55729
56337
  # The tenancy of the instance (if the instance is running in a VPC).
55730
56338
  # An instance with a tenancy of `dedicated` runs on single-tenant
55731
- # hardware. The `host` tenancy is not supported for the
55732
- # [ImportInstance][1] command.
55733
- #
55734
- # This parameter is not supported by [CreateFleet][2].
56339
+ # hardware.
55735
56340
  #
55736
- # T3 instances that use the `unlimited` CPU credit option do not
55737
- # support `host` tenancy.
56341
+ # This parameter is not supported for [CreateFleet][1]. The `host`
56342
+ # tenancy is not supported for [ImportInstance][2] or for T3 instances
56343
+ # that are configured for the `unlimited` CPU credit option.
55738
56344
  #
55739
56345
  #
55740
56346
  #
55741
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55742
- # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56347
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
56348
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ImportInstance.html
55743
56349
  # @return [String]
55744
56350
  #
55745
56351
  # @!attribute [rw] spread_domain
55746
56352
  # Reserved for future use.
55747
- #
55748
- # This parameter is not supported by [CreateFleet][1].
55749
- #
55750
- #
55751
- #
55752
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
55753
56353
  # @return [String]
55754
56354
  #
55755
56355
  # @!attribute [rw] host_resource_group_arn
55756
56356
  # The ARN of the host resource group in which to launch the instances.
55757
- # If you specify a host resource group ARN, omit the **Tenancy**
55758
- # parameter or set it to `host`.
55759
56357
  #
55760
- # This parameter is not supported by [CreateFleet][1].
56358
+ # If you specify this parameter, either omit the **Tenancy** parameter
56359
+ # or set it to `host`.
56360
+ #
56361
+ # This parameter is not supported for [CreateFleet][1].
55761
56362
  #
55762
56363
  #
55763
56364
  #
@@ -55765,7 +56366,8 @@ module Aws::EC2
55765
56366
  # @return [String]
55766
56367
  #
55767
56368
  # @!attribute [rw] group_id
55768
- # The Group Id of the placement group.
56369
+ # The ID of the placement group that the instance is in. If you
56370
+ # specify `GroupId`, you can't specify `GroupName`.
55769
56371
  # @return [String]
55770
56372
  #
55771
56373
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Placement AWS API Documentation
@@ -57606,7 +58208,7 @@ module Aws::EC2
57606
58208
  end
57607
58209
 
57608
58210
  # @!attribute [rw] associations
57609
- # Describes the multicast domain associations.
58211
+ # Information about the multicast domain associations.
57610
58212
  # @return [Types::TransitGatewayMulticastDomainAssociations]
57611
58213
  #
57612
58214
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectTransitGatewayMulticastDomainAssociationsResult AWS API Documentation
@@ -65741,31 +66343,49 @@ module Aws::EC2
65741
66343
  # [Allocation strategies for Spot Instances][1] in the *Amazon EC2
65742
66344
  # User Guide*.
65743
66345
  #
65744
- # `lowestPrice` - Spot Fleet launches instances from the lowest-price
65745
- # Spot Instance pool that has available capacity. If the cheapest pool
65746
- # doesn't have available capacity, the Spot Instances come from the
65747
- # next cheapest pool that has available capacity. If a pool runs out
65748
- # of capacity before fulfilling your desired capacity, Spot Fleet will
65749
- # continue to fulfill your request by drawing from the next cheapest
65750
- # pool. To ensure that your desired capacity is met, you might receive
65751
- # Spot Instances from several pools.
65752
- #
65753
- # `diversified` - Spot Fleet launches instances from all of the Spot
65754
- # Instance pools that you specify.
65755
- #
65756
- # `capacityOptimized` (recommended) - Spot Fleet launches instances
65757
- # from Spot Instance pools with optimal capacity for the number of
65758
- # instances that are launching. To give certain instance types a
65759
- # higher chance of launching first, use
65760
- # `capacityOptimizedPrioritized`. Set a priority for each instance
65761
- # type by using the `Priority` parameter for
65762
- # `LaunchTemplateOverrides`. You can assign the same priority to
65763
- # different `LaunchTemplateOverrides`. EC2 implements the priorities
65764
- # on a best-effort basis, but optimizes for capacity first.
65765
- # `capacityOptimizedPrioritized` is supported only if your Spot Fleet
65766
- # uses a launch template. Note that if the
65767
- # `OnDemandAllocationStrategy` is set to `prioritized`, the same
65768
- # priority is applied when fulfilling On-Demand capacity.
66346
+ # priceCapacityOptimized (recommended)
66347
+ #
66348
+ # : Spot Fleet identifies the pools with the highest capacity
66349
+ # availability for the number of instances that are launching. This
66350
+ # means that we will request Spot Instances from the pools that we
66351
+ # believe have the lowest chance of interruption in the near term.
66352
+ # Spot Fleet then requests Spot Instances from the lowest priced of
66353
+ # these pools.
66354
+ #
66355
+ # capacityOptimized
66356
+ #
66357
+ # : Spot Fleet identifies the pools with the highest capacity
66358
+ # availability for the number of instances that are launching. This
66359
+ # means that we will request Spot Instances from the pools that we
66360
+ # believe have the lowest chance of interruption in the near term.
66361
+ # To give certain instance types a higher chance of launching first,
66362
+ # use `capacityOptimizedPrioritized`. Set a priority for each
66363
+ # instance type by using the `Priority` parameter for
66364
+ # `LaunchTemplateOverrides`. You can assign the same priority to
66365
+ # different `LaunchTemplateOverrides`. EC2 implements the priorities
66366
+ # on a best-effort basis, but optimizes for capacity first.
66367
+ # `capacityOptimizedPrioritized` is supported only if your Spot
66368
+ # Fleet uses a launch template. Note that if the
66369
+ # `OnDemandAllocationStrategy` is set to `prioritized`, the same
66370
+ # priority is applied when fulfilling On-Demand capacity.
66371
+ #
66372
+ # diversified
66373
+ #
66374
+ # : Spot Fleet requests instances from all of the Spot Instance pools
66375
+ # that you specify.
66376
+ #
66377
+ # lowestPrice
66378
+ #
66379
+ # : Spot Fleet requests instances from the lowest priced Spot Instance
66380
+ # pool that has available capacity. If the lowest priced pool
66381
+ # doesn't have available capacity, the Spot Instances come from the
66382
+ # next lowest priced pool that has available capacity. If a pool
66383
+ # runs out of capacity before fulfilling your desired capacity, Spot
66384
+ # Fleet will continue to fulfill your request by drawing from the
66385
+ # next lowest priced pool. To ensure that your desired capacity is
66386
+ # met, you might receive Spot Instances from several pools. Because
66387
+ # this strategy only considers instance price and not capacity
66388
+ # availability, it might lead to high interruption rates.
65769
66389
  #
65770
66390
  # Default: `lowestPrice`
65771
66391
  #
@@ -66352,31 +66972,49 @@ module Aws::EC2
66352
66972
  # [Allocation strategies for Spot Instances][1] in the *Amazon EC2
66353
66973
  # User Guide*.
66354
66974
  #
66355
- # `lowest-price` - EC2 Fleet launches instances from the lowest-price
66356
- # Spot Instance pool that has available capacity. If the cheapest pool
66357
- # doesn't have available capacity, the Spot Instances come from the
66358
- # next cheapest pool that has available capacity. If a pool runs out
66359
- # of capacity before fulfilling your desired capacity, EC2 Fleet will
66360
- # continue to fulfill your request by drawing from the next cheapest
66361
- # pool. To ensure that your desired capacity is met, you might receive
66362
- # Spot Instances from several pools.
66363
- #
66364
- # `diversified` - EC2 Fleet launches instances from all of the Spot
66365
- # Instance pools that you specify.
66366
- #
66367
- # `capacity-optimized` (recommended) - EC2 Fleet launches instances
66368
- # from Spot Instance pools with optimal capacity for the number of
66369
- # instances that are launching. To give certain instance types a
66370
- # higher chance of launching first, use
66371
- # `capacity-optimized-prioritized`. Set a priority for each instance
66372
- # type by using the `Priority` parameter for
66373
- # `LaunchTemplateOverrides`. You can assign the same priority to
66374
- # different `LaunchTemplateOverrides`. EC2 implements the priorities
66375
- # on a best-effort basis, but optimizes for capacity first.
66376
- # `capacity-optimized-prioritized` is supported only if your fleet
66377
- # uses a launch template. Note that if the On-Demand
66378
- # `AllocationStrategy` is set to `prioritized`, the same priority is
66379
- # applied when fulfilling On-Demand capacity.
66975
+ # price-capacity-optimized (recommended)
66976
+ #
66977
+ # : EC2 Fleet identifies the pools with the highest capacity
66978
+ # availability for the number of instances that are launching. This
66979
+ # means that we will request Spot Instances from the pools that we
66980
+ # believe have the lowest chance of interruption in the near term.
66981
+ # EC2 Fleet then requests Spot Instances from the lowest priced of
66982
+ # these pools.
66983
+ #
66984
+ # capacity-optimized
66985
+ #
66986
+ # : EC2 Fleet identifies the pools with the highest capacity
66987
+ # availability for the number of instances that are launching. This
66988
+ # means that we will request Spot Instances from the pools that we
66989
+ # believe have the lowest chance of interruption in the near term.
66990
+ # To give certain instance types a higher chance of launching first,
66991
+ # use `capacity-optimized-prioritized`. Set a priority for each
66992
+ # instance type by using the `Priority` parameter for
66993
+ # `LaunchTemplateOverrides`. You can assign the same priority to
66994
+ # different `LaunchTemplateOverrides`. EC2 implements the priorities
66995
+ # on a best-effort basis, but optimizes for capacity first.
66996
+ # `capacity-optimized-prioritized` is supported only if your EC2
66997
+ # Fleet uses a launch template. Note that if the On-Demand
66998
+ # `AllocationStrategy` is set to `prioritized`, the same priority is
66999
+ # applied when fulfilling On-Demand capacity.
67000
+ #
67001
+ # diversified
67002
+ #
67003
+ # : EC2 Fleet requests instances from all of the Spot Instance pools
67004
+ # that you specify.
67005
+ #
67006
+ # lowest-price
67007
+ #
67008
+ # : EC2 Fleet requests instances from the lowest priced Spot Instance
67009
+ # pool that has available capacity. If the lowest priced pool
67010
+ # doesn't have available capacity, the Spot Instances come from the
67011
+ # next lowest priced pool that has available capacity. If a pool
67012
+ # runs out of capacity before fulfilling your desired capacity, EC2
67013
+ # Fleet will continue to fulfill your request by drawing from the
67014
+ # next lowest priced pool. To ensure that your desired capacity is
67015
+ # met, you might receive Spot Instances from several pools. Because
67016
+ # this strategy only considers instance price and not capacity
67017
+ # availability, it might lead to high interruption rates.
66380
67018
  #
66381
67019
  # Default: `lowest-price`
66382
67020
  #
@@ -66494,31 +67132,49 @@ module Aws::EC2
66494
67132
  # [Allocation strategies for Spot Instances][1] in the *Amazon EC2
66495
67133
  # User Guide*.
66496
67134
  #
66497
- # `lowest-price` - EC2 Fleet launches instances from the lowest-price
66498
- # Spot Instance pool that has available capacity. If the cheapest pool
66499
- # doesn't have available capacity, the Spot Instances come from the
66500
- # next cheapest pool that has available capacity. If a pool runs out
66501
- # of capacity before fulfilling your desired capacity, EC2 Fleet will
66502
- # continue to fulfill your request by drawing from the next cheapest
66503
- # pool. To ensure that your desired capacity is met, you might receive
66504
- # Spot Instances from several pools.
66505
- #
66506
- # `diversified` - EC2 Fleet launches instances from all of the Spot
66507
- # Instance pools that you specify.
66508
- #
66509
- # `capacity-optimized` (recommended) - EC2 Fleet launches instances
66510
- # from Spot Instance pools with optimal capacity for the number of
66511
- # instances that are launching. To give certain instance types a
66512
- # higher chance of launching first, use
66513
- # `capacity-optimized-prioritized`. Set a priority for each instance
66514
- # type by using the `Priority` parameter for
66515
- # `LaunchTemplateOverrides`. You can assign the same priority to
66516
- # different `LaunchTemplateOverrides`. EC2 implements the priorities
66517
- # on a best-effort basis, but optimizes for capacity first.
66518
- # `capacity-optimized-prioritized` is supported only if your fleet
66519
- # uses a launch template. Note that if the On-Demand
66520
- # `AllocationStrategy` is set to `prioritized`, the same priority is
66521
- # applied when fulfilling On-Demand capacity.
67135
+ # price-capacity-optimized (recommended)
67136
+ #
67137
+ # : EC2 Fleet identifies the pools with the highest capacity
67138
+ # availability for the number of instances that are launching. This
67139
+ # means that we will request Spot Instances from the pools that we
67140
+ # believe have the lowest chance of interruption in the near term.
67141
+ # EC2 Fleet then requests Spot Instances from the lowest priced of
67142
+ # these pools.
67143
+ #
67144
+ # capacity-optimized
67145
+ #
67146
+ # : EC2 Fleet identifies the pools with the highest capacity
67147
+ # availability for the number of instances that are launching. This
67148
+ # means that we will request Spot Instances from the pools that we
67149
+ # believe have the lowest chance of interruption in the near term.
67150
+ # To give certain instance types a higher chance of launching first,
67151
+ # use `capacity-optimized-prioritized`. Set a priority for each
67152
+ # instance type by using the `Priority` parameter for
67153
+ # `LaunchTemplateOverrides`. You can assign the same priority to
67154
+ # different `LaunchTemplateOverrides`. EC2 implements the priorities
67155
+ # on a best-effort basis, but optimizes for capacity first.
67156
+ # `capacity-optimized-prioritized` is supported only if your EC2
67157
+ # Fleet uses a launch template. Note that if the On-Demand
67158
+ # `AllocationStrategy` is set to `prioritized`, the same priority is
67159
+ # applied when fulfilling On-Demand capacity.
67160
+ #
67161
+ # diversified
67162
+ #
67163
+ # : EC2 Fleet requests instances from all of the Spot Instance pools
67164
+ # that you specify.
67165
+ #
67166
+ # lowest-price
67167
+ #
67168
+ # : EC2 Fleet requests instances from the lowest priced Spot Instance
67169
+ # pool that has available capacity. If the lowest priced pool
67170
+ # doesn't have available capacity, the Spot Instances come from the
67171
+ # next lowest priced pool that has available capacity. If a pool
67172
+ # runs out of capacity before fulfilling your desired capacity, EC2
67173
+ # Fleet will continue to fulfill your request by drawing from the
67174
+ # next lowest priced pool. To ensure that your desired capacity is
67175
+ # met, you might receive Spot Instances from several pools. Because
67176
+ # this strategy only considers instance price and not capacity
67177
+ # availability, it might lead to high interruption rates.
66522
67178
  #
66523
67179
  # Default: `lowest-price`
66524
67180
  #
@@ -66931,6 +67587,7 @@ module Aws::EC2
66931
67587
  #
66932
67588
  # {
66933
67589
  # network_insights_path_id: "NetworkInsightsPathId", # required
67590
+ # additional_accounts: ["String"],
66934
67591
  # filter_in_arns: ["ResourceArn"],
66935
67592
  # dry_run: false,
66936
67593
  # tag_specifications: [
@@ -66951,6 +67608,9 @@ module Aws::EC2
66951
67608
  # The ID of the path.
66952
67609
  # @return [String]
66953
67610
  #
67611
+ # @!attribute [rw] additional_accounts
67612
+ # @return [Array<String>]
67613
+ #
66954
67614
  # @!attribute [rw] filter_in_arns
66955
67615
  # The Amazon Resource Names (ARN) of the resources that the path must
66956
67616
  # traverse.
@@ -66984,6 +67644,7 @@ module Aws::EC2
66984
67644
  #
66985
67645
  class StartNetworkInsightsAnalysisRequest < Struct.new(
66986
67646
  :network_insights_path_id,
67647
+ :additional_accounts,
66987
67648
  :filter_in_arns,
66988
67649
  :dry_run,
66989
67650
  :tag_specifications,
@@ -67507,6 +68168,42 @@ module Aws::EC2
67507
68168
  include Aws::Structure
67508
68169
  end
67509
68170
 
68171
+ # Describes an Infrastructure Performance subscription.
68172
+ #
68173
+ # @!attribute [rw] source
68174
+ # The Region or Availability Zone that's the source for the
68175
+ # subscription. For example, `us-east-1`.
68176
+ # @return [String]
68177
+ #
68178
+ # @!attribute [rw] destination
68179
+ # The Region or Availability Zone that's the target for the
68180
+ # subscription. For example, `eu-west-1`.
68181
+ # @return [String]
68182
+ #
68183
+ # @!attribute [rw] metric
68184
+ # The metric used for the subscription.
68185
+ # @return [String]
68186
+ #
68187
+ # @!attribute [rw] statistic
68188
+ # The statistic used for the subscription.
68189
+ # @return [String]
68190
+ #
68191
+ # @!attribute [rw] period
68192
+ # The data aggregation time for the subscription.
68193
+ # @return [String]
68194
+ #
68195
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Subscription AWS API Documentation
68196
+ #
68197
+ class Subscription < Struct.new(
68198
+ :source,
68199
+ :destination,
68200
+ :metric,
68201
+ :statistic,
68202
+ :period)
68203
+ SENSITIVE = []
68204
+ include Aws::Structure
68205
+ end
68206
+
67510
68207
  # Describes the burstable performance instance whose credit option for
67511
68208
  # CPU usage was successfully modified.
67512
68209
  #