aws-sdk-ec2 1.369.0 → 1.371.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 +753 -151
- data/lib/aws-sdk-ec2/client_api.rb +98 -2
- data/lib/aws-sdk-ec2/image.rb +6 -6
- data/lib/aws-sdk-ec2/instance.rb +11 -11
- data/lib/aws-sdk-ec2/nat_gateway.rb +7 -7
- data/lib/aws-sdk-ec2/resource.rb +24 -24
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +686 -298
- data/lib/aws-sdk-ec2/volume.rb +5 -5
- data/lib/aws-sdk-ec2/vpc.rb +9 -9
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -103,7 +103,7 @@ module Aws::EC2
|
|
103
103
|
# @return [String]
|
104
104
|
#
|
105
105
|
# @!attribute [rw] tag_specifications
|
106
|
-
# `tag
|
106
|
+
# `tag`:<key> - The key/value combination of a tag assigned to
|
107
107
|
# the resource. Use the tag key in the filter name and the tag value
|
108
108
|
# as the filter value. For example, to find all resources that have a
|
109
109
|
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
@@ -576,21 +576,56 @@ module Aws::EC2
|
|
576
576
|
include Aws::Structure
|
577
577
|
end
|
578
578
|
|
579
|
-
# Describes an additional detail for a path analysis.
|
579
|
+
# Describes an additional detail for a path analysis. For more
|
580
|
+
# information, see [Reachability Analyzer additional detail codes][1].
|
581
|
+
#
|
582
|
+
#
|
583
|
+
#
|
584
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/reachability/additional-detail-codes.html
|
580
585
|
#
|
581
586
|
# @!attribute [rw] additional_detail_type
|
582
|
-
# The
|
587
|
+
# The additional detail code.
|
583
588
|
# @return [String]
|
584
589
|
#
|
585
590
|
# @!attribute [rw] component
|
586
591
|
# The path component.
|
587
592
|
# @return [Types::AnalysisComponent]
|
588
593
|
#
|
594
|
+
# @!attribute [rw] vpc_endpoint_service
|
595
|
+
# The VPC endpoint service.
|
596
|
+
# @return [Types::AnalysisComponent]
|
597
|
+
#
|
598
|
+
# @!attribute [rw] rule_options
|
599
|
+
# The rule options.
|
600
|
+
# @return [Array<Types::RuleOption>]
|
601
|
+
#
|
602
|
+
# @!attribute [rw] rule_group_type_pairs
|
603
|
+
# The rule group type.
|
604
|
+
# @return [Array<Types::RuleGroupTypePair>]
|
605
|
+
#
|
606
|
+
# @!attribute [rw] rule_group_rule_options_pairs
|
607
|
+
# The rule options.
|
608
|
+
# @return [Array<Types::RuleGroupRuleOptionsPair>]
|
609
|
+
#
|
610
|
+
# @!attribute [rw] service_name
|
611
|
+
# The name of the VPC endpoint service.
|
612
|
+
# @return [String]
|
613
|
+
#
|
614
|
+
# @!attribute [rw] load_balancers
|
615
|
+
# The load balancers.
|
616
|
+
# @return [Array<Types::AnalysisComponent>]
|
617
|
+
#
|
589
618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AdditionalDetail AWS API Documentation
|
590
619
|
#
|
591
620
|
class AdditionalDetail < Struct.new(
|
592
621
|
:additional_detail_type,
|
593
|
-
:component
|
622
|
+
:component,
|
623
|
+
:vpc_endpoint_service,
|
624
|
+
:rule_options,
|
625
|
+
:rule_group_type_pairs,
|
626
|
+
:rule_group_rule_options_pairs,
|
627
|
+
:service_name,
|
628
|
+
:load_balancers)
|
594
629
|
SENSITIVE = []
|
595
630
|
include Aws::Structure
|
596
631
|
end
|
@@ -1389,6 +1424,18 @@ module Aws::EC2
|
|
1389
1424
|
# * blackhole
|
1390
1425
|
# @return [String]
|
1391
1426
|
#
|
1427
|
+
# @!attribute [rw] carrier_gateway_id
|
1428
|
+
# The ID of a carrier gateway.
|
1429
|
+
# @return [String]
|
1430
|
+
#
|
1431
|
+
# @!attribute [rw] core_network_arn
|
1432
|
+
# The Amazon Resource Name (ARN) of a core network.
|
1433
|
+
# @return [String]
|
1434
|
+
#
|
1435
|
+
# @!attribute [rw] local_gateway_id
|
1436
|
+
# The ID of a local gateway.
|
1437
|
+
# @return [String]
|
1438
|
+
#
|
1392
1439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AnalysisRouteTableRoute AWS API Documentation
|
1393
1440
|
#
|
1394
1441
|
class AnalysisRouteTableRoute < Struct.new(
|
@@ -1402,7 +1449,10 @@ module Aws::EC2
|
|
1402
1449
|
:origin,
|
1403
1450
|
:transit_gateway_id,
|
1404
1451
|
:vpc_peering_connection_id,
|
1405
|
-
:state
|
1452
|
+
:state,
|
1453
|
+
:carrier_gateway_id,
|
1454
|
+
:core_network_arn,
|
1455
|
+
:local_gateway_id)
|
1406
1456
|
SENSITIVE = []
|
1407
1457
|
include Aws::Structure
|
1408
1458
|
end
|
@@ -7315,13 +7365,13 @@ module Aws::EC2
|
|
7315
7365
|
#
|
7316
7366
|
# @!attribute [rw] valid_from
|
7317
7367
|
# The start date and time of the request, in UTC format (for example,
|
7318
|
-
# *YYYY*-*MM*-*DD*T*HH
|
7368
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). The default is to start
|
7319
7369
|
# fulfilling the request immediately.
|
7320
7370
|
# @return [Time]
|
7321
7371
|
#
|
7322
7372
|
# @!attribute [rw] valid_until
|
7323
7373
|
# The end date and time of the request, in UTC format (for example,
|
7324
|
-
# *YYYY*-*MM*-*DD*T*HH
|
7374
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). At this point, no new EC2 Fleet
|
7325
7375
|
# requests are placed or able to fulfill the request. If no value is
|
7326
7376
|
# specified, the request remains until you cancel it.
|
7327
7377
|
# @return [Time]
|
@@ -7472,7 +7522,7 @@ module Aws::EC2
|
|
7472
7522
|
# * If the destination type is `cloud-watch-logs`, specify the ARN of
|
7473
7523
|
# a CloudWatch Logs log group. For example:
|
7474
7524
|
#
|
7475
|
-
# arn:aws:logs:*region
|
7525
|
+
# arn:aws:logs:*region*:*account\_id*:log-group:*my\_group*
|
7476
7526
|
#
|
7477
7527
|
# Alternatively, use the `LogGroupName` parameter.
|
7478
7528
|
#
|
@@ -7487,7 +7537,7 @@ module Aws::EC2
|
|
7487
7537
|
# * If the destination type is `kinesis-data-firehose`, specify the
|
7488
7538
|
# ARN of a Kinesis Data Firehose delivery stream. For example:
|
7489
7539
|
#
|
7490
|
-
# arn:aws:firehose:*region
|
7540
|
+
# arn:aws:firehose:*region*:*account\_id*:deliverystream:*my\_stream*
|
7491
7541
|
# @return [String]
|
7492
7542
|
#
|
7493
7543
|
# @!attribute [rw] log_format
|
@@ -9013,22 +9063,21 @@ module Aws::EC2
|
|
9013
9063
|
end
|
9014
9064
|
|
9015
9065
|
# @!attribute [rw] source_ip
|
9016
|
-
# The IP address of the
|
9017
|
-
# source of the path.
|
9066
|
+
# The IP address of the source.
|
9018
9067
|
# @return [String]
|
9019
9068
|
#
|
9020
9069
|
# @!attribute [rw] destination_ip
|
9021
|
-
# The IP address of the
|
9022
|
-
# destination of the path.
|
9070
|
+
# The IP address of the destination.
|
9023
9071
|
# @return [String]
|
9024
9072
|
#
|
9025
9073
|
# @!attribute [rw] source
|
9026
|
-
# The
|
9074
|
+
# The ID or ARN of the source. If the resource is in another account,
|
9075
|
+
# you must specify an ARN.
|
9027
9076
|
# @return [String]
|
9028
9077
|
#
|
9029
9078
|
# @!attribute [rw] destination
|
9030
|
-
# The
|
9031
|
-
#
|
9079
|
+
# The ID or ARN of the destination. If the resource is in another
|
9080
|
+
# account, you must specify an ARN.
|
9032
9081
|
# @return [String]
|
9033
9082
|
#
|
9034
9083
|
# @!attribute [rw] protocol
|
@@ -9063,6 +9112,18 @@ module Aws::EC2
|
|
9063
9112
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
9064
9113
|
# @return [String]
|
9065
9114
|
#
|
9115
|
+
# @!attribute [rw] filter_at_source
|
9116
|
+
# Scopes the analysis to network paths that match specific filters at
|
9117
|
+
# the source. If you specify this parameter, you can't specify the
|
9118
|
+
# parameters for the source IP address or the destination port.
|
9119
|
+
# @return [Types::PathRequestFilter]
|
9120
|
+
#
|
9121
|
+
# @!attribute [rw] filter_at_destination
|
9122
|
+
# Scopes the analysis to network paths that match specific filters at
|
9123
|
+
# the destination. If you specify this parameter, you can't specify
|
9124
|
+
# the parameter for the destination IP address.
|
9125
|
+
# @return [Types::PathRequestFilter]
|
9126
|
+
#
|
9066
9127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInsightsPathRequest AWS API Documentation
|
9067
9128
|
#
|
9068
9129
|
class CreateNetworkInsightsPathRequest < Struct.new(
|
@@ -9074,7 +9135,9 @@ module Aws::EC2
|
|
9074
9135
|
:destination_port,
|
9075
9136
|
:tag_specifications,
|
9076
9137
|
:dry_run,
|
9077
|
-
:client_token
|
9138
|
+
:client_token,
|
9139
|
+
:filter_at_source,
|
9140
|
+
:filter_at_destination)
|
9078
9141
|
SENSITIVE = []
|
9079
9142
|
include Aws::Structure
|
9080
9143
|
end
|
@@ -9750,7 +9813,7 @@ module Aws::EC2
|
|
9750
9813
|
end
|
9751
9814
|
|
9752
9815
|
# @!attribute [rw] description
|
9753
|
-
# A description for the security group.
|
9816
|
+
# A description for the security group.
|
9754
9817
|
#
|
9755
9818
|
# Constraints: Up to 255 characters in length
|
9756
9819
|
#
|
@@ -10053,14 +10116,14 @@ module Aws::EC2
|
|
10053
10116
|
#
|
10054
10117
|
# The following are valid values:
|
10055
10118
|
#
|
10056
|
-
# * `prefix
|
10119
|
+
# * `prefix`: The Amazon EC2 Prefix Delegation feature assigns the IP
|
10057
10120
|
# addresses to network interfaces that are associated with an
|
10058
10121
|
# instance. For information about Prefix Delegation, see [Prefix
|
10059
10122
|
# Delegation for Amazon EC2 network interfaces][1] in the *Amazon
|
10060
10123
|
# Elastic Compute Cloud User Guide*.
|
10061
10124
|
#
|
10062
|
-
# * `explicit
|
10063
|
-
#
|
10125
|
+
# * `explicit`: You manually assign the IP addresses to resources that
|
10126
|
+
# reside in your subnet.
|
10064
10127
|
#
|
10065
10128
|
#
|
10066
10129
|
#
|
@@ -11689,11 +11752,11 @@ module Aws::EC2
|
|
11689
11752
|
#
|
11690
11753
|
# The following are the supported values for each volume type:
|
11691
11754
|
#
|
11692
|
-
# * `gp3
|
11755
|
+
# * `gp3`: 3,000-16,000 IOPS
|
11693
11756
|
#
|
11694
|
-
# * `io1
|
11757
|
+
# * `io1`: 100-64,000 IOPS
|
11695
11758
|
#
|
11696
|
-
# * `io2
|
11759
|
+
# * `io2`: 100-64,000 IOPS
|
11697
11760
|
#
|
11698
11761
|
# `io1` and `io2` volumes support up to 64,000 IOPS only on [Instances
|
11699
11762
|
# built on the Nitro System][1]. Other instance families support
|
@@ -11743,13 +11806,13 @@ module Aws::EC2
|
|
11743
11806
|
#
|
11744
11807
|
# The following are the supported volumes sizes for each volume type:
|
11745
11808
|
#
|
11746
|
-
# * `gp2` and `gp3
|
11809
|
+
# * `gp2` and `gp3`: 1-16,384
|
11747
11810
|
#
|
11748
|
-
# * `io1` and `io2
|
11811
|
+
# * `io1` and `io2`: 4-16,384
|
11749
11812
|
#
|
11750
|
-
# * `st1` and `sc1
|
11813
|
+
# * `st1` and `sc1`: 125-16,384
|
11751
11814
|
#
|
11752
|
-
# * `standard
|
11815
|
+
# * `standard`: 1-1,024
|
11753
11816
|
# @return [Integer]
|
11754
11817
|
#
|
11755
11818
|
# @!attribute [rw] snapshot_id
|
@@ -11988,7 +12051,7 @@ module Aws::EC2
|
|
11988
12051
|
# names that are automatically generated by the VPC endpoint service.
|
11989
12052
|
#
|
11990
12053
|
# To use a private hosted zone, you must set the following VPC
|
11991
|
-
# attributes to `true
|
12054
|
+
# attributes to `true`: `enableDnsHostnames` and `enableDnsSupport`.
|
11992
12055
|
# Use ModifyVpcAttribute to set the VPC attributes.
|
11993
12056
|
#
|
11994
12057
|
# Default: `true`
|
@@ -15571,10 +15634,10 @@ module Aws::EC2
|
|
15571
15634
|
#
|
15572
15635
|
# * `public-ip` - The Elastic IP address, or the carrier IP address.
|
15573
15636
|
#
|
15574
|
-
# * `tag
|
15575
|
-
#
|
15576
|
-
#
|
15577
|
-
#
|
15637
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
15638
|
+
# the resource. Use the tag key in the filter name and the tag value
|
15639
|
+
# as the filter value. For example, to find all resources that have
|
15640
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
15578
15641
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
15579
15642
|
#
|
15580
15643
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -16130,10 +16193,10 @@ module Aws::EC2
|
|
16130
16193
|
# * `owner-id` - The Amazon Web Services account ID of the owner of
|
16131
16194
|
# the carrier gateway.
|
16132
16195
|
#
|
16133
|
-
# * `tag
|
16134
|
-
#
|
16135
|
-
#
|
16136
|
-
#
|
16196
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
16197
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16198
|
+
# as the filter value. For example, to find all resources that have
|
16199
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
16137
16200
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16138
16201
|
#
|
16139
16202
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -16198,10 +16261,10 @@ module Aws::EC2
|
|
16198
16261
|
#
|
16199
16262
|
# * `instance-id` - The ID of the instance.
|
16200
16263
|
#
|
16201
|
-
# * `tag
|
16202
|
-
#
|
16203
|
-
#
|
16204
|
-
#
|
16264
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
16265
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16266
|
+
# as the filter value. For example, to find all resources that have
|
16267
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
16205
16268
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16206
16269
|
#
|
16207
16270
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -16704,10 +16767,10 @@ module Aws::EC2
|
|
16704
16767
|
# * `type` - The type of customer gateway. Currently, the only
|
16705
16768
|
# supported type is `ipsec.1`.
|
16706
16769
|
#
|
16707
|
-
# * `tag
|
16708
|
-
#
|
16709
|
-
#
|
16710
|
-
#
|
16770
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
16771
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16772
|
+
# as the filter value. For example, to find all resources that have
|
16773
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
16711
16774
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16712
16775
|
#
|
16713
16776
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -16765,10 +16828,10 @@ module Aws::EC2
|
|
16765
16828
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
16766
16829
|
# the DHCP options set.
|
16767
16830
|
#
|
16768
|
-
# * `tag
|
16769
|
-
#
|
16770
|
-
#
|
16771
|
-
#
|
16831
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
16832
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16833
|
+
# as the filter value. For example, to find all resources that have
|
16834
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
16772
16835
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16773
16836
|
#
|
16774
16837
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -16859,10 +16922,10 @@ module Aws::EC2
|
|
16859
16922
|
# @!attribute [rw] filters
|
16860
16923
|
# One or more filters.
|
16861
16924
|
#
|
16862
|
-
# * `tag
|
16863
|
-
#
|
16864
|
-
#
|
16865
|
-
#
|
16925
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
16926
|
+
# the resource. Use the tag key in the filter name and the tag value
|
16927
|
+
# as the filter value. For example, to find all resources that have
|
16928
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
16866
16929
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16867
16930
|
#
|
16868
16931
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -17277,14 +17340,14 @@ module Aws::EC2
|
|
17277
17340
|
# @!attribute [rw] filters
|
17278
17341
|
# The filters. The possible values are:
|
17279
17342
|
#
|
17280
|
-
# * `availability-zone
|
17343
|
+
# * `availability-zone`: The Availability Zone of the snapshot.
|
17281
17344
|
#
|
17282
|
-
# * `owner-id
|
17283
|
-
#
|
17345
|
+
# * `owner-id`: The ID of the Amazon Web Services account that enabled
|
17346
|
+
# fast snapshot restore on the snapshot.
|
17284
17347
|
#
|
17285
|
-
# * `snapshot-id
|
17348
|
+
# * `snapshot-id`: The ID of the snapshot.
|
17286
17349
|
#
|
17287
|
-
# * `state
|
17350
|
+
# * `state`: The state of fast snapshot restores for the snapshot
|
17288
17351
|
# (`enabling` \| `optimizing` \| `enabled` \| `disabling` \|
|
17289
17352
|
# `disabled`).
|
17290
17353
|
# @return [Array<Types::Filter>]
|
@@ -17419,7 +17482,7 @@ module Aws::EC2
|
|
17419
17482
|
#
|
17420
17483
|
# @!attribute [rw] start_time
|
17421
17484
|
# The start date and time for the events, in UTC format (for example,
|
17422
|
-
# *YYYY*-*MM*-*DD*T*HH
|
17485
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
17423
17486
|
# @return [Time]
|
17424
17487
|
#
|
17425
17488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFleetHistoryRequest AWS API Documentation
|
@@ -17441,8 +17504,8 @@ module Aws::EC2
|
|
17441
17504
|
#
|
17442
17505
|
# @!attribute [rw] last_evaluated_time
|
17443
17506
|
# The last date and time for the events, in UTC format (for example,
|
17444
|
-
# *YYYY*-*MM*-*DD*T*HH
|
17445
|
-
#
|
17507
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). All records up to this time were
|
17508
|
+
# retrieved.
|
17446
17509
|
#
|
17447
17510
|
# If `nextToken` indicates that there are more items, this value is
|
17448
17511
|
# not present.
|
@@ -17459,7 +17522,7 @@ module Aws::EC2
|
|
17459
17522
|
#
|
17460
17523
|
# @!attribute [rw] start_time
|
17461
17524
|
# The start date and time for the events, in UTC format (for example,
|
17462
|
-
# *YYYY*-*MM*-*DD*T*HH
|
17525
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
17463
17526
|
# @return [Time]
|
17464
17527
|
#
|
17465
17528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFleetHistoryResult AWS API Documentation
|
@@ -17691,10 +17754,10 @@ module Aws::EC2
|
|
17691
17754
|
# * `traffic-type` - The type of traffic (`ACCEPT` \| `REJECT` \|
|
17692
17755
|
# `ALL`).
|
17693
17756
|
#
|
17694
|
-
# * `tag
|
17695
|
-
#
|
17696
|
-
#
|
17697
|
-
#
|
17757
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
17758
|
+
# the resource. Use the tag key in the filter name and the tag value
|
17759
|
+
# as the filter value. For example, to find all resources that have
|
17760
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
17698
17761
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
17699
17762
|
#
|
17700
17763
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -17830,10 +17893,10 @@ module Aws::EC2
|
|
17830
17893
|
# * `state` - The state of the AFI (`pending` \| `failed` \|
|
17831
17894
|
# `available` \| `unavailable`).
|
17832
17895
|
#
|
17833
|
-
# * `tag
|
17834
|
-
#
|
17835
|
-
#
|
17836
|
-
#
|
17896
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
17897
|
+
# the resource. Use the tag key in the filter name and the tag value
|
17898
|
+
# as the filter value. For example, to find all resources that have
|
17899
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
17837
17900
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
17838
17901
|
#
|
17839
17902
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -18233,7 +18296,7 @@ module Aws::EC2
|
|
18233
18296
|
# @!attribute [rw] attribute
|
18234
18297
|
# The AMI attribute.
|
18235
18298
|
#
|
18236
|
-
# **Note
|
18299
|
+
# **Note**: The `blockDeviceMapping` attribute is deprecated. Using
|
18237
18300
|
# this attribute returns the `Client.AuthFailure` error. To get
|
18238
18301
|
# information about the block device mappings for an AMI, use the
|
18239
18302
|
# DescribeImages action.
|
@@ -18367,10 +18430,10 @@ module Aws::EC2
|
|
18367
18430
|
# * `sriov-net-support` - A value of `simple` indicates that enhanced
|
18368
18431
|
# networking with the Intel 82599 VF interface is enabled.
|
18369
18432
|
#
|
18370
|
-
# * `tag
|
18371
|
-
#
|
18372
|
-
#
|
18373
|
-
#
|
18433
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
18434
|
+
# the resource. Use the tag key in the filter name and the tag value
|
18435
|
+
# as the filter value. For example, to find all resources that have
|
18436
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
18374
18437
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
18375
18438
|
#
|
18376
18439
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -19569,10 +19632,10 @@ module Aws::EC2
|
|
19569
19632
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
19570
19633
|
# the internet gateway.
|
19571
19634
|
#
|
19572
|
-
# * `tag
|
19573
|
-
#
|
19574
|
-
#
|
19575
|
-
#
|
19635
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
19636
|
+
# the resource. Use the tag key in the filter name and the tag value
|
19637
|
+
# as the filter value. For example, to find all resources that have
|
19638
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
19576
19639
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
19577
19640
|
#
|
19578
19641
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -19947,10 +20010,10 @@ module Aws::EC2
|
|
19947
20010
|
# @!attribute [rw] filters
|
19948
20011
|
# One or more filters.
|
19949
20012
|
#
|
19950
|
-
# * `tag
|
19951
|
-
#
|
19952
|
-
#
|
19953
|
-
#
|
20013
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20014
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20015
|
+
# as the filter value. For example, to find all resources that have
|
20016
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
19954
20017
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
19955
20018
|
#
|
19956
20019
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -20001,10 +20064,10 @@ module Aws::EC2
|
|
20001
20064
|
# filter to find all resources assigned a tag with a specific key,
|
20002
20065
|
# regardless of the tag value.
|
20003
20066
|
#
|
20004
|
-
# * `tag
|
20005
|
-
#
|
20006
|
-
#
|
20007
|
-
#
|
20067
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20068
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20069
|
+
# as the filter value. For example, to find all resources that have
|
20070
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
20008
20071
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
20009
20072
|
# @return [Array<Types::Filter>]
|
20010
20073
|
#
|
@@ -20230,10 +20293,10 @@ module Aws::EC2
|
|
20230
20293
|
#
|
20231
20294
|
# * `launch-template-name` - The name of the launch template.
|
20232
20295
|
#
|
20233
|
-
# * `tag
|
20234
|
-
#
|
20235
|
-
#
|
20236
|
-
#
|
20296
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20297
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20298
|
+
# as the filter value. For example, to find all resources that have
|
20299
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
20237
20300
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
20238
20301
|
#
|
20239
20302
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -20846,10 +20909,10 @@ module Aws::EC2
|
|
20846
20909
|
# * `subnet-id` - The ID of the subnet in which the NAT gateway
|
20847
20910
|
# resides.
|
20848
20911
|
#
|
20849
|
-
# * `tag
|
20850
|
-
#
|
20851
|
-
#
|
20852
|
-
#
|
20912
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
20913
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20914
|
+
# as the filter value. For example, to find all resources that have
|
20915
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
20853
20916
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
20854
20917
|
#
|
20855
20918
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -20955,10 +21018,10 @@ module Aws::EC2
|
|
20955
21018
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
20956
21019
|
# the network ACL.
|
20957
21020
|
#
|
20958
|
-
# * `tag
|
20959
|
-
#
|
20960
|
-
#
|
20961
|
-
#
|
21021
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
21022
|
+
# the resource. Use the tag key in the filter name and the tag value
|
21023
|
+
# as the filter value. For example, to find all resources that have
|
21024
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
20962
21025
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
20963
21026
|
#
|
20964
21027
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -21241,7 +21304,29 @@ module Aws::EC2
|
|
21241
21304
|
#
|
21242
21305
|
# * destination - The ID of the resource.
|
21243
21306
|
#
|
21244
|
-
# *
|
21307
|
+
# * filter-at-source.source-address - The source IPv4 address at the
|
21308
|
+
# source.
|
21309
|
+
#
|
21310
|
+
# * filter-at-source.source-port-range - The source port range at the
|
21311
|
+
# source.
|
21312
|
+
#
|
21313
|
+
# * filter-at-source.destination-address - The destination IPv4
|
21314
|
+
# address at the source.
|
21315
|
+
#
|
21316
|
+
# * filter-at-source.destination-port-range - The destination port
|
21317
|
+
# range at the source.
|
21318
|
+
#
|
21319
|
+
# * filter-at-destination.source-address - The source IPv4 address at
|
21320
|
+
# the destination.
|
21321
|
+
#
|
21322
|
+
# * filter-at-destination.source-port-range - The source port range at
|
21323
|
+
# the destination.
|
21324
|
+
#
|
21325
|
+
# * filter-at-destination.destination-address - The destination IPv4
|
21326
|
+
# address at the destination.
|
21327
|
+
#
|
21328
|
+
# * filter-at-destination.destination-port-range - The destination
|
21329
|
+
# port range at the destination.
|
21245
21330
|
#
|
21246
21331
|
# * protocol - The protocol.
|
21247
21332
|
#
|
@@ -21538,10 +21623,10 @@ module Aws::EC2
|
|
21538
21623
|
#
|
21539
21624
|
# * `subnet-id` - The ID of the subnet for the network interface.
|
21540
21625
|
#
|
21541
|
-
# * `tag
|
21542
|
-
#
|
21543
|
-
#
|
21544
|
-
#
|
21626
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
21627
|
+
# the resource. Use the tag key in the filter name and the tag value
|
21628
|
+
# as the filter value. For example, to find all resources that have
|
21629
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
21545
21630
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
21546
21631
|
#
|
21547
21632
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -21691,9 +21776,9 @@ module Aws::EC2
|
|
21691
21776
|
# @!attribute [rw] filters
|
21692
21777
|
# One or more filters.
|
21693
21778
|
#
|
21694
|
-
# * `prefix-list-id
|
21779
|
+
# * `prefix-list-id`: The ID of a prefix list.
|
21695
21780
|
#
|
21696
|
-
# * `prefix-list-name
|
21781
|
+
# * `prefix-list-name`: The name of a prefix list.
|
21697
21782
|
# @return [Array<Types::Filter>]
|
21698
21783
|
#
|
21699
21784
|
# @!attribute [rw] max_results
|
@@ -21816,10 +21901,10 @@ module Aws::EC2
|
|
21816
21901
|
# @!attribute [rw] filters
|
21817
21902
|
# One or more filters.
|
21818
21903
|
#
|
21819
|
-
# * `tag
|
21820
|
-
#
|
21821
|
-
#
|
21822
|
-
#
|
21904
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
21905
|
+
# the resource. Use the tag key in the filter name and the tag value
|
21906
|
+
# as the filter value. For example, to find all resources that have
|
21907
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
21823
21908
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
21824
21909
|
#
|
21825
21910
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -22452,10 +22537,10 @@ module Aws::EC2
|
|
22452
22537
|
# * `route.vpc-peering-connection-id` - The ID of a VPC peering
|
22453
22538
|
# connection specified in a route in the table.
|
22454
22539
|
#
|
22455
|
-
# * `tag
|
22456
|
-
#
|
22457
|
-
#
|
22458
|
-
#
|
22540
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
22541
|
+
# the resource. Use the tag key in the filter name and the tag value
|
22542
|
+
# as the filter value. For example, to find all resources that have
|
22543
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
22459
22544
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
22460
22545
|
#
|
22461
22546
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -22729,10 +22814,10 @@ module Aws::EC2
|
|
22729
22814
|
#
|
22730
22815
|
# * `security-group-rule-id` - The ID of the security group rule.
|
22731
22816
|
#
|
22732
|
-
# * `tag
|
22733
|
-
#
|
22734
|
-
#
|
22735
|
-
#
|
22817
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
22818
|
+
# the resource. Use the tag key in the filter name and the tag value
|
22819
|
+
# as the filter value. For example, to find all resources that have
|
22820
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
22736
22821
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
22737
22822
|
# @return [Array<Types::Filter>]
|
22738
22823
|
#
|
@@ -22867,10 +22952,10 @@ module Aws::EC2
|
|
22867
22952
|
# * `owner-id` - The Amazon Web Services account ID of the owner of
|
22868
22953
|
# the security group.
|
22869
22954
|
#
|
22870
|
-
# * `tag
|
22871
|
-
#
|
22872
|
-
#
|
22873
|
-
#
|
22955
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
22956
|
+
# the resource. Use the tag key in the filter name and the tag value
|
22957
|
+
# as the filter value. For example, to find all resources that have
|
22958
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
22874
22959
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
22875
22960
|
#
|
22876
22961
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -23098,10 +23183,10 @@ module Aws::EC2
|
|
23098
23183
|
# * `storage-tier` - The storage tier of the snapshot (`archive` \|
|
23099
23184
|
# `standard`).
|
23100
23185
|
#
|
23101
|
-
# * `tag
|
23102
|
-
#
|
23103
|
-
#
|
23104
|
-
#
|
23186
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
23187
|
+
# the resource. Use the tag key in the filter name and the tag value
|
23188
|
+
# as the filter value. For example, to find all resources that have
|
23189
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
23105
23190
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
23106
23191
|
#
|
23107
23192
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -23321,7 +23406,7 @@ module Aws::EC2
|
|
23321
23406
|
#
|
23322
23407
|
# @!attribute [rw] start_time
|
23323
23408
|
# The starting date and time for the events, in UTC format (for
|
23324
|
-
# example, *YYYY*-*MM*-*DD*T*HH
|
23409
|
+
# example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
23325
23410
|
# @return [Time]
|
23326
23411
|
#
|
23327
23412
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistoryRequest AWS API Documentation
|
@@ -23346,8 +23431,8 @@ module Aws::EC2
|
|
23346
23431
|
#
|
23347
23432
|
# @!attribute [rw] last_evaluated_time
|
23348
23433
|
# The last date and time for the events, in UTC format (for example,
|
23349
|
-
# *YYYY*-*MM*-*DD*T*HH
|
23350
|
-
#
|
23434
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). All records up to this time were
|
23435
|
+
# retrieved.
|
23351
23436
|
#
|
23352
23437
|
# If `nextToken` indicates that there are more items, this value is
|
23353
23438
|
# not present.
|
@@ -23364,7 +23449,7 @@ module Aws::EC2
|
|
23364
23449
|
#
|
23365
23450
|
# @!attribute [rw] start_time
|
23366
23451
|
# The starting date and time for the events, in UTC format (for
|
23367
|
-
# example, *YYYY*-*MM*-*DD*T*HH
|
23452
|
+
# example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
23368
23453
|
# @return [Time]
|
23369
23454
|
#
|
23370
23455
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotFleetRequestHistoryResponse AWS API Documentation
|
@@ -23643,7 +23728,7 @@ module Aws::EC2
|
|
23643
23728
|
# supported).
|
23644
23729
|
#
|
23645
23730
|
# * `timestamp` - The time stamp of the Spot price history, in UTC
|
23646
|
-
# format (for example, *YYYY*-*MM*-*DD*T*HH
|
23731
|
+
# format (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). You can
|
23647
23732
|
# use wildcards (* and ?). Greater than or less than comparison is
|
23648
23733
|
# not supported.
|
23649
23734
|
# @return [Array<Types::Filter>]
|
@@ -23662,7 +23747,7 @@ module Aws::EC2
|
|
23662
23747
|
# @!attribute [rw] end_time
|
23663
23748
|
# The date and time, up to the current date, from which to stop
|
23664
23749
|
# retrieving the price history data, in UTC format (for example,
|
23665
|
-
# *YYYY*-*MM*-*DD*T*HH
|
23750
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
23666
23751
|
# @return [Time]
|
23667
23752
|
#
|
23668
23753
|
# @!attribute [rw] instance_types
|
@@ -23692,7 +23777,7 @@ module Aws::EC2
|
|
23692
23777
|
# @!attribute [rw] start_time
|
23693
23778
|
# The date and time, up to the past 90 days, from which to start
|
23694
23779
|
# retrieving the price history data, in UTC format (for example,
|
23695
|
-
# *YYYY*-*MM*-*DD*T*HH
|
23780
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
23696
23781
|
# @return [Time]
|
23697
23782
|
#
|
23698
23783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSpotPriceHistoryRequest AWS API Documentation
|
@@ -23937,10 +24022,10 @@ module Aws::EC2
|
|
23937
24022
|
#
|
23938
24023
|
# * `subnet-id` - The ID of the subnet.
|
23939
24024
|
#
|
23940
|
-
# * `tag
|
23941
|
-
#
|
23942
|
-
#
|
23943
|
-
#
|
24025
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
24026
|
+
# the resource. Use the tag key in the filter name and the tag value
|
24027
|
+
# as the filter value. For example, to find all resources that have
|
24028
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
23944
24029
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
23945
24030
|
#
|
23946
24031
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -24034,7 +24119,7 @@ module Aws::EC2
|
|
24034
24119
|
# `vpc-endpoint-service` \| `vpc-peering-connection` \|
|
24035
24120
|
# `vpn-connection` \| `vpn-gateway`).
|
24036
24121
|
#
|
24037
|
-
# * `tag
|
24122
|
+
# * `tag`:<key> - The key/value combination of the tag. For
|
24038
24123
|
# example, specify "tag:Owner" for the filter name and "TeamA"
|
24039
24124
|
# for the filter value to find resources with the tag
|
24040
24125
|
# "Owner=TeamA".
|
@@ -24102,9 +24187,9 @@ module Aws::EC2
|
|
24102
24187
|
# @!attribute [rw] filters
|
24103
24188
|
# One or more filters. The possible values are:
|
24104
24189
|
#
|
24105
|
-
# * `description
|
24190
|
+
# * `description`: The Traffic Mirror filter description.
|
24106
24191
|
#
|
24107
|
-
# * `traffic-mirror-filter-id
|
24192
|
+
# * `traffic-mirror-filter-id`: The ID of the Traffic Mirror filter.
|
24108
24193
|
# @return [Array<Types::Filter>]
|
24109
24194
|
#
|
24110
24195
|
# @!attribute [rw] max_results
|
@@ -24161,27 +24246,26 @@ module Aws::EC2
|
|
24161
24246
|
# @!attribute [rw] filters
|
24162
24247
|
# One or more filters. The possible values are:
|
24163
24248
|
#
|
24164
|
-
# * `description
|
24249
|
+
# * `description`: The Traffic Mirror session description.
|
24165
24250
|
#
|
24166
|
-
# * `network-interface-id
|
24251
|
+
# * `network-interface-id`: The ID of the Traffic Mirror session
|
24167
24252
|
# network interface.
|
24168
24253
|
#
|
24169
|
-
# * `owner-id
|
24254
|
+
# * `owner-id`: The ID of the account that owns the Traffic Mirror
|
24170
24255
|
# session.
|
24171
24256
|
#
|
24172
|
-
# * `packet-length
|
24257
|
+
# * `packet-length`: The assigned number of packets to mirror.
|
24173
24258
|
#
|
24174
|
-
# * `session-number
|
24259
|
+
# * `session-number`: The assigned session number.
|
24175
24260
|
#
|
24176
|
-
# * `traffic-mirror-filter-id
|
24261
|
+
# * `traffic-mirror-filter-id`: The ID of the Traffic Mirror filter.
|
24177
24262
|
#
|
24178
|
-
# * `traffic-mirror-session-id
|
24179
|
-
# session.
|
24263
|
+
# * `traffic-mirror-session-id`: The ID of the Traffic Mirror session.
|
24180
24264
|
#
|
24181
|
-
# * `traffic-mirror-target-id
|
24265
|
+
# * `traffic-mirror-target-id`: The ID of the Traffic Mirror target.
|
24182
24266
|
#
|
24183
|
-
# * `virtual-network-id
|
24184
|
-
#
|
24267
|
+
# * `virtual-network-id`: The virtual network ID of the Traffic Mirror
|
24268
|
+
# session.
|
24185
24269
|
# @return [Array<Types::Filter>]
|
24186
24270
|
#
|
24187
24271
|
# @!attribute [rw] max_results
|
@@ -24240,18 +24324,18 @@ module Aws::EC2
|
|
24240
24324
|
# @!attribute [rw] filters
|
24241
24325
|
# One or more filters. The possible values are:
|
24242
24326
|
#
|
24243
|
-
# * `description
|
24327
|
+
# * `description`: The Traffic Mirror target description.
|
24244
24328
|
#
|
24245
|
-
# * `network-interface-id
|
24329
|
+
# * `network-interface-id`: The ID of the Traffic Mirror session
|
24246
24330
|
# network interface.
|
24247
24331
|
#
|
24248
|
-
# * `network-load-balancer-arn
|
24249
|
-
#
|
24332
|
+
# * `network-load-balancer-arn`: The Amazon Resource Name (ARN) of the
|
24333
|
+
# Network Load Balancer that is associated with the session.
|
24250
24334
|
#
|
24251
|
-
# * `owner-id
|
24335
|
+
# * `owner-id`: The ID of the account that owns the Traffic Mirror
|
24252
24336
|
# session.
|
24253
24337
|
#
|
24254
|
-
# * `traffic-mirror-target-id
|
24338
|
+
# * `traffic-mirror-target-id`: The ID of the Traffic Mirror target.
|
24255
24339
|
# @return [Array<Types::Filter>]
|
24256
24340
|
#
|
24257
24341
|
# @!attribute [rw] max_results
|
@@ -24590,10 +24674,10 @@ module Aws::EC2
|
|
24590
24674
|
# `initiatingRequest` \| `modifying` \| `pendingAcceptance` \|
|
24591
24675
|
# `pending` \| `rollingBack` \| `rejected` \| `rejecting`).
|
24592
24676
|
#
|
24593
|
-
# * `tag
|
24594
|
-
#
|
24595
|
-
#
|
24596
|
-
#
|
24677
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
24678
|
+
# the resource. Use the tag key in the filter name and the tag value
|
24679
|
+
# as the filter value. For example, to find all resources that have
|
24680
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
24597
24681
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
24598
24682
|
#
|
24599
24683
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -25400,8 +25484,8 @@ module Aws::EC2
|
|
25400
25484
|
#
|
25401
25485
|
# * `event.event-id` - The event ID.
|
25402
25486
|
#
|
25403
|
-
# * `event.event-type` - The event type (for `io-enabled
|
25404
|
-
#
|
25487
|
+
# * `event.event-type` - The event type (for `io-enabled`: `passed` \|
|
25488
|
+
# `failed`; for `io-performance`: `io-performance:degraded` \|
|
25405
25489
|
# `io-performance:severely-degraded` \| `io-performance:stalled`).
|
25406
25490
|
#
|
25407
25491
|
# * `event.not-after` - The latest end time for the event.
|
@@ -25412,8 +25496,8 @@ module Aws::EC2
|
|
25412
25496
|
# `volume-status.status` (`io-enabled` \| `io-performance`).
|
25413
25497
|
#
|
25414
25498
|
# * `volume-status.details-status` - The status of
|
25415
|
-
# `volume-status.details-name` (for `io-enabled
|
25416
|
-
# `failed`; for `io-performance
|
25499
|
+
# `volume-status.details-name` (for `io-enabled`: `passed` \|
|
25500
|
+
# `failed`; for `io-performance`: `normal` \| `degraded` \|
|
25417
25501
|
# `severely-degraded` \| `stalled`).
|
25418
25502
|
#
|
25419
25503
|
# * `volume-status.status` - The status of the volume (`ok` \|
|
@@ -25610,10 +25694,10 @@ module Aws::EC2
|
|
25610
25694
|
# * `status` - The state of the volume (`creating` \| `available` \|
|
25611
25695
|
# `in-use` \| `deleting` \| `deleted` \| `error`).
|
25612
25696
|
#
|
25613
|
-
# * `tag
|
25614
|
-
#
|
25615
|
-
#
|
25616
|
-
#
|
25697
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
25698
|
+
# the resource. Use the tag key in the filter name and the tag value
|
25699
|
+
# as the filter value. For example, to find all resources that have
|
25700
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
25617
25701
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
25618
25702
|
#
|
25619
25703
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -25798,10 +25882,10 @@ module Aws::EC2
|
|
25798
25882
|
# * `is-classic-link-enabled` - Whether the VPC is enabled for
|
25799
25883
|
# ClassicLink (`true` \| `false`).
|
25800
25884
|
#
|
25801
|
-
# * `tag
|
25802
|
-
#
|
25803
|
-
#
|
25804
|
-
#
|
25885
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
25886
|
+
# the resource. Use the tag key in the filter name and the tag value
|
25887
|
+
# as the filter value. For example, to find all resources that have
|
25888
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
25805
25889
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
25806
25890
|
#
|
25807
25891
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26002,10 +26086,10 @@ module Aws::EC2
|
|
26002
26086
|
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
26003
26087
|
# `ipv6`).
|
26004
26088
|
#
|
26005
|
-
# * `tag
|
26006
|
-
#
|
26007
|
-
#
|
26008
|
-
#
|
26089
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26090
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26091
|
+
# as the filter value. For example, to find all resources that have
|
26092
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26009
26093
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26010
26094
|
#
|
26011
26095
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26142,10 +26226,10 @@ module Aws::EC2
|
|
26142
26226
|
# * `supported-ip-address-types` - The IP address type (`ipv4` \|
|
26143
26227
|
# `ipv6`).
|
26144
26228
|
#
|
26145
|
-
# * `tag
|
26146
|
-
#
|
26147
|
-
#
|
26148
|
-
#
|
26229
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26230
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26231
|
+
# as the filter value. For example, to find all resources that have
|
26232
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26149
26233
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26150
26234
|
#
|
26151
26235
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26220,10 +26304,10 @@ module Aws::EC2
|
|
26220
26304
|
#
|
26221
26305
|
# * `service-name` - The name of the service.
|
26222
26306
|
#
|
26223
|
-
# * `tag
|
26224
|
-
#
|
26225
|
-
#
|
26226
|
-
#
|
26307
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26308
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26309
|
+
# as the filter value. For example, to find all resources that have
|
26310
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26227
26311
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26228
26312
|
#
|
26229
26313
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26315,10 +26399,10 @@ module Aws::EC2
|
|
26315
26399
|
# * `status-message` - A message that provides more information about
|
26316
26400
|
# the status of the VPC peering connection, if applicable.
|
26317
26401
|
#
|
26318
|
-
# * `tag
|
26319
|
-
#
|
26320
|
-
#
|
26321
|
-
#
|
26402
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26403
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26404
|
+
# as the filter value. For example, to find all resources that have
|
26405
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26322
26406
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26323
26407
|
#
|
26324
26408
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26426,10 +26510,10 @@ module Aws::EC2
|
|
26426
26510
|
#
|
26427
26511
|
# * `state` - The state of the VPC (`pending` \| `available`).
|
26428
26512
|
#
|
26429
|
-
# * `tag
|
26430
|
-
#
|
26431
|
-
#
|
26432
|
-
#
|
26513
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26514
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26515
|
+
# as the filter value. For example, to find all resources that have
|
26516
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26433
26517
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26434
26518
|
#
|
26435
26519
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26522,10 +26606,10 @@ module Aws::EC2
|
|
26522
26606
|
# * `bgp-asn` - The BGP Autonomous System Number (ASN) associated with
|
26523
26607
|
# a BGP device.
|
26524
26608
|
#
|
26525
|
-
# * `tag
|
26526
|
-
#
|
26527
|
-
#
|
26528
|
-
#
|
26609
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26610
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26611
|
+
# as the filter value. For example, to find all resources that have
|
26612
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26529
26613
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26530
26614
|
#
|
26531
26615
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26601,10 +26685,10 @@ module Aws::EC2
|
|
26601
26685
|
# * `state` - The state of the virtual private gateway (`pending` \|
|
26602
26686
|
# `available` \| `deleting` \| `deleted`).
|
26603
26687
|
#
|
26604
|
-
# * `tag
|
26605
|
-
#
|
26606
|
-
#
|
26607
|
-
#
|
26688
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
26689
|
+
# the resource. Use the tag key in the filter name and the tag value
|
26690
|
+
# as the filter value. For example, to find all resources that have
|
26691
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
26608
26692
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26609
26693
|
#
|
26610
26694
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -28245,7 +28329,7 @@ module Aws::EC2
|
|
28245
28329
|
:bytes,
|
28246
28330
|
:format,
|
28247
28331
|
:import_manifest_url)
|
28248
|
-
SENSITIVE = []
|
28332
|
+
SENSITIVE = [:import_manifest_url]
|
28249
28333
|
include Aws::Structure
|
28250
28334
|
end
|
28251
28335
|
|
@@ -28317,10 +28401,15 @@ module Aws::EC2
|
|
28317
28401
|
# The DNS records created for the endpoint.
|
28318
28402
|
# @return [String]
|
28319
28403
|
#
|
28404
|
+
# @!attribute [rw] private_dns_only_for_inbound_resolver_endpoint
|
28405
|
+
# Indicates whether to enable private DNS only for inbound endpoints.
|
28406
|
+
# @return [Boolean]
|
28407
|
+
#
|
28320
28408
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptions AWS API Documentation
|
28321
28409
|
#
|
28322
28410
|
class DnsOptions < Struct.new(
|
28323
|
-
:dns_record_ip_type
|
28411
|
+
:dns_record_ip_type,
|
28412
|
+
:private_dns_only_for_inbound_resolver_endpoint)
|
28324
28413
|
SENSITIVE = []
|
28325
28414
|
include Aws::Structure
|
28326
28415
|
end
|
@@ -28331,10 +28420,19 @@ module Aws::EC2
|
|
28331
28420
|
# The DNS records created for the endpoint.
|
28332
28421
|
# @return [String]
|
28333
28422
|
#
|
28423
|
+
# @!attribute [rw] private_dns_only_for_inbound_resolver_endpoint
|
28424
|
+
# Indicates whether to enable private DNS only for inbound endpoints.
|
28425
|
+
# This option is available only for services that support both gateway
|
28426
|
+
# and interface endpoints. It routes traffic that originates from the
|
28427
|
+
# VPC to the gateway endpoint and traffic that originates from
|
28428
|
+
# on-premises to the interface endpoint.
|
28429
|
+
# @return [Boolean]
|
28430
|
+
#
|
28334
28431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DnsOptionsSpecification AWS API Documentation
|
28335
28432
|
#
|
28336
28433
|
class DnsOptionsSpecification < Struct.new(
|
28337
|
-
:dns_record_ip_type
|
28434
|
+
:dns_record_ip_type,
|
28435
|
+
:private_dns_only_for_inbound_resolver_endpoint)
|
28338
28436
|
SENSITIVE = []
|
28339
28437
|
include Aws::Structure
|
28340
28438
|
end
|
@@ -28383,11 +28481,11 @@ module Aws::EC2
|
|
28383
28481
|
#
|
28384
28482
|
# The following are the supported values for each volume type:
|
28385
28483
|
#
|
28386
|
-
# * `gp3
|
28484
|
+
# * `gp3`: 3,000-16,000 IOPS
|
28387
28485
|
#
|
28388
|
-
# * `io1
|
28486
|
+
# * `io1`: 100-64,000 IOPS
|
28389
28487
|
#
|
28390
|
-
# * `io2
|
28488
|
+
# * `io2`: 100-64,000 IOPS
|
28391
28489
|
#
|
28392
28490
|
# For `io1` and `io2` volumes, we guarantee 64,000 IOPS only for
|
28393
28491
|
# [Instances built on the Nitro System][1]. Other instance families
|
@@ -28414,13 +28512,13 @@ module Aws::EC2
|
|
28414
28512
|
#
|
28415
28513
|
# The following are the supported volumes sizes for each volume type:
|
28416
28514
|
#
|
28417
|
-
# * `gp2` and `gp3
|
28515
|
+
# * `gp2` and `gp3`:1-16,384
|
28418
28516
|
#
|
28419
|
-
# * `io1` and `io2
|
28517
|
+
# * `io1` and `io2`: 4-16,384
|
28420
28518
|
#
|
28421
|
-
# * `st1` and `sc1
|
28519
|
+
# * `st1` and `sc1`: 125-16,384
|
28422
28520
|
#
|
28423
|
-
# * `standard
|
28521
|
+
# * `standard`: 1-1,024
|
28424
28522
|
# @return [Integer]
|
28425
28523
|
#
|
28426
28524
|
# @!attribute [rw] volume_type
|
@@ -29349,8 +29447,8 @@ module Aws::EC2
|
|
29349
29447
|
#
|
29350
29448
|
# @!attribute [rw] deprecate_at
|
29351
29449
|
# The date and time to deprecate the AMI, in UTC, in the following
|
29352
|
-
# format: *YYYY*-*MM*-*DD*T*HH
|
29353
|
-
#
|
29450
|
+
# format: *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z. If you specify a value for
|
29451
|
+
# seconds, Amazon EC2 rounds the seconds to the nearest minute.
|
29354
29452
|
#
|
29355
29453
|
# You can’t specify a date in the past. The upper limit for
|
29356
29454
|
# `DeprecateAt` is 10 years from now, except for public AMIs, where
|
@@ -29994,6 +30092,14 @@ module Aws::EC2
|
|
29994
30092
|
# The Region for the component.
|
29995
30093
|
# @return [String]
|
29996
30094
|
#
|
30095
|
+
# @!attribute [rw] firewall_stateless_rule
|
30096
|
+
# The Network Firewall stateless rule.
|
30097
|
+
# @return [Types::FirewallStatelessRule]
|
30098
|
+
#
|
30099
|
+
# @!attribute [rw] firewall_stateful_rule
|
30100
|
+
# The Network Firewall stateful rule.
|
30101
|
+
# @return [Types::FirewallStatefulRule]
|
30102
|
+
#
|
29997
30103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Explanation AWS API Documentation
|
29998
30104
|
#
|
29999
30105
|
class Explanation < Struct.new(
|
@@ -30047,7 +30153,9 @@ module Aws::EC2
|
|
30047
30153
|
:transit_gateway_route_table_route,
|
30048
30154
|
:transit_gateway_attachment,
|
30049
30155
|
:component_account,
|
30050
|
-
:component_region
|
30156
|
+
:component_region,
|
30157
|
+
:firewall_stateless_rule,
|
30158
|
+
:firewall_stateful_rule)
|
30051
30159
|
SENSITIVE = []
|
30052
30160
|
include Aws::Structure
|
30053
30161
|
end
|
@@ -30718,6 +30826,125 @@ module Aws::EC2
|
|
30718
30826
|
include Aws::Structure
|
30719
30827
|
end
|
30720
30828
|
|
30829
|
+
# Describes a port range.
|
30830
|
+
#
|
30831
|
+
# @!attribute [rw] from_port
|
30832
|
+
# The first port in the range.
|
30833
|
+
# @return [Integer]
|
30834
|
+
#
|
30835
|
+
# @!attribute [rw] to_port
|
30836
|
+
# The last port in the range.
|
30837
|
+
# @return [Integer]
|
30838
|
+
#
|
30839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FilterPortRange AWS API Documentation
|
30840
|
+
#
|
30841
|
+
class FilterPortRange < Struct.new(
|
30842
|
+
:from_port,
|
30843
|
+
:to_port)
|
30844
|
+
SENSITIVE = []
|
30845
|
+
include Aws::Structure
|
30846
|
+
end
|
30847
|
+
|
30848
|
+
# Describes a stateful rule.
|
30849
|
+
#
|
30850
|
+
# @!attribute [rw] rule_group_arn
|
30851
|
+
# The ARN of the stateful rule group.
|
30852
|
+
# @return [String]
|
30853
|
+
#
|
30854
|
+
# @!attribute [rw] sources
|
30855
|
+
# The source IP addresses, in CIDR notation.
|
30856
|
+
# @return [Array<String>]
|
30857
|
+
#
|
30858
|
+
# @!attribute [rw] destinations
|
30859
|
+
# The destination IP addresses, in CIDR notation.
|
30860
|
+
# @return [Array<String>]
|
30861
|
+
#
|
30862
|
+
# @!attribute [rw] source_ports
|
30863
|
+
# The source ports.
|
30864
|
+
# @return [Array<Types::PortRange>]
|
30865
|
+
#
|
30866
|
+
# @!attribute [rw] destination_ports
|
30867
|
+
# The destination ports.
|
30868
|
+
# @return [Array<Types::PortRange>]
|
30869
|
+
#
|
30870
|
+
# @!attribute [rw] protocol
|
30871
|
+
# The protocol.
|
30872
|
+
# @return [String]
|
30873
|
+
#
|
30874
|
+
# @!attribute [rw] rule_action
|
30875
|
+
# The rule action. The possible values are `pass`, `drop`, and
|
30876
|
+
# `alert`.
|
30877
|
+
# @return [String]
|
30878
|
+
#
|
30879
|
+
# @!attribute [rw] direction
|
30880
|
+
# The direction. The possible values are `FORWARD` and `ANY`.
|
30881
|
+
# @return [String]
|
30882
|
+
#
|
30883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FirewallStatefulRule AWS API Documentation
|
30884
|
+
#
|
30885
|
+
class FirewallStatefulRule < Struct.new(
|
30886
|
+
:rule_group_arn,
|
30887
|
+
:sources,
|
30888
|
+
:destinations,
|
30889
|
+
:source_ports,
|
30890
|
+
:destination_ports,
|
30891
|
+
:protocol,
|
30892
|
+
:rule_action,
|
30893
|
+
:direction)
|
30894
|
+
SENSITIVE = []
|
30895
|
+
include Aws::Structure
|
30896
|
+
end
|
30897
|
+
|
30898
|
+
# Describes a stateless rule.
|
30899
|
+
#
|
30900
|
+
# @!attribute [rw] rule_group_arn
|
30901
|
+
# The ARN of the stateless rule group.
|
30902
|
+
# @return [String]
|
30903
|
+
#
|
30904
|
+
# @!attribute [rw] sources
|
30905
|
+
# The source IP addresses, in CIDR notation.
|
30906
|
+
# @return [Array<String>]
|
30907
|
+
#
|
30908
|
+
# @!attribute [rw] destinations
|
30909
|
+
# The destination IP addresses, in CIDR notation.
|
30910
|
+
# @return [Array<String>]
|
30911
|
+
#
|
30912
|
+
# @!attribute [rw] source_ports
|
30913
|
+
# The source ports.
|
30914
|
+
# @return [Array<Types::PortRange>]
|
30915
|
+
#
|
30916
|
+
# @!attribute [rw] destination_ports
|
30917
|
+
# The destination ports.
|
30918
|
+
# @return [Array<Types::PortRange>]
|
30919
|
+
#
|
30920
|
+
# @!attribute [rw] protocols
|
30921
|
+
# The protocols.
|
30922
|
+
# @return [Array<Integer>]
|
30923
|
+
#
|
30924
|
+
# @!attribute [rw] rule_action
|
30925
|
+
# The rule action. The possible values are `pass`, `drop`, and
|
30926
|
+
# `forward_to_site`.
|
30927
|
+
# @return [String]
|
30928
|
+
#
|
30929
|
+
# @!attribute [rw] priority
|
30930
|
+
# The rule priority.
|
30931
|
+
# @return [Integer]
|
30932
|
+
#
|
30933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FirewallStatelessRule AWS API Documentation
|
30934
|
+
#
|
30935
|
+
class FirewallStatelessRule < Struct.new(
|
30936
|
+
:rule_group_arn,
|
30937
|
+
:sources,
|
30938
|
+
:destinations,
|
30939
|
+
:source_ports,
|
30940
|
+
:destination_ports,
|
30941
|
+
:protocols,
|
30942
|
+
:rule_action,
|
30943
|
+
:priority)
|
30944
|
+
SENSITIVE = []
|
30945
|
+
include Aws::Structure
|
30946
|
+
end
|
30947
|
+
|
30721
30948
|
# Information about a Capacity Reservation in a Capacity Reservation
|
30722
30949
|
# Fleet.
|
30723
30950
|
#
|
@@ -30891,13 +31118,13 @@ module Aws::EC2
|
|
30891
31118
|
#
|
30892
31119
|
# @!attribute [rw] valid_from
|
30893
31120
|
# The start date and time of the request, in UTC format (for example,
|
30894
|
-
# *YYYY*-*MM*-*DD*T*HH
|
31121
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). The default is to start
|
30895
31122
|
# fulfilling the request immediately.
|
30896
31123
|
# @return [Time]
|
30897
31124
|
#
|
30898
31125
|
# @!attribute [rw] valid_until
|
30899
31126
|
# The end date and time of the request, in UTC format (for example,
|
30900
|
-
# *YYYY*-*MM*-*DD*T*HH
|
31127
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). At this point, no new instance
|
30901
31128
|
# requests are placed or able to fulfill the request. The default end
|
30902
31129
|
# date is 7 days from the current date.
|
30903
31130
|
# @return [Time]
|
@@ -33398,10 +33625,10 @@ module Aws::EC2
|
|
33398
33625
|
#
|
33399
33626
|
# * `subnet-id` - The ID of the subnet.
|
33400
33627
|
#
|
33401
|
-
# * `tag
|
33402
|
-
#
|
33403
|
-
#
|
33404
|
-
#
|
33628
|
+
# * `tag`:<key> - The key/value combination of a tag assigned to
|
33629
|
+
# the resource. Use the tag key in the filter name and the tag value
|
33630
|
+
# as the filter value. For example, to find all resources that have
|
33631
|
+
# a tag with the key `Owner` and the value `TeamA`, specify
|
33405
33632
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
33406
33633
|
#
|
33407
33634
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -34225,7 +34452,7 @@ module Aws::EC2
|
|
34225
34452
|
#
|
34226
34453
|
# @!attribute [rw] timestamp
|
34227
34454
|
# The date and time of the event, in UTC format (for example,
|
34228
|
-
# *YYYY*-*MM*-*DD*T*HH
|
34455
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
34229
34456
|
# @return [Time]
|
34230
34457
|
#
|
34231
34458
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HistoryRecord AWS API Documentation
|
@@ -34250,7 +34477,7 @@ module Aws::EC2
|
|
34250
34477
|
#
|
34251
34478
|
# @!attribute [rw] timestamp
|
34252
34479
|
# The date and time of the event, in UTC format (for example,
|
34253
|
-
# *YYYY*-*MM*-*DD*T*HH
|
34480
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
34254
34481
|
# @return [Time]
|
34255
34482
|
#
|
34256
34483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HistoryRecordEntry AWS API Documentation
|
@@ -34885,7 +35112,7 @@ module Aws::EC2
|
|
34885
35112
|
#
|
34886
35113
|
# @!attribute [rw] deprecation_time
|
34887
35114
|
# The date and time to deprecate the AMI, in UTC, in the following
|
34888
|
-
# format: *YYYY*-*MM*-*DD*T*HH
|
35115
|
+
# format: *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z. If you specified a value
|
34889
35116
|
# for seconds, Amazon EC2 rounds the seconds to the nearest minute.
|
34890
35117
|
# @return [String]
|
34891
35118
|
#
|
@@ -35260,19 +35487,19 @@ module Aws::EC2
|
|
35260
35487
|
# followed by the Region of the key, the Amazon Web Services account
|
35261
35488
|
# ID of the key owner, the `alias` namespace, and then the key
|
35262
35489
|
# alias. For example,
|
35263
|
-
# arn:aws:kms:*us-east-1
|
35490
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
35264
35491
|
#
|
35265
35492
|
# * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
|
35266
35493
|
# followed by the Region of the key, the Amazon Web Services account
|
35267
35494
|
# ID of the key owner, the `key` namespace, and then the key ID. For
|
35268
35495
|
# example,
|
35269
|
-
# arn:aws:kms:*us-east-1
|
35496
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
35270
35497
|
#
|
35271
35498
|
# * ARN using key alias. The alias ARN contains the `arn:aws:kms`
|
35272
35499
|
# namespace, followed by the Region of the key, the Amazon Web
|
35273
35500
|
# Services account ID of the key owner, the `alias` namespace, and
|
35274
35501
|
# then the key alias. For example,
|
35275
|
-
# arn:aws:kms:*us-east-1
|
35502
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
35276
35503
|
#
|
35277
35504
|
# Amazon Web Services parses `KmsKeyId` asynchronously, meaning that
|
35278
35505
|
# the action you call may appear to complete even though you provided
|
@@ -35860,19 +36087,19 @@ module Aws::EC2
|
|
35860
36087
|
# followed by the Region of the key, the Amazon Web Services account
|
35861
36088
|
# ID of the key owner, the `alias` namespace, and then the key
|
35862
36089
|
# alias. For example,
|
35863
|
-
# arn:aws:kms:*us-east-1
|
36090
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
35864
36091
|
#
|
35865
36092
|
# * ARN using key ID. The ID ARN contains the `arn:aws:kms` namespace,
|
35866
36093
|
# followed by the Region of the key, the Amazon Web Services account
|
35867
36094
|
# ID of the key owner, the `key` namespace, and then the key ID. For
|
35868
36095
|
# example,
|
35869
|
-
# arn:aws:kms:*us-east-1
|
36096
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:key/*abcd1234-a123-456a-a12b-a123b4cd56ef*.
|
35870
36097
|
#
|
35871
36098
|
# * ARN using key alias. The alias ARN contains the `arn:aws:kms`
|
35872
36099
|
# namespace, followed by the Region of the key, the Amazon Web
|
35873
36100
|
# Services account ID of the key owner, the `alias` namespace, and
|
35874
36101
|
# then the key alias. For example,
|
35875
|
-
# arn:aws:kms:*us-east-1
|
36102
|
+
# arn:aws:kms:*us-east-1*:*012345678910*:alias/*ExampleAlias*.
|
35876
36103
|
#
|
35877
36104
|
# Amazon Web Services parses `KmsKeyId` asynchronously, meaning that
|
35878
36105
|
# the action you call may appear to complete even though you provided
|
@@ -38496,17 +38723,17 @@ module Aws::EC2
|
|
38496
38723
|
# The valid values for instance-state-code will all be in the range of
|
38497
38724
|
# the low byte and they are:
|
38498
38725
|
#
|
38499
|
-
# * `0
|
38726
|
+
# * `0` : `pending`
|
38500
38727
|
#
|
38501
|
-
# * `16
|
38728
|
+
# * `16` : `running`
|
38502
38729
|
#
|
38503
|
-
# * `32
|
38730
|
+
# * `32` : `shutting-down`
|
38504
38731
|
#
|
38505
|
-
# * `48
|
38732
|
+
# * `48` : `terminated`
|
38506
38733
|
#
|
38507
|
-
# * `64
|
38734
|
+
# * `64` : `stopping`
|
38508
38735
|
#
|
38509
|
-
# * `80
|
38736
|
+
# * `80` : `stopped`
|
38510
38737
|
#
|
38511
38738
|
# You can ignore the high byte value by zeroing out all of the bits
|
38512
38739
|
# above 2^8 or 256 in decimal.
|
@@ -41011,11 +41238,11 @@ module Aws::EC2
|
|
41011
41238
|
#
|
41012
41239
|
# The following are the supported values for each volume type:
|
41013
41240
|
#
|
41014
|
-
# * `gp3
|
41241
|
+
# * `gp3`: 3,000-16,000 IOPS
|
41015
41242
|
#
|
41016
|
-
# * `io1
|
41243
|
+
# * `io1`: 100-64,000 IOPS
|
41017
41244
|
#
|
41018
|
-
# * `io2
|
41245
|
+
# * `io2`: 100-64,000 IOPS
|
41019
41246
|
#
|
41020
41247
|
# For `io1` and `io2` volumes, we guarantee 64,000 IOPS only for
|
41021
41248
|
# [Instances built on the Nitro System][1]. Other instance families
|
@@ -41044,13 +41271,13 @@ module Aws::EC2
|
|
41044
41271
|
# ID or a volume size. The following are the supported volumes sizes
|
41045
41272
|
# for each volume type:
|
41046
41273
|
#
|
41047
|
-
# * `gp2` and `gp3
|
41274
|
+
# * `gp2` and `gp3`: 1-16,384
|
41048
41275
|
#
|
41049
|
-
# * `io1` and `io2
|
41276
|
+
# * `io1` and `io2`: 4-16,384
|
41050
41277
|
#
|
41051
|
-
# * `st1` and `sc1
|
41278
|
+
# * `st1` and `sc1`: 125-16,384
|
41052
41279
|
#
|
41053
|
-
# * `standard
|
41280
|
+
# * `standard`: 1-1,024
|
41054
41281
|
# @return [Integer]
|
41055
41282
|
#
|
41056
41283
|
# @!attribute [rw] volume_type
|
@@ -46369,13 +46596,13 @@ module Aws::EC2
|
|
46369
46596
|
#
|
46370
46597
|
# The following are the supported volumes sizes for each volume type:
|
46371
46598
|
#
|
46372
|
-
# * `gp2` and `gp3
|
46599
|
+
# * `gp2` and `gp3`: 1-16,384
|
46373
46600
|
#
|
46374
|
-
# * `io1` and `io2
|
46601
|
+
# * `io1` and `io2`: 4-16,384
|
46375
46602
|
#
|
46376
|
-
# * `st1` and `sc1
|
46603
|
+
# * `st1` and `sc1`: 125-16,384
|
46377
46604
|
#
|
46378
|
-
# * `standard
|
46605
|
+
# * `standard`: 1-1,024
|
46379
46606
|
#
|
46380
46607
|
# Default: The existing size is retained.
|
46381
46608
|
# @return [Integer]
|
@@ -46398,11 +46625,11 @@ module Aws::EC2
|
|
46398
46625
|
#
|
46399
46626
|
# The following are the supported values for each volume type:
|
46400
46627
|
#
|
46401
|
-
# * `gp3
|
46628
|
+
# * `gp3`: 3,000-16,000 IOPS
|
46402
46629
|
#
|
46403
|
-
# * `io1
|
46630
|
+
# * `io1`: 100-64,000 IOPS
|
46404
46631
|
#
|
46405
|
-
# * `io2
|
46632
|
+
# * `io2`: 100-64,000 IOPS
|
46406
46633
|
#
|
46407
46634
|
# Default: The existing value is retained if you keep the same volume
|
46408
46635
|
# type. If you change the volume type to `io1`, `io2`, or `gp3`, the
|
@@ -47515,20 +47742,20 @@ module Aws::EC2
|
|
47515
47742
|
# @!attribute [rw] state
|
47516
47743
|
# The state of the NAT gateway.
|
47517
47744
|
#
|
47518
|
-
# * `pending
|
47745
|
+
# * `pending`: The NAT gateway is being created and is not ready to
|
47519
47746
|
# process traffic.
|
47520
47747
|
#
|
47521
|
-
# * `failed
|
47748
|
+
# * `failed`: The NAT gateway could not be created. Check the
|
47522
47749
|
# `failureCode` and `failureMessage` fields for the reason.
|
47523
47750
|
#
|
47524
|
-
# * `available
|
47751
|
+
# * `available`: The NAT gateway is able to process traffic. This
|
47525
47752
|
# status remains until you delete the NAT gateway, and does not
|
47526
47753
|
# indicate the health of the NAT gateway.
|
47527
47754
|
#
|
47528
|
-
# * `deleting
|
47755
|
+
# * `deleting`: The NAT gateway is in the process of being terminated
|
47529
47756
|
# and may still be processing traffic.
|
47530
47757
|
#
|
47531
|
-
# * `deleted
|
47758
|
+
# * `deleted`: The NAT gateway has been terminated and is no longer
|
47532
47759
|
# processing traffic.
|
47533
47760
|
# @return [String]
|
47534
47761
|
#
|
@@ -48056,8 +48283,8 @@ module Aws::EC2
|
|
48056
48283
|
# @return [Array<String>]
|
48057
48284
|
#
|
48058
48285
|
# @!attribute [rw] filter_in_arns
|
48059
|
-
# The Amazon Resource Names (ARN) of the
|
48060
|
-
#
|
48286
|
+
# The Amazon Resource Names (ARN) of the resources that the path must
|
48287
|
+
# traverse.
|
48061
48288
|
# @return [Array<String>]
|
48062
48289
|
#
|
48063
48290
|
# @!attribute [rw] start_date
|
@@ -48147,12 +48374,11 @@ module Aws::EC2
|
|
48147
48374
|
# @return [Time]
|
48148
48375
|
#
|
48149
48376
|
# @!attribute [rw] source
|
48150
|
-
# The
|
48377
|
+
# The ID of the source.
|
48151
48378
|
# @return [String]
|
48152
48379
|
#
|
48153
48380
|
# @!attribute [rw] destination
|
48154
|
-
# The
|
48155
|
-
# path.
|
48381
|
+
# The ID of the destination.
|
48156
48382
|
# @return [String]
|
48157
48383
|
#
|
48158
48384
|
# @!attribute [rw] source_arn
|
@@ -48164,13 +48390,11 @@ module Aws::EC2
|
|
48164
48390
|
# @return [String]
|
48165
48391
|
#
|
48166
48392
|
# @!attribute [rw] source_ip
|
48167
|
-
# The IP address of the
|
48168
|
-
# source of the path.
|
48393
|
+
# The IP address of the source.
|
48169
48394
|
# @return [String]
|
48170
48395
|
#
|
48171
48396
|
# @!attribute [rw] destination_ip
|
48172
|
-
# The IP address of the
|
48173
|
-
# destination of the path.
|
48397
|
+
# The IP address of the destination.
|
48174
48398
|
# @return [String]
|
48175
48399
|
#
|
48176
48400
|
# @!attribute [rw] protocol
|
@@ -48185,6 +48409,16 @@ module Aws::EC2
|
|
48185
48409
|
# The tags associated with the path.
|
48186
48410
|
# @return [Array<Types::Tag>]
|
48187
48411
|
#
|
48412
|
+
# @!attribute [rw] filter_at_source
|
48413
|
+
# Scopes the analysis to network paths that match specific filters at
|
48414
|
+
# the source.
|
48415
|
+
# @return [Types::PathFilter]
|
48416
|
+
#
|
48417
|
+
# @!attribute [rw] filter_at_destination
|
48418
|
+
# Scopes the analysis to network paths that match specific filters at
|
48419
|
+
# the destination.
|
48420
|
+
# @return [Types::PathFilter]
|
48421
|
+
#
|
48188
48422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInsightsPath AWS API Documentation
|
48189
48423
|
#
|
48190
48424
|
class NetworkInsightsPath < Struct.new(
|
@@ -48199,7 +48433,9 @@ module Aws::EC2
|
|
48199
48433
|
:destination_ip,
|
48200
48434
|
:protocol,
|
48201
48435
|
:destination_port,
|
48202
|
-
:tags
|
48436
|
+
:tags,
|
48437
|
+
:filter_at_source,
|
48438
|
+
:filter_at_destination)
|
48203
48439
|
SENSITIVE = []
|
48204
48440
|
include Aws::Structure
|
48205
48441
|
end
|
@@ -48972,6 +49208,18 @@ module Aws::EC2
|
|
48972
49208
|
# The load balancer listener.
|
48973
49209
|
# @return [Types::AnalysisComponent]
|
48974
49210
|
#
|
49211
|
+
# @!attribute [rw] firewall_stateless_rule
|
49212
|
+
# The Network Firewall stateless rule.
|
49213
|
+
# @return [Types::FirewallStatelessRule]
|
49214
|
+
#
|
49215
|
+
# @!attribute [rw] firewall_stateful_rule
|
49216
|
+
# The Network Firewall stateful rule.
|
49217
|
+
# @return [Types::FirewallStatefulRule]
|
49218
|
+
#
|
49219
|
+
# @!attribute [rw] service_name
|
49220
|
+
# The name of the VPC endpoint service.
|
49221
|
+
# @return [String]
|
49222
|
+
#
|
48975
49223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathComponent AWS API Documentation
|
48976
49224
|
#
|
48977
49225
|
class PathComponent < Struct.new(
|
@@ -48991,7 +49239,70 @@ module Aws::EC2
|
|
48991
49239
|
:transit_gateway,
|
48992
49240
|
:transit_gateway_route_table_route,
|
48993
49241
|
:explanations,
|
48994
|
-
:elastic_load_balancer_listener
|
49242
|
+
:elastic_load_balancer_listener,
|
49243
|
+
:firewall_stateless_rule,
|
49244
|
+
:firewall_stateful_rule,
|
49245
|
+
:service_name)
|
49246
|
+
SENSITIVE = []
|
49247
|
+
include Aws::Structure
|
49248
|
+
end
|
49249
|
+
|
49250
|
+
# Describes a set of filters for a path analysis. Use path filters to
|
49251
|
+
# scope the analysis when there can be multiple resulting paths.
|
49252
|
+
#
|
49253
|
+
# @!attribute [rw] source_address
|
49254
|
+
# The source IPv4 address.
|
49255
|
+
# @return [String]
|
49256
|
+
#
|
49257
|
+
# @!attribute [rw] source_port_range
|
49258
|
+
# The source port range.
|
49259
|
+
# @return [Types::FilterPortRange]
|
49260
|
+
#
|
49261
|
+
# @!attribute [rw] destination_address
|
49262
|
+
# The destination IPv4 address.
|
49263
|
+
# @return [String]
|
49264
|
+
#
|
49265
|
+
# @!attribute [rw] destination_port_range
|
49266
|
+
# The destination port range.
|
49267
|
+
# @return [Types::FilterPortRange]
|
49268
|
+
#
|
49269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathFilter AWS API Documentation
|
49270
|
+
#
|
49271
|
+
class PathFilter < Struct.new(
|
49272
|
+
:source_address,
|
49273
|
+
:source_port_range,
|
49274
|
+
:destination_address,
|
49275
|
+
:destination_port_range)
|
49276
|
+
SENSITIVE = []
|
49277
|
+
include Aws::Structure
|
49278
|
+
end
|
49279
|
+
|
49280
|
+
# Describes a set of filters for a path analysis. Use path filters to
|
49281
|
+
# scope the analysis when there can be multiple resulting paths.
|
49282
|
+
#
|
49283
|
+
# @!attribute [rw] source_address
|
49284
|
+
# The source IPv4 address.
|
49285
|
+
# @return [String]
|
49286
|
+
#
|
49287
|
+
# @!attribute [rw] source_port_range
|
49288
|
+
# The source port range.
|
49289
|
+
# @return [Types::RequestFilterPortRange]
|
49290
|
+
#
|
49291
|
+
# @!attribute [rw] destination_address
|
49292
|
+
# The destination IPv4 address.
|
49293
|
+
# @return [String]
|
49294
|
+
#
|
49295
|
+
# @!attribute [rw] destination_port_range
|
49296
|
+
# The destination port range.
|
49297
|
+
# @return [Types::RequestFilterPortRange]
|
49298
|
+
#
|
49299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathRequestFilter AWS API Documentation
|
49300
|
+
#
|
49301
|
+
class PathRequestFilter < Struct.new(
|
49302
|
+
:source_address,
|
49303
|
+
:source_port_range,
|
49304
|
+
:destination_address,
|
49305
|
+
:destination_port_range)
|
48995
49306
|
SENSITIVE = []
|
48996
49307
|
include Aws::Structure
|
48997
49308
|
end
|
@@ -50529,7 +50840,7 @@ module Aws::EC2
|
|
50529
50840
|
#
|
50530
50841
|
# @!attribute [rw] purchase_time
|
50531
50842
|
# The time at which to purchase the Reserved Instance, in UTC format
|
50532
|
-
# (for example, *YYYY*-*MM*-*DD*T*HH
|
50843
|
+
# (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
50533
50844
|
# @return [Time]
|
50534
50845
|
#
|
50535
50846
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseReservedInstancesOfferingRequest AWS API Documentation
|
@@ -51822,30 +52133,30 @@ module Aws::EC2
|
|
51822
52133
|
# @!attribute [rw] reason_codes
|
51823
52134
|
# The reason codes that describe the health state of your instance.
|
51824
52135
|
#
|
51825
|
-
# * `instance-stuck-in-state
|
52136
|
+
# * `instance-stuck-in-state`: My instance is stuck in a state.
|
51826
52137
|
#
|
51827
|
-
# * `unresponsive
|
52138
|
+
# * `unresponsive`: My instance is unresponsive.
|
51828
52139
|
#
|
51829
|
-
# * `not-accepting-credentials
|
52140
|
+
# * `not-accepting-credentials`: My instance is not accepting my
|
51830
52141
|
# credentials.
|
51831
52142
|
#
|
51832
|
-
# * `password-not-available
|
52143
|
+
# * `password-not-available`: A password is not available for my
|
51833
52144
|
# instance.
|
51834
52145
|
#
|
51835
|
-
# * `performance-network
|
52146
|
+
# * `performance-network`: My instance is experiencing performance
|
51836
52147
|
# problems that I believe are network related.
|
51837
52148
|
#
|
51838
|
-
# * `performance-instance-store
|
52149
|
+
# * `performance-instance-store`: My instance is experiencing
|
51839
52150
|
# performance problems that I believe are related to the instance
|
51840
52151
|
# stores.
|
51841
52152
|
#
|
51842
|
-
# * `performance-ebs-volume
|
52153
|
+
# * `performance-ebs-volume`: My instance is experiencing performance
|
51843
52154
|
# problems that I believe are related to an EBS volume.
|
51844
52155
|
#
|
51845
|
-
# * `performance-other
|
52156
|
+
# * `performance-other`: My instance is experiencing performance
|
51846
52157
|
# problems.
|
51847
52158
|
#
|
51848
|
-
# * `other
|
52159
|
+
# * `other`: \[explain using the description parameter\]
|
51849
52160
|
# @return [Array<String>]
|
51850
52161
|
#
|
51851
52162
|
# @!attribute [rw] start_time
|
@@ -51870,6 +52181,25 @@ module Aws::EC2
|
|
51870
52181
|
include Aws::Structure
|
51871
52182
|
end
|
51872
52183
|
|
52184
|
+
# Describes a port range.
|
52185
|
+
#
|
52186
|
+
# @!attribute [rw] from_port
|
52187
|
+
# The first port in the range.
|
52188
|
+
# @return [Integer]
|
52189
|
+
#
|
52190
|
+
# @!attribute [rw] to_port
|
52191
|
+
# The last port in the range.
|
52192
|
+
# @return [Integer]
|
52193
|
+
#
|
52194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestFilterPortRange AWS API Documentation
|
52195
|
+
#
|
52196
|
+
class RequestFilterPortRange < Struct.new(
|
52197
|
+
:from_port,
|
52198
|
+
:to_port)
|
52199
|
+
SENSITIVE = []
|
52200
|
+
include Aws::Structure
|
52201
|
+
end
|
52202
|
+
|
51873
52203
|
# A tag on an IPAM resource.
|
51874
52204
|
#
|
51875
52205
|
# @!attribute [rw] key
|
@@ -52360,7 +52690,7 @@ module Aws::EC2
|
|
52360
52690
|
#
|
52361
52691
|
# @!attribute [rw] valid_until
|
52362
52692
|
# The end date of the request, in UTC format
|
52363
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
52693
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
52364
52694
|
#
|
52365
52695
|
# * For a persistent request, the request remains active until the
|
52366
52696
|
# `ValidUntil` date and time is reached. Otherwise, the request
|
@@ -54315,6 +54645,64 @@ module Aws::EC2
|
|
54315
54645
|
include Aws::Structure
|
54316
54646
|
end
|
54317
54647
|
|
54648
|
+
# Describes the rule options for a stateful rule group.
|
54649
|
+
#
|
54650
|
+
# @!attribute [rw] rule_group_arn
|
54651
|
+
# The ARN of the rule group.
|
54652
|
+
# @return [String]
|
54653
|
+
#
|
54654
|
+
# @!attribute [rw] rule_options
|
54655
|
+
# The rule options.
|
54656
|
+
# @return [Array<Types::RuleOption>]
|
54657
|
+
#
|
54658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleGroupRuleOptionsPair AWS API Documentation
|
54659
|
+
#
|
54660
|
+
class RuleGroupRuleOptionsPair < Struct.new(
|
54661
|
+
:rule_group_arn,
|
54662
|
+
:rule_options)
|
54663
|
+
SENSITIVE = []
|
54664
|
+
include Aws::Structure
|
54665
|
+
end
|
54666
|
+
|
54667
|
+
# Describes the type of a stateful rule group.
|
54668
|
+
#
|
54669
|
+
# @!attribute [rw] rule_group_arn
|
54670
|
+
# The ARN of the rule group.
|
54671
|
+
# @return [String]
|
54672
|
+
#
|
54673
|
+
# @!attribute [rw] rule_group_type
|
54674
|
+
# The rule group type. The possible values are `Domain List` and
|
54675
|
+
# `Suricata`.
|
54676
|
+
# @return [String]
|
54677
|
+
#
|
54678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleGroupTypePair AWS API Documentation
|
54679
|
+
#
|
54680
|
+
class RuleGroupTypePair < Struct.new(
|
54681
|
+
:rule_group_arn,
|
54682
|
+
:rule_group_type)
|
54683
|
+
SENSITIVE = []
|
54684
|
+
include Aws::Structure
|
54685
|
+
end
|
54686
|
+
|
54687
|
+
# Describes additional settings for a stateful rule.
|
54688
|
+
#
|
54689
|
+
# @!attribute [rw] keyword
|
54690
|
+
# The Suricata keyword.
|
54691
|
+
# @return [String]
|
54692
|
+
#
|
54693
|
+
# @!attribute [rw] settings
|
54694
|
+
# The settings for the keyword.
|
54695
|
+
# @return [Array<String>]
|
54696
|
+
#
|
54697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleOption AWS API Documentation
|
54698
|
+
#
|
54699
|
+
class RuleOption < Struct.new(
|
54700
|
+
:keyword,
|
54701
|
+
:settings)
|
54702
|
+
SENSITIVE = []
|
54703
|
+
include Aws::Structure
|
54704
|
+
end
|
54705
|
+
|
54318
54706
|
# Describes the monitoring of an instance.
|
54319
54707
|
#
|
54320
54708
|
# @!attribute [rw] enabled
|
@@ -54866,7 +55254,7 @@ module Aws::EC2
|
|
54866
55254
|
# The key of the tag.
|
54867
55255
|
#
|
54868
55256
|
# Constraints: Tag keys are case-sensitive and can be up to 128
|
54869
|
-
# Unicode characters in length. May not begin with `aws
|
55257
|
+
# Unicode characters in length. May not begin with `aws`:.
|
54870
55258
|
# @return [String]
|
54871
55259
|
#
|
54872
55260
|
# @!attribute [rw] value
|
@@ -57301,14 +57689,14 @@ module Aws::EC2
|
|
57301
57689
|
#
|
57302
57690
|
# @!attribute [rw] valid_from
|
57303
57691
|
# The start date and time of the request, in UTC format
|
57304
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
57692
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). By default, Amazon EC2 starts
|
57305
57693
|
# fulfilling the request immediately.
|
57306
57694
|
# @return [Time]
|
57307
57695
|
#
|
57308
57696
|
# @!attribute [rw] valid_until
|
57309
57697
|
# The end date and time of the request, in UTC format
|
57310
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
57311
|
-
#
|
57698
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). After the end date and time, no
|
57699
|
+
# new Spot Instance requests are placed or able to fulfill the
|
57312
57700
|
# request. If no value is specified, the Spot Fleet request remains
|
57313
57701
|
# until you cancel it.
|
57314
57702
|
# @return [Time]
|
@@ -57450,7 +57838,7 @@ module Aws::EC2
|
|
57450
57838
|
#
|
57451
57839
|
# @!attribute [rw] create_time
|
57452
57840
|
# The date and time when the Spot Instance request was created, in UTC
|
57453
|
-
# format (for example, *YYYY*-*MM*-*DD*T*HH
|
57841
|
+
# format (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
57454
57842
|
# @return [Time]
|
57455
57843
|
#
|
57456
57844
|
# @!attribute [rw] fault
|
@@ -57519,13 +57907,13 @@ module Aws::EC2
|
|
57519
57907
|
#
|
57520
57908
|
# @!attribute [rw] valid_from
|
57521
57909
|
# The start date of the request, in UTC format (for example,
|
57522
|
-
# *YYYY*-*MM*-*DD*T*HH
|
57910
|
+
# *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). The request becomes active at
|
57523
57911
|
# this date and time.
|
57524
57912
|
# @return [Time]
|
57525
57913
|
#
|
57526
57914
|
# @!attribute [rw] valid_until
|
57527
57915
|
# The end date of the request, in UTC format
|
57528
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
57916
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
57529
57917
|
#
|
57530
57918
|
# * For a persistent request, the request remains active until the
|
57531
57919
|
# `validUntil` date and time is reached. Otherwise, the request
|
@@ -57603,7 +57991,7 @@ module Aws::EC2
|
|
57603
57991
|
#
|
57604
57992
|
# @!attribute [rw] update_time
|
57605
57993
|
# The date and time of the most recent status update, in UTC format
|
57606
|
-
# (for example, *YYYY*-*MM*-*DD*T*HH
|
57994
|
+
# (for example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
57607
57995
|
# @return [Time]
|
57608
57996
|
#
|
57609
57997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotInstanceStatus AWS API Documentation
|
@@ -57667,7 +58055,7 @@ module Aws::EC2
|
|
57667
58055
|
#
|
57668
58056
|
# @!attribute [rw] valid_until
|
57669
58057
|
# The end date of the request, in UTC format
|
57670
|
-
# (*YYYY*-*MM*-*DD*T*HH
|
58058
|
+
# (*YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z). Supported only for persistent
|
57671
58059
|
# requests.
|
57672
58060
|
#
|
57673
58061
|
# * For a persistent request, the request remains active until the
|
@@ -58068,7 +58456,7 @@ module Aws::EC2
|
|
58068
58456
|
#
|
58069
58457
|
# @!attribute [rw] timestamp
|
58070
58458
|
# The date and time the request was created, in UTC format (for
|
58071
|
-
# example, *YYYY*-*MM*-*DD*T*HH
|
58459
|
+
# example, *YYYY*-*MM*-*DD*T*HH*:*MM*:*SS*Z).
|
58072
58460
|
# @return [Time]
|
58073
58461
|
#
|
58074
58462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SpotPrice AWS API Documentation
|
@@ -58363,44 +58751,44 @@ module Aws::EC2
|
|
58363
58751
|
# @!attribute [rw] message
|
58364
58752
|
# The message for the state change.
|
58365
58753
|
#
|
58366
|
-
# * `Server.InsufficientInstanceCapacity
|
58754
|
+
# * `Server.InsufficientInstanceCapacity`: There was insufficient
|
58367
58755
|
# capacity available to satisfy the launch request.
|
58368
58756
|
#
|
58369
|
-
# * `Server.InternalError
|
58757
|
+
# * `Server.InternalError`: An internal error caused the instance to
|
58370
58758
|
# terminate during launch.
|
58371
58759
|
#
|
58372
|
-
# * `Server.ScheduledStop
|
58760
|
+
# * `Server.ScheduledStop`: The instance was stopped due to a
|
58373
58761
|
# scheduled retirement.
|
58374
58762
|
#
|
58375
|
-
# * `Server.SpotInstanceShutdown
|
58763
|
+
# * `Server.SpotInstanceShutdown`: The instance was stopped because
|
58376
58764
|
# the number of Spot requests with a maximum price equal to or
|
58377
58765
|
# higher than the Spot price exceeded available capacity or because
|
58378
58766
|
# of an increase in the Spot price.
|
58379
58767
|
#
|
58380
|
-
# * `Server.SpotInstanceTermination
|
58768
|
+
# * `Server.SpotInstanceTermination`: The instance was terminated
|
58381
58769
|
# because the number of Spot requests with a maximum price equal to
|
58382
58770
|
# or higher than the Spot price exceeded available capacity or
|
58383
58771
|
# because of an increase in the Spot price.
|
58384
58772
|
#
|
58385
|
-
# * `Client.InstanceInitiatedShutdown
|
58773
|
+
# * `Client.InstanceInitiatedShutdown`: The instance was shut down
|
58386
58774
|
# using the `shutdown -h` command from the instance.
|
58387
58775
|
#
|
58388
|
-
# * `Client.InstanceTerminated
|
58776
|
+
# * `Client.InstanceTerminated`: The instance was terminated or
|
58389
58777
|
# rebooted during AMI creation.
|
58390
58778
|
#
|
58391
|
-
# * `Client.InternalError
|
58779
|
+
# * `Client.InternalError`: A client error caused the instance to
|
58392
58780
|
# terminate during launch.
|
58393
58781
|
#
|
58394
|
-
# * `Client.InvalidSnapshot.NotFound
|
58782
|
+
# * `Client.InvalidSnapshot.NotFound`: The specified snapshot was not
|
58395
58783
|
# found.
|
58396
58784
|
#
|
58397
|
-
# * `Client.UserInitiatedHibernate
|
58785
|
+
# * `Client.UserInitiatedHibernate`: Hibernation was initiated on the
|
58398
58786
|
# instance.
|
58399
58787
|
#
|
58400
|
-
# * `Client.UserInitiatedShutdown
|
58788
|
+
# * `Client.UserInitiatedShutdown`: The instance was shut down using
|
58401
58789
|
# the Amazon EC2 API.
|
58402
58790
|
#
|
58403
|
-
# * `Client.VolumeLimitExceeded
|
58791
|
+
# * `Client.VolumeLimitExceeded`: The limit on the number of EBS
|
58404
58792
|
# volumes or total storage was exceeded. Decrease usage or request
|
58405
58793
|
# an increase in your account limits.
|
58406
58794
|
# @return [String]
|