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