aws-sdk-qldb 1.20.0 → 1.24.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qldb/client.rb +67 -13
- 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: 2f1190c891829505364231903dc40e0eee62cdacb0df80ca40c2b1804b132403
|
4
|
+
data.tar.gz: f6bc5be0d157f1b3a606784786246875e9d79694a34db3dc346a661ccab9b75d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1556c4ccf114a35fa0a4af596c950263f691e3a9c9e8204ef6936240483fe7f5aab104ae2c584e16a44b7bc2dc2fe40d56e60f29a99802091ca017eed3a4194f
|
7
|
+
data.tar.gz: 23078e44a4e925be33677cdbf9c15588a4ba9c04a1b33b62cc6e00a109840817342a636e0c2fe7a2fac57b61ff93e093d4d65ea6ccaf8a5a99546cf0c6ea3507
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.24.0 (2022-02-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.23.0 (2021-12-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon QLDB now supports journal exports in JSON and Ion Binary formats. This release adds an optional OutputFormat parameter to the ExportJournalToS3 API.
|
13
|
+
|
14
|
+
1.22.0 (2021-11-30)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
19
|
+
1.21.0 (2021-11-04)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.20.0 (2021-10-18)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.24.0
|
data/lib/aws-sdk-qldb/client.rb
CHANGED
@@ -27,6 +27,8 @@ 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/defaults_mode.rb'
|
31
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
32
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
31
33
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
34
|
|
@@ -73,6 +75,8 @@ module Aws::QLDB
|
|
73
75
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
76
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
77
|
add_plugin(Aws::Plugins::HttpChecksum)
|
78
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
79
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
76
80
|
add_plugin(Aws::Plugins::SignatureV4)
|
77
81
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
78
82
|
|
@@ -119,7 +123,9 @@ module Aws::QLDB
|
|
119
123
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
124
|
# are very aggressive. Construct and pass an instance of
|
121
125
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
-
# enable retries and extended timeouts.
|
126
|
+
# enable retries and extended timeouts. Instance profile credential
|
127
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
128
|
+
# to true.
|
123
129
|
#
|
124
130
|
# @option options [required, String] :region
|
125
131
|
# The AWS region to connect to. The configured `:region` is
|
@@ -173,6 +179,10 @@ module Aws::QLDB
|
|
173
179
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
174
180
|
# a clock skew correction and retry requests with skewed client clocks.
|
175
181
|
#
|
182
|
+
# @option options [String] :defaults_mode ("legacy")
|
183
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
184
|
+
# accepted modes and the configuration defaults that are included.
|
185
|
+
#
|
176
186
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
177
187
|
# Set to true to disable SDK automatically adding host prefix
|
178
188
|
# to default service endpoint when available.
|
@@ -275,6 +285,15 @@ module Aws::QLDB
|
|
275
285
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
276
286
|
# requests are made, and retries are disabled.
|
277
287
|
#
|
288
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
289
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
290
|
+
# will be used if available.
|
291
|
+
#
|
292
|
+
# @option options [Boolean] :use_fips_endpoint
|
293
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
294
|
+
# When a `fips` region is used, the region is normalized and this config
|
295
|
+
# is set to `true`.
|
296
|
+
#
|
278
297
|
# @option options [Boolean] :validate_params (true)
|
279
298
|
# When `true`, request parameters are validated before
|
280
299
|
# sending the request.
|
@@ -286,7 +305,7 @@ module Aws::QLDB
|
|
286
305
|
# seconds to wait when opening a HTTP session before raising a
|
287
306
|
# `Timeout::Error`.
|
288
307
|
#
|
289
|
-
# @option options [
|
308
|
+
# @option options [Float] :http_read_timeout (60) The default
|
290
309
|
# number of seconds to wait for response data. This value can
|
291
310
|
# safely be set per-request on the session.
|
292
311
|
#
|
@@ -302,6 +321,9 @@ module Aws::QLDB
|
|
302
321
|
# disables this behaviour. This value can safely be set per
|
303
322
|
# request on the session.
|
304
323
|
#
|
324
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
325
|
+
# in seconds.
|
326
|
+
#
|
305
327
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
306
328
|
# HTTP debug output will be sent to the `:logger`.
|
307
329
|
#
|
@@ -365,11 +387,13 @@ module Aws::QLDB
|
|
365
387
|
req.send_request(options)
|
366
388
|
end
|
367
389
|
|
368
|
-
# Creates a new ledger in your account in the
|
390
|
+
# Creates a new ledger in your Amazon Web Services account in the
|
391
|
+
# current Region.
|
369
392
|
#
|
370
393
|
# @option params [required, String] :name
|
371
394
|
# The name of the ledger that you want to create. The name must be
|
372
|
-
# unique among all of the ledgers in your
|
395
|
+
# unique among all of the ledgers in your Amazon Web Services account in
|
396
|
+
# the current Region.
|
373
397
|
#
|
374
398
|
# Naming constraints for ledger names are defined in [Quotas in Amazon
|
375
399
|
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
@@ -449,7 +473,7 @@ module Aws::QLDB
|
|
449
473
|
# To specify a customer managed KMS key, you can use its key ID, Amazon
|
450
474
|
# Resource Name (ARN), alias name, or alias ARN. When using an alias
|
451
475
|
# name, prefix it with `"alias/"`. To specify a key in a different
|
452
|
-
# account, you must use the key ARN or alias ARN.
|
476
|
+
# Amazon Web Services account, you must use the key ARN or alias ARN.
|
453
477
|
#
|
454
478
|
# For example:
|
455
479
|
#
|
@@ -642,6 +666,7 @@ module Aws::QLDB
|
|
642
666
|
# resp.export_description.s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
643
667
|
# resp.export_description.s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
644
668
|
# resp.export_description.role_arn #=> String
|
669
|
+
# resp.export_description.output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
645
670
|
#
|
646
671
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/DescribeJournalS3Export AWS API Documentation
|
647
672
|
#
|
@@ -696,8 +721,17 @@ module Aws::QLDB
|
|
696
721
|
end
|
697
722
|
|
698
723
|
# Exports journal contents within a date and time range from a ledger
|
699
|
-
# into a specified Amazon Simple Storage Service (Amazon S3) bucket.
|
700
|
-
#
|
724
|
+
# into a specified Amazon Simple Storage Service (Amazon S3) bucket. A
|
725
|
+
# journal export job can write the data objects in either the text or
|
726
|
+
# binary representation of Amazon Ion format, or in *JSON Lines* text
|
727
|
+
# format.
|
728
|
+
#
|
729
|
+
# In JSON Lines format, each journal block in the exported data object
|
730
|
+
# is a valid JSON object that is delimited by a newline. You can use
|
731
|
+
# this format to easily integrate JSON exports with analytics tools such
|
732
|
+
# as Glue and Amazon Athena because these services can parse
|
733
|
+
# newline-delimited JSON automatically. For more information about the
|
734
|
+
# format, see [JSON Lines][1].
|
701
735
|
#
|
702
736
|
# If the ledger with the given `Name` doesn't exist, then throws
|
703
737
|
# `ResourceNotFoundException`.
|
@@ -709,6 +743,10 @@ module Aws::QLDB
|
|
709
743
|
# ledger. Beyond this limit, journal export requests throw
|
710
744
|
# `LimitExceededException`.
|
711
745
|
#
|
746
|
+
#
|
747
|
+
#
|
748
|
+
# [1]: https://jsonlines.org/
|
749
|
+
#
|
712
750
|
# @option params [required, String] :name
|
713
751
|
# The name of the ledger.
|
714
752
|
#
|
@@ -748,8 +786,16 @@ module Aws::QLDB
|
|
748
786
|
# * Write objects into your Amazon Simple Storage Service (Amazon S3)
|
749
787
|
# bucket.
|
750
788
|
#
|
751
|
-
# * (Optional) Use your customer
|
752
|
-
#
|
789
|
+
# * (Optional) Use your customer managed key in Key Management Service
|
790
|
+
# (KMS) for server-side encryption of your exported data.
|
791
|
+
#
|
792
|
+
# To pass a role to QLDB when requesting a journal export, you must have
|
793
|
+
# permissions to perform the `iam:PassRole` action on the IAM role
|
794
|
+
# resource. This is required for all journal export requests.
|
795
|
+
#
|
796
|
+
# @option params [String] :output_format
|
797
|
+
# The output format of your exported journal data. If this parameter is
|
798
|
+
# not specified, the exported data defaults to `ION_TEXT` format.
|
753
799
|
#
|
754
800
|
# @return [Types::ExportJournalToS3Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
755
801
|
#
|
@@ -770,6 +816,7 @@ module Aws::QLDB
|
|
770
816
|
# },
|
771
817
|
# },
|
772
818
|
# role_arn: "Arn", # required
|
819
|
+
# output_format: "ION_BINARY", # accepts ION_BINARY, ION_TEXT, JSON
|
773
820
|
# })
|
774
821
|
#
|
775
822
|
# @example Response structure
|
@@ -1013,7 +1060,8 @@ module Aws::QLDB
|
|
1013
1060
|
end
|
1014
1061
|
|
1015
1062
|
# Returns an array of journal export job descriptions for all ledgers
|
1016
|
-
# that are associated with the current account and
|
1063
|
+
# that are associated with the current Amazon Web Services account and
|
1064
|
+
# Region.
|
1017
1065
|
#
|
1018
1066
|
# This action returns a maximum of `MaxResults` items, and is paginated
|
1019
1067
|
# so that you can retrieve all the items by calling
|
@@ -1066,6 +1114,7 @@ module Aws::QLDB
|
|
1066
1114
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
1067
1115
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
1068
1116
|
# resp.journal_s3_exports[0].role_arn #=> String
|
1117
|
+
# resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
1069
1118
|
# resp.next_token #=> String
|
1070
1119
|
#
|
1071
1120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3Exports AWS API Documentation
|
@@ -1135,6 +1184,7 @@ module Aws::QLDB
|
|
1135
1184
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.object_encryption_type #=> String, one of "SSE_KMS", "SSE_S3", "NO_ENCRYPTION"
|
1136
1185
|
# resp.journal_s3_exports[0].s3_export_configuration.encryption_configuration.kms_key_arn #=> String
|
1137
1186
|
# resp.journal_s3_exports[0].role_arn #=> String
|
1187
|
+
# resp.journal_s3_exports[0].output_format #=> String, one of "ION_BINARY", "ION_TEXT", "JSON"
|
1138
1188
|
# resp.next_token #=> String
|
1139
1189
|
#
|
1140
1190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qldb-2019-01-02/ListJournalS3ExportsForLedger AWS API Documentation
|
@@ -1147,7 +1197,7 @@ module Aws::QLDB
|
|
1147
1197
|
end
|
1148
1198
|
|
1149
1199
|
# Returns an array of ledger summaries that are associated with the
|
1150
|
-
# current account and Region.
|
1200
|
+
# current Amazon Web Services account and Region.
|
1151
1201
|
#
|
1152
1202
|
# This action returns a maximum of 100 items and is paginated so that
|
1153
1203
|
# you can retrieve all the items by calling `ListLedgers` multiple
|
@@ -1239,6 +1289,10 @@ module Aws::QLDB
|
|
1239
1289
|
# permissions for a journal stream to write data records to a Kinesis
|
1240
1290
|
# Data Streams resource.
|
1241
1291
|
#
|
1292
|
+
# To pass a role to QLDB when requesting a journal stream, you must have
|
1293
|
+
# permissions to perform the `iam:PassRole` action on the IAM role
|
1294
|
+
# resource. This is required for all journal stream requests.
|
1295
|
+
#
|
1242
1296
|
# @option params [Hash<String,String>] :tags
|
1243
1297
|
# The key-value pairs to add as tags to the stream that you want to
|
1244
1298
|
# create. Tag keys are case sensitive. Tag values are case sensitive and
|
@@ -1421,7 +1475,7 @@ module Aws::QLDB
|
|
1421
1475
|
# To specify a customer managed KMS key, you can use its key ID, Amazon
|
1422
1476
|
# Resource Name (ARN), alias name, or alias ARN. When using an alias
|
1423
1477
|
# name, prefix it with `"alias/"`. To specify a key in a different
|
1424
|
-
# account, you must use the key ARN or alias ARN.
|
1478
|
+
# Amazon Web Services account, you must use the key ARN or alias ARN.
|
1425
1479
|
#
|
1426
1480
|
# For example:
|
1427
1481
|
#
|
@@ -1569,7 +1623,7 @@ module Aws::QLDB
|
|
1569
1623
|
params: params,
|
1570
1624
|
config: config)
|
1571
1625
|
context[:gem_name] = 'aws-sdk-qldb'
|
1572
|
-
context[:gem_version] = '1.
|
1626
|
+
context[:gem_version] = '1.24.0'
|
1573
1627
|
Seahorse::Client::Request.new(handlers, context)
|
1574
1628
|
end
|
1575
1629
|
|
@@ -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.24.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-03 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.126.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.126.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|