aws-sdk-ec2 1.636.0 → 1.638.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 +78 -55
- data/lib/aws-sdk-ec2/instance.rb +15 -7
- data/lib/aws-sdk-ec2/types.rb +45 -22
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/types.rbs +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 452222266147bbc27e86b851715e5d6b001c21e9a902bb9bd035849e85914d49
|
|
4
|
+
data.tar.gz: '052599d5cb3420c2e93a60a00ff80e65d511f7d721ae96d72ce30e27d4e05827'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71f09a80585c328a287a36049e404a08768d9d7322548b98f6e594dfedc25f330e92371e0283f0bea50744c31975ff3ee111a4a38bf0979cd8fff1aa0b828b89
|
|
7
|
+
data.tar.gz: 3038c396367b689b8d8632ef30f27e22faf829ca36453619d86b5a3c5fc7aa3503c95ea909ad9888571eed7d000e759decd8e1679b1a4485e00fddba9e1accec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.638.0 (2026-08-20)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - EC2 marks UEFI instance metadata field as sensitive.
|
|
8
|
+
|
|
9
|
+
1.637.0 (2026-08-18)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Doc release for CreateImage support for instances with local snapshots in Outpost
|
|
13
|
+
|
|
4
14
|
1.636.0 (2026-08-07)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.638.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -1928,16 +1928,18 @@ module Aws::EC2
|
|
|
1928
1928
|
# but not both. Specifying both results in an
|
|
1929
1929
|
# `InvalidParameterCombination` error.
|
|
1930
1930
|
#
|
|
1931
|
-
# *
|
|
1932
|
-
# account.
|
|
1931
|
+
# * You must own the application status check. The check must already
|
|
1932
|
+
# exist in your account.
|
|
1933
1933
|
#
|
|
1934
|
-
# *
|
|
1934
|
+
# * You must not leave tag keys blank.
|
|
1935
1935
|
#
|
|
1936
|
-
# *
|
|
1936
|
+
# * You can create a maximum of 50 tag associations for each application
|
|
1937
|
+
# status check.
|
|
1937
1938
|
#
|
|
1938
|
-
# *
|
|
1939
|
+
# * You can use `DisassociateApplicationStatusCheck` to remove
|
|
1940
|
+
# associations.
|
|
1939
1941
|
#
|
|
1940
|
-
# *
|
|
1942
|
+
# * You can associate [tags][1] so that the application status check
|
|
1941
1943
|
# automatically monitors all current and future instances that have
|
|
1942
1944
|
# the specified tags.
|
|
1943
1945
|
#
|
|
@@ -1963,9 +1965,10 @@ module Aws::EC2
|
|
|
1963
1965
|
# check.
|
|
1964
1966
|
#
|
|
1965
1967
|
# @option params [String] :client_token
|
|
1966
|
-
#
|
|
1967
|
-
#
|
|
1968
|
-
#
|
|
1968
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
1969
|
+
# the operation completes no more than one time. If you retry a request
|
|
1970
|
+
# with the same token, the service ignores the request but does not
|
|
1971
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
1969
1972
|
#
|
|
1970
1973
|
# **A suitable default value is auto-generated.** You should normally
|
|
1971
1974
|
# not need to pass this option.**
|
|
@@ -6003,24 +6006,24 @@ module Aws::EC2
|
|
|
6003
6006
|
# protocol, port, path, and thresholds for the health check. The
|
|
6004
6007
|
# following rules apply:
|
|
6005
6008
|
#
|
|
6006
|
-
# * You can create a maximum of 50 application status checks
|
|
6009
|
+
# * You can create a maximum of 50 application status checks for each
|
|
6007
6010
|
# account.
|
|
6008
6011
|
#
|
|
6009
|
-
# *
|
|
6010
|
-
#
|
|
6012
|
+
# * You must associate the check with instances or tags using
|
|
6013
|
+
# `AssociateApplicationStatusCheck` before health checks start.
|
|
6011
6014
|
#
|
|
6012
|
-
# *
|
|
6015
|
+
# * You must set the `Timeout` value to less than the `Interval` value.
|
|
6013
6016
|
#
|
|
6014
|
-
# *
|
|
6017
|
+
# * You must start the `Path` with a forward slash (`/`). Default: `/`.
|
|
6015
6018
|
#
|
|
6016
|
-
# *
|
|
6017
|
-
#
|
|
6018
|
-
# status.
|
|
6019
|
+
# * You can specify `Aggregation` as `included` or `excluded`. If you do
|
|
6020
|
+
# not specify a value, it defaults to `included`, which means the
|
|
6021
|
+
# check contributes to the instance-level application status.
|
|
6019
6022
|
#
|
|
6020
|
-
# *
|
|
6021
|
-
# `
|
|
6022
|
-
# `StatusCodeMatcher` is `200`,
|
|
6023
|
-
# 300 seconds.
|
|
6023
|
+
# * You can use the following default values: `Interval` is 60 seconds,
|
|
6024
|
+
# `Timeout` is 6 seconds, `FailureThreshold` is 2, `SuccessThreshold`
|
|
6025
|
+
# is 2, `StatusCodeMatcher` is `200`,
|
|
6026
|
+
# `InitializationGracePeriodSeconds` is 300 seconds.
|
|
6024
6027
|
#
|
|
6025
6028
|
# * You can tag the application status check during creation. For more
|
|
6026
6029
|
# information, see [Tag your Amazon EC2 resources][1].
|
|
@@ -6097,9 +6100,10 @@ module Aws::EC2
|
|
|
6097
6100
|
# The tags to apply to the application status check.
|
|
6098
6101
|
#
|
|
6099
6102
|
# @option params [String] :client_token
|
|
6100
|
-
#
|
|
6101
|
-
#
|
|
6102
|
-
#
|
|
6103
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
6104
|
+
# the operation completes no more than one time. If you retry a request
|
|
6105
|
+
# with the same token, the service ignores the request but does not
|
|
6106
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
6103
6107
|
#
|
|
6104
6108
|
# **A suitable default value is auto-generated.** You should normally
|
|
6105
6109
|
# not need to pass this option.**
|
|
@@ -9012,6 +9016,12 @@ module Aws::EC2
|
|
|
9012
9016
|
# * If the source instance is in a Local Zone, you can create the
|
|
9013
9017
|
# snapshots in the same Local Zone or in its parent Region.
|
|
9014
9018
|
#
|
|
9019
|
+
# * If the source instance is on an Outpost that supports local
|
|
9020
|
+
# snapshots, you can create the snapshots on the same Outpost or in
|
|
9021
|
+
# the parent Region of that Outpost. In this case, you must use the
|
|
9022
|
+
# `SnapshotLocation` parameter to specify where to create the
|
|
9023
|
+
# snapshots.
|
|
9024
|
+
#
|
|
9015
9025
|
# For more information, see [Create an Amazon EBS-backed AMI][1] in the
|
|
9016
9026
|
# *Amazon Elastic Compute Cloud User Guide*.
|
|
9017
9027
|
#
|
|
@@ -9040,20 +9050,28 @@ module Aws::EC2
|
|
|
9040
9050
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
|
9041
9051
|
#
|
|
9042
9052
|
# @option params [String] :snapshot_location
|
|
9043
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
9044
|
-
#
|
|
9053
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
9054
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
9055
|
+
# in one of these locations, omit this parameter.
|
|
9045
9056
|
#
|
|
9046
9057
|
# </note>
|
|
9047
9058
|
#
|
|
9048
9059
|
# The Amazon S3 location where the snapshots will be stored.
|
|
9049
9060
|
#
|
|
9050
|
-
# * To create local snapshots in the same Local Zone
|
|
9051
|
-
# instance, specify `local`.
|
|
9061
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
9062
|
+
# Outpost as the source instance, specify `local`.
|
|
9052
9063
|
#
|
|
9053
|
-
# * To create regional snapshots in the parent Region of the Local Zone
|
|
9054
|
-
# specify `regional
|
|
9064
|
+
# * To create regional snapshots in the parent Region of the Local Zone
|
|
9065
|
+
# or Outpost, specify `regional`.
|
|
9055
9066
|
#
|
|
9056
|
-
#
|
|
9067
|
+
# If the source instance is in a Local Zone and you omit this parameter,
|
|
9068
|
+
# regional snapshots are created in the parent Region of the Local Zone.
|
|
9069
|
+
#
|
|
9070
|
+
# If the source instance is on an Outpost that supports local snapshots,
|
|
9071
|
+
# this parameter is required. If you omit it, the request fails with an
|
|
9072
|
+
# `InvalidParameterValue` error.
|
|
9073
|
+
#
|
|
9074
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
9057
9075
|
#
|
|
9058
9076
|
# @option params [Boolean] :dry_run
|
|
9059
9077
|
# Checks whether you have the required permissions for the action,
|
|
@@ -20390,9 +20408,10 @@ module Aws::EC2
|
|
|
20390
20408
|
# The ID of the application status check to delete.
|
|
20391
20409
|
#
|
|
20392
20410
|
# @option params [String] :client_token
|
|
20393
|
-
#
|
|
20394
|
-
#
|
|
20395
|
-
#
|
|
20411
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
20412
|
+
# the operation completes no more than one time. If you retry a request
|
|
20413
|
+
# with the same token, the service ignores the request but does not
|
|
20414
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
20396
20415
|
#
|
|
20397
20416
|
# **A suitable default value is auto-generated.** You should normally
|
|
20398
20417
|
# not need to pass this option.**
|
|
@@ -26341,9 +26360,8 @@ module Aws::EC2
|
|
|
26341
26360
|
req.send_request(options)
|
|
26342
26361
|
end
|
|
26343
26362
|
|
|
26344
|
-
# Describes the application status for the specified
|
|
26345
|
-
#
|
|
26346
|
-
# following rules apply:
|
|
26363
|
+
# Describes the aggregated application health status for the specified
|
|
26364
|
+
# instances. The following rules apply:
|
|
26347
26365
|
#
|
|
26348
26366
|
# * The instance-level status is derived from all application status
|
|
26349
26367
|
# checks with the aggregation setting set to `included`.
|
|
@@ -26638,9 +26656,10 @@ module Aws::EC2
|
|
|
26638
26656
|
req.send_request(options)
|
|
26639
26657
|
end
|
|
26640
26658
|
|
|
26641
|
-
# Describes
|
|
26642
|
-
#
|
|
26643
|
-
#
|
|
26659
|
+
# Describes application status checks, including configuration details
|
|
26660
|
+
# such as protocol, port, path, thresholds, and associations. Results
|
|
26661
|
+
# are paginated. Use the `NextToken` parameter to retrieve additional
|
|
26662
|
+
# results. The following rules apply:
|
|
26644
26663
|
#
|
|
26645
26664
|
# * If you do not specify any application status check IDs, all checks
|
|
26646
26665
|
# in your account are returned.
|
|
@@ -49875,16 +49894,17 @@ module Aws::EC2
|
|
|
49875
49894
|
# Disables suppression of application status checks for the specified
|
|
49876
49895
|
# instances. After suppression is disabled, health check results resume
|
|
49877
49896
|
# affecting the instance-level application status. You can specify a
|
|
49878
|
-
# maximum of 100 instance IDs
|
|
49897
|
+
# maximum of 100 instance IDs for each request.
|
|
49879
49898
|
#
|
|
49880
49899
|
# @option params [Array<String>] :instance_ids
|
|
49881
49900
|
# The IDs of the instances for which to disable application status check
|
|
49882
49901
|
# suppression.
|
|
49883
49902
|
#
|
|
49884
49903
|
# @option params [String] :client_token
|
|
49885
|
-
#
|
|
49886
|
-
#
|
|
49887
|
-
#
|
|
49904
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
49905
|
+
# the operation completes no more than one time. If you retry a request
|
|
49906
|
+
# with the same token, the service ignores the request but does not
|
|
49907
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
49888
49908
|
#
|
|
49889
49909
|
# **A suitable default value is auto-generated.** You should normally
|
|
49890
49910
|
# not need to pass this option.**
|
|
@@ -50994,9 +51014,10 @@ module Aws::EC2
|
|
|
50994
51014
|
# check.
|
|
50995
51015
|
#
|
|
50996
51016
|
# @option params [String] :client_token
|
|
50997
|
-
#
|
|
50998
|
-
#
|
|
50999
|
-
#
|
|
51017
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
51018
|
+
# the operation completes no more than one time. If you retry a request
|
|
51019
|
+
# with the same token, the service ignores the request but does not
|
|
51020
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
51000
51021
|
#
|
|
51001
51022
|
# **A suitable default value is auto-generated.** You should normally
|
|
51002
51023
|
# not need to pass this option.**
|
|
@@ -52074,7 +52095,7 @@ module Aws::EC2
|
|
|
52074
52095
|
# While suppressed, health checks continue to run but do not affect the
|
|
52075
52096
|
# instance-level application status. The following rules apply:
|
|
52076
52097
|
#
|
|
52077
|
-
# *
|
|
52098
|
+
# * You can specify a maximum of 100 instance IDs for each request.
|
|
52078
52099
|
#
|
|
52079
52100
|
# * Use `DisableApplicationStatusCheckSuppression` to resume normal
|
|
52080
52101
|
# health check reporting.
|
|
@@ -52094,9 +52115,10 @@ module Aws::EC2
|
|
|
52094
52115
|
# `DisableApplicationStatusCheckSuppression`.
|
|
52095
52116
|
#
|
|
52096
52117
|
# @option params [String] :client_token
|
|
52097
|
-
#
|
|
52098
|
-
#
|
|
52099
|
-
#
|
|
52118
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
52119
|
+
# the operation completes no more than one time. If you retry a request
|
|
52120
|
+
# with the same token, the service ignores the request but does not
|
|
52121
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
52100
52122
|
#
|
|
52101
52123
|
# **A suitable default value is auto-generated.** You should normally
|
|
52102
52124
|
# not need to pass this option.**
|
|
@@ -60923,9 +60945,10 @@ module Aws::EC2
|
|
|
60923
60945
|
# instance is launched. Valid values: 1 to 600.
|
|
60924
60946
|
#
|
|
60925
60947
|
# @option params [String] :client_token
|
|
60926
|
-
#
|
|
60927
|
-
#
|
|
60928
|
-
#
|
|
60948
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
60949
|
+
# the operation completes no more than one time. If you retry a request
|
|
60950
|
+
# with the same token, the service ignores the request but does not
|
|
60951
|
+
# return an error. For more information, see [Ensuring idempotency][1].
|
|
60929
60952
|
#
|
|
60930
60953
|
# **A suitable default value is auto-generated.** You should normally
|
|
60931
60954
|
# not need to pass this option.**
|
|
@@ -77163,7 +77186,7 @@ module Aws::EC2
|
|
|
77163
77186
|
tracer: tracer
|
|
77164
77187
|
)
|
|
77165
77188
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
77166
|
-
context[:gem_version] = '1.
|
|
77189
|
+
context[:gem_version] = '1.638.0'
|
|
77167
77190
|
Seahorse::Client::Request.new(handlers, context)
|
|
77168
77191
|
end
|
|
77169
77192
|
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -853,20 +853,28 @@ module Aws::EC2
|
|
|
853
853
|
#
|
|
854
854
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
|
855
855
|
# @option options [String] :snapshot_location
|
|
856
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
857
|
-
#
|
|
856
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
857
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
858
|
+
# in one of these locations, omit this parameter.
|
|
858
859
|
#
|
|
859
860
|
# </note>
|
|
860
861
|
#
|
|
861
862
|
# The Amazon S3 location where the snapshots will be stored.
|
|
862
863
|
#
|
|
863
|
-
# * To create local snapshots in the same Local Zone
|
|
864
|
-
# instance, specify `local`.
|
|
864
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
865
|
+
# Outpost as the source instance, specify `local`.
|
|
865
866
|
#
|
|
866
|
-
# * To create regional snapshots in the parent Region of the Local Zone
|
|
867
|
-
# specify `regional
|
|
867
|
+
# * To create regional snapshots in the parent Region of the Local Zone
|
|
868
|
+
# or Outpost, specify `regional`.
|
|
868
869
|
#
|
|
869
|
-
#
|
|
870
|
+
# If the source instance is in a Local Zone and you omit this parameter,
|
|
871
|
+
# regional snapshots are created in the parent Region of the Local Zone.
|
|
872
|
+
#
|
|
873
|
+
# If the source instance is on an Outpost that supports local snapshots,
|
|
874
|
+
# this parameter is required. If you omit it, the request fails with an
|
|
875
|
+
# `InvalidParameterValue` error.
|
|
876
|
+
#
|
|
877
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
870
878
|
# @option options [Boolean] :dry_run
|
|
871
879
|
# Checks whether you have the required permissions for the action,
|
|
872
880
|
# without actually making the request, and provides an error response.
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -2647,8 +2647,10 @@ module Aws::EC2
|
|
|
2647
2647
|
# @return [Array<String>]
|
|
2648
2648
|
#
|
|
2649
2649
|
# @!attribute [rw] client_token
|
|
2650
|
-
#
|
|
2651
|
-
#
|
|
2650
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
2651
|
+
# the operation completes no more than one time. If you retry a
|
|
2652
|
+
# request with the same token, the service ignores the request but
|
|
2653
|
+
# does not return an error. For more information, see [Ensuring
|
|
2652
2654
|
# idempotency][1].
|
|
2653
2655
|
#
|
|
2654
2656
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -9658,8 +9660,10 @@ module Aws::EC2
|
|
|
9658
9660
|
# @return [Array<Types::TagSpecification>]
|
|
9659
9661
|
#
|
|
9660
9662
|
# @!attribute [rw] client_token
|
|
9661
|
-
#
|
|
9662
|
-
#
|
|
9663
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
9664
|
+
# the operation completes no more than one time. If you retry a
|
|
9665
|
+
# request with the same token, the service ignores the request but
|
|
9666
|
+
# does not return an error. For more information, see [Ensuring
|
|
9663
9667
|
# idempotency][1].
|
|
9664
9668
|
#
|
|
9665
9669
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -11674,20 +11678,29 @@ module Aws::EC2
|
|
|
11674
11678
|
# @return [Array<Types::TagSpecification>]
|
|
11675
11679
|
#
|
|
11676
11680
|
# @!attribute [rw] snapshot_location
|
|
11677
|
-
# <note markdown="1"> Only supported for instances in Local Zones
|
|
11678
|
-
#
|
|
11681
|
+
# <note markdown="1"> Only supported for instances in Local Zones and for instances on
|
|
11682
|
+
# Outposts that support local snapshots. If the source instance is not
|
|
11683
|
+
# in one of these locations, omit this parameter.
|
|
11679
11684
|
#
|
|
11680
11685
|
# </note>
|
|
11681
11686
|
#
|
|
11682
11687
|
# The Amazon S3 location where the snapshots will be stored.
|
|
11683
11688
|
#
|
|
11684
|
-
# * To create local snapshots in the same Local Zone
|
|
11685
|
-
# instance, specify `local`.
|
|
11689
|
+
# * To create local snapshots in the same Local Zone or on the same
|
|
11690
|
+
# Outpost as the source instance, specify `local`.
|
|
11686
11691
|
#
|
|
11687
11692
|
# * To create regional snapshots in the parent Region of the Local
|
|
11688
|
-
# Zone, specify `regional
|
|
11693
|
+
# Zone or Outpost, specify `regional`.
|
|
11689
11694
|
#
|
|
11690
|
-
#
|
|
11695
|
+
# If the source instance is in a Local Zone and you omit this
|
|
11696
|
+
# parameter, regional snapshots are created in the parent Region of
|
|
11697
|
+
# the Local Zone.
|
|
11698
|
+
#
|
|
11699
|
+
# If the source instance is on an Outpost that supports local
|
|
11700
|
+
# snapshots, this parameter is required. If you omit it, the request
|
|
11701
|
+
# fails with an `InvalidParameterValue` error.
|
|
11702
|
+
#
|
|
11703
|
+
# Default: `regional` (for instances in Local Zones only)
|
|
11691
11704
|
# @return [String]
|
|
11692
11705
|
#
|
|
11693
11706
|
# @!attribute [rw] dry_run
|
|
@@ -19067,8 +19080,10 @@ module Aws::EC2
|
|
|
19067
19080
|
# @return [String]
|
|
19068
19081
|
#
|
|
19069
19082
|
# @!attribute [rw] client_token
|
|
19070
|
-
#
|
|
19071
|
-
#
|
|
19083
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
19084
|
+
# the operation completes no more than one time. If you retry a
|
|
19085
|
+
# request with the same token, the service ignores the request but
|
|
19086
|
+
# does not return an error. For more information, see [Ensuring
|
|
19072
19087
|
# idempotency][1].
|
|
19073
19088
|
#
|
|
19074
19089
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -38515,8 +38530,10 @@ module Aws::EC2
|
|
|
38515
38530
|
# @return [Array<String>]
|
|
38516
38531
|
#
|
|
38517
38532
|
# @!attribute [rw] client_token
|
|
38518
|
-
#
|
|
38519
|
-
#
|
|
38533
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
38534
|
+
# the operation completes no more than one time. If you retry a
|
|
38535
|
+
# request with the same token, the service ignores the request but
|
|
38536
|
+
# does not return an error. For more information, see [Ensuring
|
|
38520
38537
|
# idempotency][1].
|
|
38521
38538
|
#
|
|
38522
38539
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -39479,8 +39496,10 @@ module Aws::EC2
|
|
|
39479
39496
|
# @return [Array<String>]
|
|
39480
39497
|
#
|
|
39481
39498
|
# @!attribute [rw] client_token
|
|
39482
|
-
#
|
|
39483
|
-
#
|
|
39499
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
39500
|
+
# the operation completes no more than one time. If you retry a
|
|
39501
|
+
# request with the same token, the service ignores the request but
|
|
39502
|
+
# does not return an error. For more information, see [Ensuring
|
|
39484
39503
|
# idempotency][1].
|
|
39485
39504
|
#
|
|
39486
39505
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -41596,8 +41615,10 @@ module Aws::EC2
|
|
|
41596
41615
|
# @return [Integer]
|
|
41597
41616
|
#
|
|
41598
41617
|
# @!attribute [rw] client_token
|
|
41599
|
-
#
|
|
41600
|
-
#
|
|
41618
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
41619
|
+
# the operation completes no more than one time. If you retry a
|
|
41620
|
+
# request with the same token, the service ignores the request but
|
|
41621
|
+
# does not return an error. For more information, see [Ensuring
|
|
41601
41622
|
# idempotency][1].
|
|
41602
41623
|
#
|
|
41603
41624
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -47084,7 +47105,7 @@ module Aws::EC2
|
|
|
47084
47105
|
class GetInstanceUefiDataResult < Struct.new(
|
|
47085
47106
|
:instance_id,
|
|
47086
47107
|
:uefi_data)
|
|
47087
|
-
SENSITIVE = []
|
|
47108
|
+
SENSITIVE = [:uefi_data]
|
|
47088
47109
|
include Aws::Structure
|
|
47089
47110
|
end
|
|
47090
47111
|
|
|
@@ -64279,8 +64300,10 @@ module Aws::EC2
|
|
|
64279
64300
|
# @return [Integer]
|
|
64280
64301
|
#
|
|
64281
64302
|
# @!attribute [rw] client_token
|
|
64282
|
-
#
|
|
64283
|
-
#
|
|
64303
|
+
# A unique, case-sensitive identifier that you provide to ensure that
|
|
64304
|
+
# the operation completes no more than one time. If you retry a
|
|
64305
|
+
# request with the same token, the service ignores the request but
|
|
64306
|
+
# does not return an error. For more information, see [Ensuring
|
|
64284
64307
|
# idempotency][1].
|
|
64285
64308
|
#
|
|
64286
64309
|
# **A suitable default value is auto-generated.** You should normally
|
|
@@ -74982,7 +75005,7 @@ module Aws::EC2
|
|
|
74982
75005
|
:virtualization_type,
|
|
74983
75006
|
:sriov_net_support,
|
|
74984
75007
|
:ena_support)
|
|
74985
|
-
SENSITIVE = []
|
|
75008
|
+
SENSITIVE = [:uefi_data]
|
|
74986
75009
|
include Aws::Structure
|
|
74987
75010
|
end
|
|
74988
75011
|
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -10328,7 +10328,7 @@ module Aws::EC2
|
|
|
10328
10328
|
class GetInstanceUefiDataResult
|
|
10329
10329
|
attr_accessor instance_id: ::String
|
|
10330
10330
|
attr_accessor uefi_data: ::String
|
|
10331
|
-
SENSITIVE: []
|
|
10331
|
+
SENSITIVE: [:uefi_data]
|
|
10332
10332
|
end
|
|
10333
10333
|
|
|
10334
10334
|
class GetIpamAddressHistoryRequest
|
|
@@ -16208,7 +16208,7 @@ module Aws::EC2
|
|
|
16208
16208
|
attr_accessor virtualization_type: ::String
|
|
16209
16209
|
attr_accessor sriov_net_support: ::String
|
|
16210
16210
|
attr_accessor ena_support: bool
|
|
16211
|
-
SENSITIVE: []
|
|
16211
|
+
SENSITIVE: [:uefi_data]
|
|
16212
16212
|
end
|
|
16213
16213
|
|
|
16214
16214
|
class RegisterImageResult
|