aws-sdk-qldb 1.22.0 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qldb/client.rb +57 -12
- data/lib/aws-sdk-qldb/client_api.rb +3 -0
- data/lib/aws-sdk-qldb/types.rb +39 -17
- data/lib/aws-sdk-qldb.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d357b0082c8321014352a5d98de79b83a0195d1af495a2b772ef161a7582dd50
|
4
|
+
data.tar.gz: 1e321067e6392d104c69679e3646d4aae6708ec02cff7c7a1e3ddcca68e435f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9484a75b7ecfeea03e5df7130c15fc9d2b7dd709d0de388331c7ddc8a1902a1172e6c19c54ad893d3f942580c70d3b3c29b0927d060b4611fdb0a74b581c3d5f
|
7
|
+
data.tar.gz: f571ed6d83e7b250d98a64c300d22b043e1c63cab73e6fcc945f6187f78284378b6d7c62176e23369f5b71e659f2083b99cd5327e0a5367da2336b10f9c4598c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.25.0 (2022-02-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.24.0 (2022-02-03)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.23.0 (2021-12-21)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Amazon QLDB now supports journal exports in JSON and Ion Binary formats. This release adds an optional OutputFormat parameter to the ExportJournalToS3 API.
|
18
|
+
|
4
19
|
1.22.0 (2021-11-30)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.25.0
|
data/lib/aws-sdk-qldb/client.rb
CHANGED
@@ -27,6 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
35
|
|
@@ -73,6 +76,9 @@ module Aws::QLDB
|
|
73
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
84
|
|
@@ -175,6 +181,10 @@ module Aws::QLDB
|
|
175
181
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
182
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
183
|
#
|
184
|
+
# @option options [String] :defaults_mode ("legacy")
|
185
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
186
|
+
# accepted modes and the configuration defaults that are included.
|
187
|
+
#
|
178
188
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
189
|
# Set to true to disable SDK automatically adding host prefix
|
180
190
|
# to default service endpoint when available.
|
@@ -297,7 +307,7 @@ module Aws::QLDB
|
|
297
307
|
# seconds to wait when opening a HTTP session before raising a
|
298
308
|
# `Timeout::Error`.
|
299
309
|
#
|
300
|
-
# @option options [
|
310
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
311
|
# number of seconds to wait for response data. This value can
|
302
312
|
# safely be set per-request on the session.
|
303
313
|
#
|
@@ -313,6 +323,9 @@ module Aws::QLDB
|
|
313
323
|
# disables this behaviour. This value can safely be set per
|
314
324
|
# request on the session.
|
315
325
|
#
|
326
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
327
|
+
# in seconds.
|
328
|
+
#
|
316
329
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
330
|
# HTTP debug output will be sent to the `:logger`.
|
318
331
|
#
|
@@ -376,11 +389,13 @@ module Aws::QLDB
|
|
376
389
|
req.send_request(options)
|
377
390
|
end
|
378
391
|
|
379
|
-
# Creates a new ledger in your account in the
|
392
|
+
# Creates a new ledger in your Amazon Web Services account in the
|
393
|
+
# current Region.
|
380
394
|
#
|
381
395
|
# @option params [required, String] :name
|
382
396
|
# The name of the ledger that you want to create. The name must be
|
383
|
-
# unique among all of the ledgers in your
|
397
|
+
# unique among all of the ledgers in your Amazon Web Services account in
|
398
|
+
# the current Region.
|
384
399
|
#
|
385
400
|
# Naming constraints for ledger names are defined in [Quotas in Amazon
|
386
401
|
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
@@ -460,7 +475,7 @@ module Aws::QLDB
|
|
460
475
|
# To specify a customer managed KMS key, you can use its key ID, Amazon
|
461
476
|
# Resource Name (ARN), alias name, or alias ARN. When using an alias
|
462
477
|
# name, prefix it with `"alias/"`. To specify a key in a different
|
463
|
-
# account, you must use the key ARN or alias ARN.
|
478
|
+
# Amazon Web Services account, you must use the key ARN or alias ARN.
|
464
479
|
#
|
465
480
|
# For example:
|
466
481
|
#
|
@@ -653,6 +668,7 @@ module Aws::QLDB
|
|
653
668
|
# resp.export_description.s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
654
669
|
# resp.export_description.s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
655
670
|
# resp.export_description.role_arn #=> String
|
671
|
+
# resp.export_description.output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
656
672
|
#
|
657
673
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/DescribeJournalS3Export AWS API Documentation
|
658
674
|
#
|
@@ -707,8 +723,17 @@ module Aws::QLDB
|
|
707
723
|
end
|
708
724
|
|
709
725
|
# Exports journal contents within a date and time range from a ledger
|
710
|
-
# into a specified Amazon Simple Storage Service (Amazon S3) bucket.
|
711
|
-
#
|
726
|
+
# into a specified Amazon Simple Storage Service (Amazon S3) bucket. A
|
727
|
+
# journal export job can write the data objects in either the text or
|
728
|
+
# binary representation of Amazon Ion format, or in *JSON Lines* text
|
729
|
+
# format.
|
730
|
+
#
|
731
|
+
# In JSON Lines format, each journal block in the exported data object
|
732
|
+
# is a valid JSON object that is delimited by a newline. You can use
|
733
|
+
# this format to easily integrate JSON exports with analytics tools such
|
734
|
+
# as Glue and Amazon Athena because these services can parse
|
735
|
+
# newline-delimited JSON automatically. For more information about the
|
736
|
+
# format, see [JSON Lines][1].
|
712
737
|
#
|
713
738
|
# If the ledger with the given `Name` doesn't exist, then throws
|
714
739
|
# `ResourceNotFoundException`.
|
@@ -720,6 +745,10 @@ module Aws::QLDB
|
|
720
745
|
# ledger. Beyond this limit, journal export requests throw
|
721
746
|
# `LimitExceededException`.
|
722
747
|
#
|
748
|
+
#
|
749
|
+
#
|
750
|
+
# [1]: https://jsonlines.org/
|
751
|
+
#
|
723
752
|
# @option params [required, String] :name
|
724
753
|
# The name of the ledger.
|
725
754
|
#
|
@@ -759,8 +788,16 @@ module Aws::QLDB
|
|
759
788
|
# * Write objects into your Amazon Simple Storage Service (Amazon S3)
|
760
789
|
# bucket.
|
761
790
|
#
|
762
|
-
# * (Optional) Use your customer
|
763
|
-
#
|
791
|
+
# * (Optional) Use your customer managed key in Key Management Service
|
792
|
+
# (KMS) for server-side encryption of your exported data.
|
793
|
+
#
|
794
|
+
# To pass a role to QLDB when requesting a journal export, you must have
|
795
|
+
# permissions to perform the `iam:PassRole` action on the IAM role
|
796
|
+
# resource. This is required for all journal export requests.
|
797
|
+
#
|
798
|
+
# @option params [String] :output_format
|
799
|
+
# The output format of your exported journal data. If this parameter is
|
800
|
+
# not specified, the exported data defaults to `ION_TEXT` format.
|
764
801
|
#
|
765
802
|
# @return [Types::ExportJournalToS3Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
766
803
|
#
|
@@ -781,6 +818,7 @@ module Aws::QLDB
|
|
781
818
|
# },
|
782
819
|
# },
|
783
820
|
# role_arn: "Arn", # required
|
821
|
+
# output_format: "ION_BINARY", # accepts ION_BINARY, ION_TEXT, JSON
|
784
822
|
# })
|
785
823
|
#
|
786
824
|
# @example Response structure
|
@@ -1024,7 +1062,8 @@ module Aws::QLDB
|
|
1024
1062
|
end
|
1025
1063
|
|
1026
1064
|
# Returns an array of journal export job descriptions for all ledgers
|
1027
|
-
# that are associated with the current account and
|
1065
|
+
# that are associated with the current Amazon Web Services account and
|
1066
|
+
# Region.
|
1028
1067
|
#
|
1029
1068
|
# This action returns a maximum of `MaxResults` items, and is paginated
|
1030
1069
|
# so that you can retrieve all the items by calling
|
@@ -1077,6 +1116,7 @@ module Aws::QLDB
|
|
1077
1116
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
1078
1117
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
1079
1118
|
# resp.journal_s3_exports[0].role_arn #=> String
|
1119
|
+
# resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
1080
1120
|
# resp.next_token #=> String
|
1081
1121
|
#
|
1082
1122
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3Exports AWS API Documentation
|
@@ -1146,6 +1186,7 @@ module Aws::QLDB
|
|
1146
1186
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
1147
1187
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
1148
1188
|
# resp.journal_s3_exports[0].role_arn #=> String
|
1189
|
+
# resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
1149
1190
|
# resp.next_token #=> String
|
1150
1191
|
#
|
1151
1192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3ExportsForLedger AWS API Documentation
|
@@ -1158,7 +1199,7 @@ module Aws::QLDB
|
|
1158
1199
|
end
|
1159
1200
|
|
1160
1201
|
# Returns an array of ledger summaries that are associated with the
|
1161
|
-
# current account and Region.
|
1202
|
+
# current Amazon Web Services account and Region.
|
1162
1203
|
#
|
1163
1204
|
# This action returns a maximum of 100 items and is paginated so that
|
1164
1205
|
# you can retrieve all the items by calling `ListLedgers` multiple
|
@@ -1250,6 +1291,10 @@ module Aws::QLDB
|
|
1250
1291
|
# permissions for a journal stream to write data records to a Kinesis
|
1251
1292
|
# Data Streams resource.
|
1252
1293
|
#
|
1294
|
+
# To pass a role to QLDB when requesting a journal stream, you must have
|
1295
|
+
# permissions to perform the `iam:PassRole` action on the IAM role
|
1296
|
+
# resource. This is required for all journal stream requests.
|
1297
|
+
#
|
1253
1298
|
# @option params [Hash<String,String>] :tags
|
1254
1299
|
# The key-value pairs to add as tags to the stream that you want to
|
1255
1300
|
# create. Tag keys are case sensitive. Tag values are case sensitive and
|
@@ -1432,7 +1477,7 @@ module Aws::QLDB
|
|
1432
1477
|
# To specify a customer managed KMS key, you can use its key ID, Amazon
|
1433
1478
|
# Resource Name (ARN), alias name, or alias ARN. When using an alias
|
1434
1479
|
# name, prefix it with `"alias/"`. To specify a key in a different
|
1435
|
-
# account, you must use the key ARN or alias ARN.
|
1480
|
+
# Amazon Web Services account, you must use the key ARN or alias ARN.
|
1436
1481
|
#
|
1437
1482
|
# For example:
|
1438
1483
|
#
|
@@ -1580,7 +1625,7 @@ module Aws::QLDB
|
|
1580
1625
|
params: params,
|
1581
1626
|
config: config)
|
1582
1627
|
context[:gem_name] = 'aws-sdk-qldb'
|
1583
|
-
context[:gem_version] = '1.
|
1628
|
+
context[:gem_version] = '1.25.0'
|
1584
1629
|
Seahorse::Client::Request.new(handlers, context)
|
1585
1630
|
end
|
1586
1631
|
|
@@ -66,6 +66,7 @@ module Aws::QLDB
|
|
66
66
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
67
67
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
68
68
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
69
|
+
OutputFormat = Shapes::StringShape.new(name: 'OutputFormat')
|
69
70
|
ParameterName = Shapes::StringShape.new(name: 'ParameterName')
|
70
71
|
PermissionsMode = Shapes::StringShape.new(name: 'PermissionsMode')
|
71
72
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
@@ -156,6 +157,7 @@ module Aws::QLDB
|
|
156
157
|
ExportJournalToS3Request.add_member(:exclusive_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ExclusiveEndTime"))
|
157
158
|
ExportJournalToS3Request.add_member(:s3_export_configuration, Shapes::ShapeRef.new(shape: S3ExportConfiguration, required: true, location_name: "S3ExportConfiguration"))
|
158
159
|
ExportJournalToS3Request.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
|
160
|
+
ExportJournalToS3Request.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "OutputFormat"))
|
159
161
|
ExportJournalToS3Request.struct_class = Types::ExportJournalToS3Request
|
160
162
|
|
161
163
|
ExportJournalToS3Response.add_member(:export_id, Shapes::ShapeRef.new(shape: UniqueId, required: true, location_name: "ExportId"))
|
@@ -214,6 +216,7 @@ module Aws::QLDB
|
|
214
216
|
JournalS3ExportDescription.add_member(:exclusive_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ExclusiveEndTime"))
|
215
217
|
JournalS3ExportDescription.add_member(:s3_export_configuration, Shapes::ShapeRef.new(shape: S3ExportConfiguration, required: true, location_name: "S3ExportConfiguration"))
|
216
218
|
JournalS3ExportDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
|
219
|
+
JournalS3ExportDescription.add_member(:output_format, Shapes::ShapeRef.new(shape: OutputFormat, location_name: "OutputFormat"))
|
217
220
|
JournalS3ExportDescription.struct_class = Types::JournalS3ExportDescription
|
218
221
|
|
219
222
|
JournalS3ExportList.member = Shapes::ShapeRef.new(shape: JournalS3ExportDescription)
|
data/lib/aws-sdk-qldb/types.rb
CHANGED
@@ -63,8 +63,8 @@ module Aws::QLDB
|
|
63
63
|
#
|
64
64
|
# @!attribute [rw] name
|
65
65
|
# The name of the ledger that you want to create. The name must be
|
66
|
-
# unique among all of the ledgers in your
|
67
|
-
# Region.
|
66
|
+
# unique among all of the ledgers in your Amazon Web Services account
|
67
|
+
# in the current Region.
|
68
68
|
#
|
69
69
|
# Naming constraints for ledger names are defined in [Quotas in Amazon
|
70
70
|
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
@@ -148,7 +148,8 @@ module Aws::QLDB
|
|
148
148
|
# To specify a customer managed KMS key, you can use its key ID,
|
149
149
|
# Amazon Resource Name (ARN), alias name, or alias ARN. When using an
|
150
150
|
# alias name, prefix it with `"alias/"`. To specify a key in a
|
151
|
-
# different account, you must use the key ARN or
|
151
|
+
# different Amazon Web Services account, you must use the key ARN or
|
152
|
+
# alias ARN.
|
152
153
|
#
|
153
154
|
# For example:
|
154
155
|
#
|
@@ -419,6 +420,7 @@ module Aws::QLDB
|
|
419
420
|
# },
|
420
421
|
# },
|
421
422
|
# role_arn: "Arn", # required
|
423
|
+
# output_format: "ION_BINARY", # accepts ION_BINARY, ION_TEXT, JSON
|
422
424
|
# }
|
423
425
|
#
|
424
426
|
# @!attribute [rw] name
|
@@ -464,8 +466,17 @@ module Aws::QLDB
|
|
464
466
|
# * Write objects into your Amazon Simple Storage Service (Amazon S3)
|
465
467
|
# bucket.
|
466
468
|
#
|
467
|
-
# * (Optional) Use your customer
|
468
|
-
#
|
469
|
+
# * (Optional) Use your customer managed key in Key Management Service
|
470
|
+
# (KMS) for server-side encryption of your exported data.
|
471
|
+
#
|
472
|
+
# To pass a role to QLDB when requesting a journal export, you must
|
473
|
+
# have permissions to perform the `iam:PassRole` action on the IAM
|
474
|
+
# role resource. This is required for all journal export requests.
|
475
|
+
# @return [String]
|
476
|
+
#
|
477
|
+
# @!attribute [rw] output_format
|
478
|
+
# The output format of your exported journal data. If this parameter
|
479
|
+
# is not specified, the exported data defaults to `ION_TEXT` format.
|
469
480
|
# @return [String]
|
470
481
|
#
|
471
482
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ExportJournalToS3Request AWS API Documentation
|
@@ -475,7 +486,8 @@ module Aws::QLDB
|
|
475
486
|
:inclusive_start_time,
|
476
487
|
:exclusive_end_time,
|
477
488
|
:s3_export_configuration,
|
478
|
-
:role_arn
|
489
|
+
:role_arn,
|
490
|
+
:output_format)
|
479
491
|
SENSITIVE = []
|
480
492
|
include Aws::Structure
|
481
493
|
end
|
@@ -788,12 +800,12 @@ module Aws::QLDB
|
|
788
800
|
#
|
789
801
|
# @!attribute [rw] inclusive_start_time
|
790
802
|
# The inclusive start date and time for the range of journal contents
|
791
|
-
# that
|
803
|
+
# that was specified in the original export request.
|
792
804
|
# @return [Time]
|
793
805
|
#
|
794
806
|
# @!attribute [rw] exclusive_end_time
|
795
807
|
# The exclusive end date and time for the range of journal contents
|
796
|
-
# that
|
808
|
+
# that was specified in the original export request.
|
797
809
|
# @return [Time]
|
798
810
|
#
|
799
811
|
# @!attribute [rw] s3_export_configuration
|
@@ -808,8 +820,12 @@ module Aws::QLDB
|
|
808
820
|
# * Write objects into your Amazon Simple Storage Service (Amazon S3)
|
809
821
|
# bucket.
|
810
822
|
#
|
811
|
-
# * (Optional) Use your customer
|
812
|
-
#
|
823
|
+
# * (Optional) Use your customer managed key in Key Management Service
|
824
|
+
# (KMS) for server-side encryption of your exported data.
|
825
|
+
# @return [String]
|
826
|
+
#
|
827
|
+
# @!attribute [rw] output_format
|
828
|
+
# The output format of the exported journal data.
|
813
829
|
# @return [String]
|
814
830
|
#
|
815
831
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/JournalS3ExportDescription AWS API Documentation
|
@@ -822,7 +838,8 @@ module Aws::QLDB
|
|
822
838
|
:inclusive_start_time,
|
823
839
|
:exclusive_end_time,
|
824
840
|
:s3_export_configuration,
|
825
|
-
:role_arn
|
841
|
+
:role_arn,
|
842
|
+
:output_format)
|
826
843
|
SENSITIVE = []
|
827
844
|
include Aws::Structure
|
828
845
|
end
|
@@ -1129,7 +1146,8 @@ module Aws::QLDB
|
|
1129
1146
|
|
1130
1147
|
# @!attribute [rw] journal_s3_exports
|
1131
1148
|
# The array of journal export job descriptions for all ledgers that
|
1132
|
-
# are associated with the current account and
|
1149
|
+
# are associated with the current Amazon Web Services account and
|
1150
|
+
# Region.
|
1133
1151
|
# @return [Array<Types::JournalS3ExportDescription>]
|
1134
1152
|
#
|
1135
1153
|
# @!attribute [rw] next_token
|
@@ -1181,7 +1199,7 @@ module Aws::QLDB
|
|
1181
1199
|
|
1182
1200
|
# @!attribute [rw] ledgers
|
1183
1201
|
# The array of ledger summaries that are associated with the current
|
1184
|
-
# account and Region.
|
1202
|
+
# Amazon Web Services account and Region.
|
1185
1203
|
# @return [Array<Types::LedgerSummary>]
|
1186
1204
|
#
|
1187
1205
|
# @!attribute [rw] next_token
|
@@ -1356,9 +1374,8 @@ module Aws::QLDB
|
|
1356
1374
|
# @return [String]
|
1357
1375
|
#
|
1358
1376
|
# @!attribute [rw] kms_key_arn
|
1359
|
-
# The Amazon Resource Name (ARN) of a symmetric
|
1360
|
-
#
|
1361
|
-
# asymmetric CMKs.
|
1377
|
+
# The Amazon Resource Name (ARN) of a symmetric key in Key Management
|
1378
|
+
# Service (KMS). Amazon S3 does not support asymmetric KMS keys.
|
1362
1379
|
#
|
1363
1380
|
# You must provide a `KmsKeyArn` if you specify `SSE_KMS` as the
|
1364
1381
|
# `ObjectEncryptionType`.
|
@@ -1466,6 +1483,10 @@ module Aws::QLDB
|
|
1466
1483
|
# The Amazon Resource Name (ARN) of the IAM role that grants QLDB
|
1467
1484
|
# permissions for a journal stream to write data records to a Kinesis
|
1468
1485
|
# Data Streams resource.
|
1486
|
+
#
|
1487
|
+
# To pass a role to QLDB when requesting a journal stream, you must
|
1488
|
+
# have permissions to perform the `iam:PassRole` action on the IAM
|
1489
|
+
# role resource. This is required for all journal stream requests.
|
1469
1490
|
# @return [String]
|
1470
1491
|
#
|
1471
1492
|
# @!attribute [rw] tags
|
@@ -1737,7 +1758,8 @@ module Aws::QLDB
|
|
1737
1758
|
# To specify a customer managed KMS key, you can use its key ID,
|
1738
1759
|
# Amazon Resource Name (ARN), alias name, or alias ARN. When using an
|
1739
1760
|
# alias name, prefix it with `"alias/"`. To specify a key in a
|
1740
|
-
# different account, you must use the key ARN or
|
1761
|
+
# different Amazon Web Services account, you must use the key ARN or
|
1762
|
+
# alias ARN.
|
1741
1763
|
#
|
1742
1764
|
# For example:
|
1743
1765
|
#
|
data/lib/aws-sdk-qldb.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qldb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|