aws-sdk-ec2 1.350.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +355 -33
- data/lib/aws-sdk-ec2/client_api.rb +191 -1
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-ec2/endpoint_provider.rb +81 -81
- data/lib/aws-sdk-ec2/endpoints.rb +70 -0
- data/lib/aws-sdk-ec2/image.rb +2 -2
- data/lib/aws-sdk-ec2/network_interface.rb +20 -2
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ec2/plugins/region_validation.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +1 -2
- data/lib/aws-sdk-ec2/types.rb +862 -150
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -289,7 +289,7 @@ module Aws::EC2
|
|
289
289
|
end
|
290
290
|
|
291
291
|
# @!attribute [rw] associations
|
292
|
-
#
|
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: "
|
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
|
@@ -6517,6 +6566,7 @@ module Aws::EC2
|
|
6517
6566
|
# source_region: "String", # required
|
6518
6567
|
# destination_outpost_arn: "String",
|
6519
6568
|
# dry_run: false,
|
6569
|
+
# copy_image_tags: false,
|
6520
6570
|
# }
|
6521
6571
|
#
|
6522
6572
|
# @!attribute [rw] client_token
|
@@ -6539,7 +6589,7 @@ module Aws::EC2
|
|
6539
6589
|
# snapshot, but you cannot create an unencrypted copy of an encrypted
|
6540
6590
|
# snapshot. The default KMS key for Amazon EBS is used unless you
|
6541
6591
|
# specify a non-default Key Management Service (KMS) KMS key using
|
6542
|
-
# `KmsKeyId`. For more information, see [Amazon EBS
|
6592
|
+
# `KmsKeyId`. For more information, see [Amazon EBS encryption][1] in
|
6543
6593
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
6544
6594
|
#
|
6545
6595
|
#
|
@@ -6594,7 +6644,7 @@ module Aws::EC2
|
|
6594
6644
|
# the destination Outpost. You cannot copy an AMI from an Outpost to a
|
6595
6645
|
# Region, from one Outpost to another, or within the same Outpost.
|
6596
6646
|
#
|
6597
|
-
# For more information, see [
|
6647
|
+
# For more information, see [ Copy AMIs from an Amazon Web Services
|
6598
6648
|
# Region to an Outpost][1] in the *Amazon Elastic Compute Cloud User
|
6599
6649
|
# Guide*.
|
6600
6650
|
#
|
@@ -6610,6 +6660,20 @@ module Aws::EC2
|
|
6610
6660
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
6611
6661
|
# @return [Boolean]
|
6612
6662
|
#
|
6663
|
+
# @!attribute [rw] copy_image_tags
|
6664
|
+
# Indicates whether to include your user-defined AMI tags when copying
|
6665
|
+
# the AMI.
|
6666
|
+
#
|
6667
|
+
# The following tags will not be copied:
|
6668
|
+
#
|
6669
|
+
# * System tags (prefixed with `aws:`)
|
6670
|
+
#
|
6671
|
+
# * For public and shared AMIs, user-defined tags that are attached by
|
6672
|
+
# other Amazon Web Services accounts
|
6673
|
+
#
|
6674
|
+
# Default: Your user-defined AMI tags are not copied.
|
6675
|
+
# @return [Boolean]
|
6676
|
+
#
|
6613
6677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImageRequest AWS API Documentation
|
6614
6678
|
#
|
6615
6679
|
class CopyImageRequest < Struct.new(
|
@@ -6621,7 +6685,8 @@ module Aws::EC2
|
|
6621
6685
|
:source_image_id,
|
6622
6686
|
:source_region,
|
6623
6687
|
:destination_outpost_arn,
|
6624
|
-
:dry_run
|
6688
|
+
:dry_run,
|
6689
|
+
:copy_image_tags)
|
6625
6690
|
SENSITIVE = []
|
6626
6691
|
include Aws::Structure
|
6627
6692
|
end
|
@@ -7777,7 +7842,7 @@ module Aws::EC2
|
|
7777
7842
|
end
|
7778
7843
|
|
7779
7844
|
# @!attribute [rw] coip_pool
|
7780
|
-
#
|
7845
|
+
# Information about the CoIP address pool.
|
7781
7846
|
# @return [Types::CoipPool]
|
7782
7847
|
#
|
7783
7848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCoipPoolResult AWS API Documentation
|
@@ -10306,7 +10371,7 @@ module Aws::EC2
|
|
10306
10371
|
end
|
10307
10372
|
|
10308
10373
|
# @!attribute [rw] local_gateway_route_table
|
10309
|
-
#
|
10374
|
+
# Information about the local gateway route table.
|
10310
10375
|
# @return [Types::LocalGatewayRouteTable]
|
10311
10376
|
#
|
10312
10377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteTableResult AWS API Documentation
|
@@ -10370,8 +10435,8 @@ module Aws::EC2
|
|
10370
10435
|
end
|
10371
10436
|
|
10372
10437
|
# @!attribute [rw] local_gateway_route_table_virtual_interface_group_association
|
10373
|
-
#
|
10374
|
-
#
|
10438
|
+
# Information about the local gateway route table virtual interface
|
10439
|
+
# group association.
|
10375
10440
|
# @return [Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation]
|
10376
10441
|
#
|
10377
10442
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult AWS API Documentation
|
@@ -15107,6 +15172,118 @@ module Aws::EC2
|
|
15107
15172
|
include Aws::Structure
|
15108
15173
|
end
|
15109
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
|
+
|
15110
15287
|
# @note When making an API call, you may pass DeleteCarrierGatewayRequest
|
15111
15288
|
# data as a hash:
|
15112
15289
|
#
|
@@ -15316,7 +15493,7 @@ module Aws::EC2
|
|
15316
15493
|
end
|
15317
15494
|
|
15318
15495
|
# @!attribute [rw] coip_pool
|
15319
|
-
#
|
15496
|
+
# Information about the CoIP address pool.
|
15320
15497
|
# @return [Types::CoipPool]
|
15321
15498
|
#
|
15322
15499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteCoipPoolResult AWS API Documentation
|
@@ -16134,7 +16311,7 @@ module Aws::EC2
|
|
16134
16311
|
end
|
16135
16312
|
|
16136
16313
|
# @!attribute [rw] local_gateway_route_table
|
16137
|
-
#
|
16314
|
+
# Information about the local gateway route table.
|
16138
16315
|
# @return [Types::LocalGatewayRouteTable]
|
16139
16316
|
#
|
16140
16317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteTableResult AWS API Documentation
|
@@ -16175,8 +16352,7 @@ module Aws::EC2
|
|
16175
16352
|
end
|
16176
16353
|
|
16177
16354
|
# @!attribute [rw] local_gateway_route_table_virtual_interface_group_association
|
16178
|
-
#
|
16179
|
-
# virtual interface group.
|
16355
|
+
# Information about the association.
|
16180
16356
|
# @return [Types::LocalGatewayRouteTableVirtualInterfaceGroupAssociation]
|
16181
16357
|
#
|
16182
16358
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult AWS API Documentation
|
@@ -18714,6 +18890,71 @@ module Aws::EC2
|
|
18714
18890
|
include Aws::Structure
|
18715
18891
|
end
|
18716
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
|
+
|
18717
18958
|
# @note When making an API call, you may pass DescribeBundleTasksRequest
|
18718
18959
|
# data as a hash:
|
18719
18960
|
#
|
@@ -21704,8 +21945,7 @@ module Aws::EC2
|
|
21704
21945
|
# recommend that you use the **Owner** request parameter instead of
|
21705
21946
|
# this filter.
|
21706
21947
|
#
|
21707
|
-
# * `platform` - The platform.
|
21708
|
-
# `windows`.
|
21948
|
+
# * `platform` - The platform. The only supported value is `windows`.
|
21709
21949
|
#
|
21710
21950
|
# * `product-code` - The product code.
|
21711
21951
|
#
|
@@ -30281,9 +30521,13 @@ module Aws::EC2
|
|
30281
30521
|
# @!attribute [rw] filters
|
30282
30522
|
# One or more filters.
|
30283
30523
|
#
|
30524
|
+
# * `owner` - The ID or alias of the Amazon Web Services account that
|
30525
|
+
# owns the service.
|
30526
|
+
#
|
30284
30527
|
# * `service-name` - The name of the service.
|
30285
30528
|
#
|
30286
|
-
# * `service-type` - The type of service (`Interface` \| `Gateway`
|
30529
|
+
# * `service-type` - The type of service (`Interface` \| `Gateway` \|
|
30530
|
+
# `GatewayLoadBalancer`).
|
30287
30531
|
#
|
30288
30532
|
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
30289
30533
|
# `ipv6`).
|
@@ -30386,6 +30630,16 @@ module Aws::EC2
|
|
30386
30630
|
#
|
30387
30631
|
# * `service-name` - The name of the service.
|
30388
30632
|
#
|
30633
|
+
# * `tag`\:<key> - 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
|
+
#
|
30389
30643
|
# * `vpc-id` - The ID of the VPC in which the endpoint resides.
|
30390
30644
|
#
|
30391
30645
|
# * `vpc-endpoint-id` - The ID of the endpoint.
|
@@ -30396,16 +30650,6 @@ module Aws::EC2
|
|
30396
30650
|
#
|
30397
30651
|
# * `vpc-endpoint-type` - The type of VPC endpoint (`Interface` \|
|
30398
30652
|
# `Gateway` \| `GatewayLoadBalancer`).
|
30399
|
-
#
|
30400
|
-
# * `tag`\:<key> - The key/value combination of a tag assigned
|
30401
|
-
# to the resource. Use the tag key in the filter name and the tag
|
30402
|
-
# value as the filter value. For example, to find all resources that
|
30403
|
-
# have a tag with the key `Owner` and the value `TeamA`, specify
|
30404
|
-
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
30405
|
-
#
|
30406
|
-
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
30407
|
-
# filter to find all resources assigned a tag with a specific key,
|
30408
|
-
# regardless of the tag value.
|
30409
30653
|
# @return [Array<Types::Filter>]
|
30410
30654
|
#
|
30411
30655
|
# @!attribute [rw] max_results
|
@@ -31281,6 +31525,66 @@ module Aws::EC2
|
|
31281
31525
|
include Aws::Structure
|
31282
31526
|
end
|
31283
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
|
+
|
31284
31588
|
# @note When making an API call, you may pass DisableEbsEncryptionByDefaultRequest
|
31285
31589
|
# data as a hash:
|
31286
31590
|
#
|
@@ -33211,6 +33515,75 @@ module Aws::EC2
|
|
33211
33515
|
include Aws::Structure
|
33212
33516
|
end
|
33213
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
|
+
|
33214
33587
|
# @note When making an API call, you may pass EnableAddressTransferRequest
|
33215
33588
|
# data as a hash:
|
33216
33589
|
#
|
@@ -33258,6 +33631,66 @@ module Aws::EC2
|
|
33258
33631
|
include Aws::Structure
|
33259
33632
|
end
|
33260
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
|
+
|
33261
33694
|
# @note When making an API call, you may pass EnableEbsEncryptionByDefaultRequest
|
33262
33695
|
# data as a hash:
|
33263
33696
|
#
|
@@ -33706,6 +34139,35 @@ module Aws::EC2
|
|
33706
34139
|
include Aws::Structure
|
33707
34140
|
end
|
33708
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
|
+
|
33709
34171
|
# @note When making an API call, you may pass EnableSerialConsoleAccessRequest
|
33710
34172
|
# data as a hash:
|
33711
34173
|
#
|
@@ -36445,6 +36907,91 @@ module Aws::EC2
|
|
36445
36907
|
include Aws::Structure
|
36446
36908
|
end
|
36447
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
|
+
|
36448
36995
|
# @note When making an API call, you may pass GetCapacityReservationUsageRequest
|
36449
36996
|
# data as a hash:
|
36450
36997
|
#
|
@@ -39698,8 +40245,8 @@ module Aws::EC2
|
|
39698
40245
|
#
|
39699
40246
|
# @!attribute [rw] platform_details
|
39700
40247
|
# The platform details associated with the billing code of the AMI.
|
39701
|
-
# For more information, see [
|
39702
|
-
# *Amazon Elastic Compute Cloud User Guide*.
|
40248
|
+
# For more information, see [Understand AMI billing information][1] in
|
40249
|
+
# the *Amazon Elastic Compute Cloud User Guide*.
|
39703
40250
|
#
|
39704
40251
|
#
|
39705
40252
|
#
|
@@ -48259,7 +48806,7 @@ module Aws::EC2
|
|
48259
48806
|
# @return [String]
|
48260
48807
|
#
|
48261
48808
|
# @!attribute [rw] state_reason
|
48262
|
-
#
|
48809
|
+
# Information about the state change.
|
48263
48810
|
# @return [Types::StateReason]
|
48264
48811
|
#
|
48265
48812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRouteTable AWS API Documentation
|
@@ -48662,6 +49209,39 @@ module Aws::EC2
|
|
48662
49209
|
include Aws::Structure
|
48663
49210
|
end
|
48664
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
|
+
|
48665
49245
|
# @note When making an API call, you may pass ModifyAddressAttributeRequest
|
48666
49246
|
# data as a hash:
|
48667
49247
|
#
|
@@ -50926,7 +51506,7 @@ module Aws::EC2
|
|
50926
51506
|
end
|
50927
51507
|
|
50928
51508
|
# @!attribute [rw] route
|
50929
|
-
#
|
51509
|
+
# Information about the local gateway route table.
|
50930
51510
|
# @return [Types::LocalGatewayRoute]
|
50931
51511
|
#
|
50932
51512
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRouteResult AWS API Documentation
|
@@ -51040,12 +51620,18 @@ module Aws::EC2
|
|
51040
51620
|
# source_dest_check: {
|
51041
51621
|
# value: false,
|
51042
51622
|
# },
|
51623
|
+
# ena_srd_specification: {
|
51624
|
+
# ena_srd_enabled: false,
|
51625
|
+
# ena_srd_udp_specification: {
|
51626
|
+
# ena_srd_udp_enabled: false,
|
51627
|
+
# },
|
51628
|
+
# },
|
51043
51629
|
# }
|
51044
51630
|
#
|
51045
51631
|
# @!attribute [rw] attachment
|
51046
|
-
# Information about the interface attachment. If modifying the
|
51047
|
-
#
|
51048
|
-
#
|
51632
|
+
# Information about the interface attachment. If modifying the `delete
|
51633
|
+
# on termination` attribute, you must specify the ID of the interface
|
51634
|
+
# attachment.
|
51049
51635
|
# @return [Types::NetworkInterfaceAttachmentChanges]
|
51050
51636
|
#
|
51051
51637
|
# @!attribute [rw] description
|
@@ -51080,6 +51666,11 @@ module Aws::EC2
|
|
51080
51666
|
# services such as network address translation, routing, or firewalls.
|
51081
51667
|
# @return [Types::AttributeBooleanValue]
|
51082
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
|
+
#
|
51083
51674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyNetworkInterfaceAttributeRequest AWS API Documentation
|
51084
51675
|
#
|
51085
51676
|
class ModifyNetworkInterfaceAttributeRequest < Struct.new(
|
@@ -51088,7 +51679,8 @@ module Aws::EC2
|
|
51088
51679
|
:dry_run,
|
51089
51680
|
:groups,
|
51090
51681
|
:network_interface_id,
|
51091
|
-
:source_dest_check
|
51682
|
+
:source_dest_check,
|
51683
|
+
:ena_srd_specification)
|
51092
51684
|
SENSITIVE = []
|
51093
51685
|
include Aws::Structure
|
51094
51686
|
end
|
@@ -52126,7 +52718,7 @@ module Aws::EC2
|
|
52126
52718
|
end
|
52127
52719
|
|
52128
52720
|
# @!attribute [rw] transit_gateway
|
52129
|
-
#
|
52721
|
+
# Information about the transit gateway.
|
52130
52722
|
# @return [Types::TransitGateway]
|
52131
52723
|
#
|
52132
52724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayResult AWS API Documentation
|
@@ -53016,7 +53608,7 @@ module Aws::EC2
|
|
53016
53608
|
end
|
53017
53609
|
|
53018
53610
|
# @!attribute [rw] vpn_connection
|
53019
|
-
#
|
53611
|
+
# Information about the VPN connection.
|
53020
53612
|
# @return [Types::VpnConnection]
|
53021
53613
|
#
|
53022
53614
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnConnectionOptionsResult AWS API Documentation
|
@@ -53075,7 +53667,7 @@ module Aws::EC2
|
|
53075
53667
|
end
|
53076
53668
|
|
53077
53669
|
# @!attribute [rw] vpn_connection
|
53078
|
-
#
|
53670
|
+
# Information about the VPN connection.
|
53079
53671
|
# @return [Types::VpnConnection]
|
53080
53672
|
#
|
53081
53673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnConnectionResult AWS API Documentation
|
@@ -53121,7 +53713,7 @@ module Aws::EC2
|
|
53121
53713
|
end
|
53122
53714
|
|
53123
53715
|
# @!attribute [rw] vpn_connection
|
53124
|
-
#
|
53716
|
+
# Information about the VPN connection.
|
53125
53717
|
# @return [Types::VpnConnection]
|
53126
53718
|
#
|
53127
53719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnTunnelCertificateResult AWS API Documentation
|
@@ -53227,7 +53819,7 @@ module Aws::EC2
|
|
53227
53819
|
end
|
53228
53820
|
|
53229
53821
|
# @!attribute [rw] vpn_connection
|
53230
|
-
#
|
53822
|
+
# Information about the VPN connection.
|
53231
53823
|
# @return [Types::VpnConnection]
|
53232
53824
|
#
|
53233
53825
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpnTunnelOptionsResult AWS API Documentation
|
@@ -54109,6 +54701,13 @@ module Aws::EC2
|
|
54109
54701
|
# in-transit traffic between instances.
|
54110
54702
|
# @return [Boolean]
|
54111
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
|
+
#
|
54112
54711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInfo AWS API Documentation
|
54113
54712
|
#
|
54114
54713
|
class NetworkInfo < Struct.new(
|
@@ -54123,7 +54722,8 @@ module Aws::EC2
|
|
54123
54722
|
:ena_support,
|
54124
54723
|
:efa_supported,
|
54125
54724
|
:efa_info,
|
54126
|
-
:encryption_in_transit_supported
|
54725
|
+
:encryption_in_transit_supported,
|
54726
|
+
:ena_srd_supported)
|
54127
54727
|
SENSITIVE = []
|
54128
54728
|
include Aws::Structure
|
54129
54729
|
end
|
@@ -54264,6 +54864,9 @@ module Aws::EC2
|
|
54264
54864
|
# The ID of the path.
|
54265
54865
|
# @return [String]
|
54266
54866
|
#
|
54867
|
+
# @!attribute [rw] additional_accounts
|
54868
|
+
# @return [Array<String>]
|
54869
|
+
#
|
54267
54870
|
# @!attribute [rw] filter_in_arns
|
54268
54871
|
# The Amazon Resource Names (ARN) of the Amazon Web Services resources
|
54269
54872
|
# that the path must traverse.
|
@@ -54310,6 +54913,9 @@ module Aws::EC2
|
|
54310
54913
|
# Potential intermediate components.
|
54311
54914
|
# @return [Array<Types::AlternatePathHint>]
|
54312
54915
|
#
|
54916
|
+
# @!attribute [rw] suggested_accounts
|
54917
|
+
# @return [Array<String>]
|
54918
|
+
#
|
54313
54919
|
# @!attribute [rw] tags
|
54314
54920
|
# The tags.
|
54315
54921
|
# @return [Array<Types::Tag>]
|
@@ -54320,6 +54926,7 @@ module Aws::EC2
|
|
54320
54926
|
:network_insights_analysis_id,
|
54321
54927
|
:network_insights_analysis_arn,
|
54322
54928
|
:network_insights_path_id,
|
54929
|
+
:additional_accounts,
|
54323
54930
|
:filter_in_arns,
|
54324
54931
|
:start_date,
|
54325
54932
|
:status,
|
@@ -54330,6 +54937,7 @@ module Aws::EC2
|
|
54330
54937
|
:return_path_components,
|
54331
54938
|
:explanations,
|
54332
54939
|
:alternate_path_hints,
|
54940
|
+
:suggested_accounts,
|
54333
54941
|
:tags)
|
54334
54942
|
SENSITIVE = []
|
54335
54943
|
include Aws::Structure
|
@@ -54358,6 +54966,12 @@ module Aws::EC2
|
|
54358
54966
|
# path.
|
54359
54967
|
# @return [String]
|
54360
54968
|
#
|
54969
|
+
# @!attribute [rw] source_arn
|
54970
|
+
# @return [String]
|
54971
|
+
#
|
54972
|
+
# @!attribute [rw] destination_arn
|
54973
|
+
# @return [String]
|
54974
|
+
#
|
54361
54975
|
# @!attribute [rw] source_ip
|
54362
54976
|
# The IP address of the Amazon Web Services resource that is the
|
54363
54977
|
# source of the path.
|
@@ -54388,6 +55002,8 @@ module Aws::EC2
|
|
54388
55002
|
:created_date,
|
54389
55003
|
:source,
|
54390
55004
|
:destination,
|
55005
|
+
:source_arn,
|
55006
|
+
:destination_arn,
|
54391
55007
|
:source_ip,
|
54392
55008
|
:destination_ip,
|
54393
55009
|
:protocol,
|
@@ -54632,6 +55248,11 @@ module Aws::EC2
|
|
54632
55248
|
# The attachment state.
|
54633
55249
|
# @return [String]
|
54634
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
|
+
#
|
54635
55256
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterfaceAttachment AWS API Documentation
|
54636
55257
|
#
|
54637
55258
|
class NetworkInterfaceAttachment < Struct.new(
|
@@ -54642,7 +55263,8 @@ module Aws::EC2
|
|
54642
55263
|
:network_card_index,
|
54643
55264
|
:instance_id,
|
54644
55265
|
:instance_owner_id,
|
54645
|
-
:status
|
55266
|
+
:status,
|
55267
|
+
:ena_srd_specification)
|
54646
55268
|
SENSITIVE = []
|
54647
55269
|
include Aws::Structure
|
54648
55270
|
end
|
@@ -55664,7 +56286,7 @@ module Aws::EC2
|
|
55664
56286
|
# If not specified, an Availability Zone will be automatically chosen
|
55665
56287
|
# for you based on the load balancing criteria for the Region.
|
55666
56288
|
#
|
55667
|
-
# This parameter is not supported
|
56289
|
+
# This parameter is not supported for [CreateFleet][1].
|
55668
56290
|
#
|
55669
56291
|
#
|
55670
56292
|
#
|
@@ -55672,26 +56294,27 @@ module Aws::EC2
|
|
55672
56294
|
# @return [String]
|
55673
56295
|
#
|
55674
56296
|
# @!attribute [rw] affinity
|
55675
|
-
# The affinity setting for the instance on the Dedicated Host.
|
55676
|
-
# parameter is not supported for the [ImportInstance][1] command.
|
56297
|
+
# The affinity setting for the instance on the Dedicated Host.
|
55677
56298
|
#
|
55678
|
-
# This parameter is not supported
|
56299
|
+
# This parameter is not supported for [CreateFleet][1] or
|
56300
|
+
# [ImportInstance][2].
|
55679
56301
|
#
|
55680
56302
|
#
|
55681
56303
|
#
|
55682
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
55683
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
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
|
55684
56306
|
# @return [String]
|
55685
56307
|
#
|
55686
56308
|
# @!attribute [rw] group_name
|
55687
|
-
# 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`.
|
55688
56311
|
# @return [String]
|
55689
56312
|
#
|
55690
56313
|
# @!attribute [rw] partition_number
|
55691
56314
|
# The number of the partition that the instance is in. Valid only if
|
55692
56315
|
# the placement group strategy is set to `partition`.
|
55693
56316
|
#
|
55694
|
-
# This parameter is not supported
|
56317
|
+
# This parameter is not supported for [CreateFleet][1].
|
55695
56318
|
#
|
55696
56319
|
#
|
55697
56320
|
#
|
@@ -55699,50 +56322,43 @@ module Aws::EC2
|
|
55699
56322
|
# @return [Integer]
|
55700
56323
|
#
|
55701
56324
|
# @!attribute [rw] host_id
|
55702
|
-
# The ID of the Dedicated Host on which the instance resides.
|
55703
|
-
# parameter is not supported for the [ImportInstance][1] command.
|
56325
|
+
# The ID of the Dedicated Host on which the instance resides.
|
55704
56326
|
#
|
55705
|
-
# This parameter is not supported
|
56327
|
+
# This parameter is not supported for [CreateFleet][1] or
|
56328
|
+
# [ImportInstance][2].
|
55706
56329
|
#
|
55707
56330
|
#
|
55708
56331
|
#
|
55709
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
55710
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
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
|
55711
56334
|
# @return [String]
|
55712
56335
|
#
|
55713
56336
|
# @!attribute [rw] tenancy
|
55714
56337
|
# The tenancy of the instance (if the instance is running in a VPC).
|
55715
56338
|
# An instance with a tenancy of `dedicated` runs on single-tenant
|
55716
|
-
# hardware.
|
55717
|
-
# [ImportInstance][1] command.
|
55718
|
-
#
|
55719
|
-
# This parameter is not supported by [CreateFleet][2].
|
56339
|
+
# hardware.
|
55720
56340
|
#
|
55721
|
-
#
|
55722
|
-
#
|
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.
|
55723
56344
|
#
|
55724
56345
|
#
|
55725
56346
|
#
|
55726
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
55727
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/
|
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
|
55728
56349
|
# @return [String]
|
55729
56350
|
#
|
55730
56351
|
# @!attribute [rw] spread_domain
|
55731
56352
|
# Reserved for future use.
|
55732
|
-
#
|
55733
|
-
# This parameter is not supported by [CreateFleet][1].
|
55734
|
-
#
|
55735
|
-
#
|
55736
|
-
#
|
55737
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateFleet
|
55738
56353
|
# @return [String]
|
55739
56354
|
#
|
55740
56355
|
# @!attribute [rw] host_resource_group_arn
|
55741
56356
|
# The ARN of the host resource group in which to launch the instances.
|
55742
|
-
# If you specify a host resource group ARN, omit the **Tenancy**
|
55743
|
-
# parameter or set it to `host`.
|
55744
56357
|
#
|
55745
|
-
#
|
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].
|
55746
56362
|
#
|
55747
56363
|
#
|
55748
56364
|
#
|
@@ -55750,7 +56366,8 @@ module Aws::EC2
|
|
55750
56366
|
# @return [String]
|
55751
56367
|
#
|
55752
56368
|
# @!attribute [rw] group_id
|
55753
|
-
# The
|
56369
|
+
# The ID of the placement group that the instance is in. If you
|
56370
|
+
# specify `GroupId`, you can't specify `GroupName`.
|
55754
56371
|
# @return [String]
|
55755
56372
|
#
|
55756
56373
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Placement AWS API Documentation
|
@@ -57591,7 +58208,7 @@ module Aws::EC2
|
|
57591
58208
|
end
|
57592
58209
|
|
57593
58210
|
# @!attribute [rw] associations
|
57594
|
-
#
|
58211
|
+
# Information about the multicast domain associations.
|
57595
58212
|
# @return [Types::TransitGatewayMulticastDomainAssociations]
|
57596
58213
|
#
|
57597
58214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectTransitGatewayMulticastDomainAssociationsResult AWS API Documentation
|
@@ -62768,7 +63385,7 @@ module Aws::EC2
|
|
62768
63385
|
# @!attribute [rw] aws_access_key_id
|
62769
63386
|
# The access key ID of the owner of the bucket. Before you specify a
|
62770
63387
|
# value for your access key ID, review and follow the guidance in
|
62771
|
-
# [Best
|
63388
|
+
# [Best practices for managing Amazon Web Services access keys][1].
|
62772
63389
|
#
|
62773
63390
|
#
|
62774
63391
|
#
|
@@ -65726,31 +66343,49 @@ module Aws::EC2
|
|
65726
66343
|
# [Allocation strategies for Spot Instances][1] in the *Amazon EC2
|
65727
66344
|
# User Guide*.
|
65728
66345
|
#
|
65729
|
-
#
|
65730
|
-
#
|
65731
|
-
#
|
65732
|
-
#
|
65733
|
-
#
|
65734
|
-
#
|
65735
|
-
#
|
65736
|
-
#
|
65737
|
-
#
|
65738
|
-
#
|
65739
|
-
#
|
65740
|
-
#
|
65741
|
-
#
|
65742
|
-
#
|
65743
|
-
#
|
65744
|
-
#
|
65745
|
-
#
|
65746
|
-
#
|
65747
|
-
#
|
65748
|
-
#
|
65749
|
-
#
|
65750
|
-
#
|
65751
|
-
#
|
65752
|
-
#
|
65753
|
-
#
|
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.
|
65754
66389
|
#
|
65755
66390
|
# Default: `lowestPrice`
|
65756
66391
|
#
|
@@ -66337,31 +66972,49 @@ module Aws::EC2
|
|
66337
66972
|
# [Allocation strategies for Spot Instances][1] in the *Amazon EC2
|
66338
66973
|
# User Guide*.
|
66339
66974
|
#
|
66340
|
-
#
|
66341
|
-
#
|
66342
|
-
#
|
66343
|
-
#
|
66344
|
-
#
|
66345
|
-
#
|
66346
|
-
#
|
66347
|
-
#
|
66348
|
-
#
|
66349
|
-
#
|
66350
|
-
#
|
66351
|
-
#
|
66352
|
-
#
|
66353
|
-
#
|
66354
|
-
#
|
66355
|
-
#
|
66356
|
-
#
|
66357
|
-
#
|
66358
|
-
#
|
66359
|
-
#
|
66360
|
-
#
|
66361
|
-
#
|
66362
|
-
#
|
66363
|
-
#
|
66364
|
-
#
|
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.
|
66365
67018
|
#
|
66366
67019
|
# Default: `lowest-price`
|
66367
67020
|
#
|
@@ -66479,31 +67132,49 @@ module Aws::EC2
|
|
66479
67132
|
# [Allocation strategies for Spot Instances][1] in the *Amazon EC2
|
66480
67133
|
# User Guide*.
|
66481
67134
|
#
|
66482
|
-
#
|
66483
|
-
#
|
66484
|
-
#
|
66485
|
-
#
|
66486
|
-
#
|
66487
|
-
#
|
66488
|
-
#
|
66489
|
-
#
|
66490
|
-
#
|
66491
|
-
#
|
66492
|
-
#
|
66493
|
-
#
|
66494
|
-
#
|
66495
|
-
#
|
66496
|
-
#
|
66497
|
-
#
|
66498
|
-
#
|
66499
|
-
#
|
66500
|
-
#
|
66501
|
-
#
|
66502
|
-
#
|
66503
|
-
#
|
66504
|
-
#
|
66505
|
-
#
|
66506
|
-
#
|
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.
|
66507
67178
|
#
|
66508
67179
|
# Default: `lowest-price`
|
66509
67180
|
#
|
@@ -66916,6 +67587,7 @@ module Aws::EC2
|
|
66916
67587
|
#
|
66917
67588
|
# {
|
66918
67589
|
# network_insights_path_id: "NetworkInsightsPathId", # required
|
67590
|
+
# additional_accounts: ["String"],
|
66919
67591
|
# filter_in_arns: ["ResourceArn"],
|
66920
67592
|
# dry_run: false,
|
66921
67593
|
# tag_specifications: [
|
@@ -66936,6 +67608,9 @@ module Aws::EC2
|
|
66936
67608
|
# The ID of the path.
|
66937
67609
|
# @return [String]
|
66938
67610
|
#
|
67611
|
+
# @!attribute [rw] additional_accounts
|
67612
|
+
# @return [Array<String>]
|
67613
|
+
#
|
66939
67614
|
# @!attribute [rw] filter_in_arns
|
66940
67615
|
# The Amazon Resource Names (ARN) of the resources that the path must
|
66941
67616
|
# traverse.
|
@@ -66969,6 +67644,7 @@ module Aws::EC2
|
|
66969
67644
|
#
|
66970
67645
|
class StartNetworkInsightsAnalysisRequest < Struct.new(
|
66971
67646
|
:network_insights_path_id,
|
67647
|
+
:additional_accounts,
|
66972
67648
|
:filter_in_arns,
|
66973
67649
|
:dry_run,
|
66974
67650
|
:tag_specifications,
|
@@ -67492,6 +68168,42 @@ module Aws::EC2
|
|
67492
68168
|
include Aws::Structure
|
67493
68169
|
end
|
67494
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
|
+
|
67495
68207
|
# Describes the burstable performance instance whose credit option for
|
67496
68208
|
# CPU usage was successfully modified.
|
67497
68209
|
#
|