aws-sdk-qldb 1.6.1 → 1.11.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/lib/aws-sdk-qldb.rb +5 -2
- data/lib/aws-sdk-qldb/client.rb +50 -21
- data/lib/aws-sdk-qldb/client_api.rb +2 -0
- data/lib/aws-sdk-qldb/errors.rb +2 -0
- data/lib/aws-sdk-qldb/resource.rb +2 -0
- data/lib/aws-sdk-qldb/types.rb +63 -9
- 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: 30e74850e4bbfdddce5dfa0daeb078ed61b146f916a90d8ee163cda8eb12b208
|
4
|
+
data.tar.gz: 8f7d2ae11b7b666f6ca8bc36b0bb61a1bf9ba223db6ccca9a3cbde69a77efd04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 668da67476701d85dd3ccf4bf3fa7015fe3cb52085a2419a64c73295c4c26a6db94697df8748e28d5c4583ec0086c9e50bbb3c178409e69a8975983689f0ac4b
|
7
|
+
data.tar.gz: 07cdb711999e8416f48e50bc9f75729a9854c8e4a11548b026d81fff3299681f9fa581e5749218996d0d9f0f686879eb699ffb080afe3145d0b8b202b92742d5
|
data/lib/aws-sdk-qldb.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-qldb/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::QLDB
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.11.0'
|
49
52
|
|
50
53
|
end
|
data/lib/aws-sdk-qldb/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::QLDB
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::QLDB
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -353,6 +370,13 @@ module Aws::QLDB
|
|
353
370
|
# The name of the ledger that you want to create. The name must be
|
354
371
|
# unique among all of your ledgers in the current AWS Region.
|
355
372
|
#
|
373
|
+
# Naming constraints for ledger names are defined in [Quotas in Amazon
|
374
|
+
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
375
|
+
#
|
376
|
+
#
|
377
|
+
#
|
378
|
+
# [1]: https://docs.aws.amazon.com/qldb/latest/developerguide/limits.html#limits.naming
|
379
|
+
#
|
356
380
|
# @option params [Hash<String,String>] :tags
|
357
381
|
# The key-value pairs to add as tags to the ledger that you want to
|
358
382
|
# create. Tag keys are case sensitive. Tag values are case sensitive and
|
@@ -667,10 +691,13 @@ module Aws::QLDB
|
|
667
691
|
req.send_request(options)
|
668
692
|
end
|
669
693
|
|
670
|
-
# Returns a
|
671
|
-
#
|
694
|
+
# Returns a block object at a specified address in a journal. Also
|
695
|
+
# returns a proof of the specified block for verification if
|
672
696
|
# `DigestTipAddress` is provided.
|
673
697
|
#
|
698
|
+
# For information about the data contents in a block, see [Journal
|
699
|
+
# contents][1] in the *Amazon QLDB Developer Guide*.
|
700
|
+
#
|
674
701
|
# If the specified ledger doesn't exist or is in `DELETING` status,
|
675
702
|
# then throws `ResourceNotFoundException`.
|
676
703
|
#
|
@@ -680,6 +707,10 @@ module Aws::QLDB
|
|
680
707
|
# If no block exists with the specified address, then throws
|
681
708
|
# `InvalidParameterException`.
|
682
709
|
#
|
710
|
+
#
|
711
|
+
#
|
712
|
+
# [1]: https://docs.aws.amazon.com/qldb/latest/developerguide/journal-contents.html
|
713
|
+
#
|
683
714
|
# @option params [required, String] :name
|
684
715
|
# The name of the ledger.
|
685
716
|
#
|
@@ -1092,10 +1123,10 @@ module Aws::QLDB
|
|
1092
1123
|
req.send_request(options)
|
1093
1124
|
end
|
1094
1125
|
|
1095
|
-
# Creates a stream for a given Amazon QLDB ledger
|
1096
|
-
#
|
1097
|
-
#
|
1098
|
-
#
|
1126
|
+
# Creates a journal stream for a given Amazon QLDB ledger. The stream
|
1127
|
+
# captures every document revision that is committed to the ledger's
|
1128
|
+
# journal and delivers the data to a specified Amazon Kinesis Data
|
1129
|
+
# Streams resource.
|
1099
1130
|
#
|
1100
1131
|
# @option params [required, String] :ledger_name
|
1101
1132
|
# The name of the ledger.
|
@@ -1125,8 +1156,8 @@ module Aws::QLDB
|
|
1125
1156
|
#
|
1126
1157
|
# @option params [Time,DateTime,Date,Integer,String] :exclusive_end_time
|
1127
1158
|
# The exclusive date and time that specifies when the stream ends. If
|
1128
|
-
# you
|
1129
|
-
# cancel it.
|
1159
|
+
# you don't define this parameter, the stream runs indefinitely until
|
1160
|
+
# you cancel it.
|
1130
1161
|
#
|
1131
1162
|
# The `ExclusiveEndTime` must be in `ISO 8601` date and time format and
|
1132
1163
|
# in Universal Coordinated Time (UTC). For example:
|
@@ -1142,11 +1173,9 @@ module Aws::QLDB
|
|
1142
1173
|
# stream.
|
1143
1174
|
#
|
1144
1175
|
# Your stream name must be unique among other *active* streams for a
|
1145
|
-
# given ledger.
|
1146
|
-
#
|
1147
|
-
#
|
1148
|
-
# constraints as ledger names, as defined in [Quotas in Amazon QLDB][1]
|
1149
|
-
# in the *Amazon QLDB Developer Guide*.
|
1176
|
+
# given ledger. Stream names have the same naming constraints as ledger
|
1177
|
+
# names, as defined in [Quotas in Amazon QLDB][1] in the *Amazon QLDB
|
1178
|
+
# Developer Guide*.
|
1150
1179
|
#
|
1151
1180
|
#
|
1152
1181
|
#
|
@@ -1314,7 +1343,7 @@ module Aws::QLDB
|
|
1314
1343
|
params: params,
|
1315
1344
|
config: config)
|
1316
1345
|
context[:gem_name] = 'aws-sdk-qldb'
|
1317
|
-
context[:gem_version] = '1.
|
1346
|
+
context[:gem_version] = '1.11.0'
|
1318
1347
|
Seahorse::Client::Request.new(handlers, context)
|
1319
1348
|
end
|
1320
1349
|
|
data/lib/aws-sdk-qldb/errors.rb
CHANGED
data/lib/aws-sdk-qldb/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -29,6 +31,7 @@ module Aws::QLDB
|
|
29
31
|
class CancelJournalKinesisStreamRequest < Struct.new(
|
30
32
|
:ledger_name,
|
31
33
|
:stream_id)
|
34
|
+
SENSITIVE = []
|
32
35
|
include Aws::Structure
|
33
36
|
end
|
34
37
|
|
@@ -40,6 +43,7 @@ module Aws::QLDB
|
|
40
43
|
#
|
41
44
|
class CancelJournalKinesisStreamResponse < Struct.new(
|
42
45
|
:stream_id)
|
46
|
+
SENSITIVE = []
|
43
47
|
include Aws::Structure
|
44
48
|
end
|
45
49
|
|
@@ -58,6 +62,13 @@ module Aws::QLDB
|
|
58
62
|
# @!attribute [rw] name
|
59
63
|
# The name of the ledger that you want to create. The name must be
|
60
64
|
# unique among all of your ledgers in the current AWS Region.
|
65
|
+
#
|
66
|
+
# Naming constraints for ledger names are defined in [Quotas in Amazon
|
67
|
+
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
68
|
+
#
|
69
|
+
#
|
70
|
+
#
|
71
|
+
# [1]: https://docs.aws.amazon.com/qldb/latest/developerguide/limits.html#limits.naming
|
61
72
|
# @return [String]
|
62
73
|
#
|
63
74
|
# @!attribute [rw] tags
|
@@ -91,6 +102,7 @@ module Aws::QLDB
|
|
91
102
|
:tags,
|
92
103
|
:permissions_mode,
|
93
104
|
:deletion_protection)
|
105
|
+
SENSITIVE = []
|
94
106
|
include Aws::Structure
|
95
107
|
end
|
96
108
|
|
@@ -133,6 +145,7 @@ module Aws::QLDB
|
|
133
145
|
:state,
|
134
146
|
:creation_date_time,
|
135
147
|
:deletion_protection)
|
148
|
+
SENSITIVE = []
|
136
149
|
include Aws::Structure
|
137
150
|
end
|
138
151
|
|
@@ -151,6 +164,7 @@ module Aws::QLDB
|
|
151
164
|
#
|
152
165
|
class DeleteLedgerRequest < Struct.new(
|
153
166
|
:name)
|
167
|
+
SENSITIVE = []
|
154
168
|
include Aws::Structure
|
155
169
|
end
|
156
170
|
|
@@ -175,6 +189,7 @@ module Aws::QLDB
|
|
175
189
|
class DescribeJournalKinesisStreamRequest < Struct.new(
|
176
190
|
:ledger_name,
|
177
191
|
:stream_id)
|
192
|
+
SENSITIVE = []
|
178
193
|
include Aws::Structure
|
179
194
|
end
|
180
195
|
|
@@ -187,6 +202,7 @@ module Aws::QLDB
|
|
187
202
|
#
|
188
203
|
class DescribeJournalKinesisStreamResponse < Struct.new(
|
189
204
|
:stream)
|
205
|
+
SENSITIVE = []
|
190
206
|
include Aws::Structure
|
191
207
|
end
|
192
208
|
|
@@ -211,6 +227,7 @@ module Aws::QLDB
|
|
211
227
|
class DescribeJournalS3ExportRequest < Struct.new(
|
212
228
|
:name,
|
213
229
|
:export_id)
|
230
|
+
SENSITIVE = []
|
214
231
|
include Aws::Structure
|
215
232
|
end
|
216
233
|
|
@@ -223,6 +240,7 @@ module Aws::QLDB
|
|
223
240
|
#
|
224
241
|
class DescribeJournalS3ExportResponse < Struct.new(
|
225
242
|
:export_description)
|
243
|
+
SENSITIVE = []
|
226
244
|
include Aws::Structure
|
227
245
|
end
|
228
246
|
|
@@ -241,6 +259,7 @@ module Aws::QLDB
|
|
241
259
|
#
|
242
260
|
class DescribeLedgerRequest < Struct.new(
|
243
261
|
:name)
|
262
|
+
SENSITIVE = []
|
244
263
|
include Aws::Structure
|
245
264
|
end
|
246
265
|
|
@@ -283,6 +302,7 @@ module Aws::QLDB
|
|
283
302
|
:state,
|
284
303
|
:creation_date_time,
|
285
304
|
:deletion_protection)
|
305
|
+
SENSITIVE = []
|
286
306
|
include Aws::Structure
|
287
307
|
end
|
288
308
|
|
@@ -360,6 +380,7 @@ module Aws::QLDB
|
|
360
380
|
:exclusive_end_time,
|
361
381
|
:s3_export_configuration,
|
362
382
|
:role_arn)
|
383
|
+
SENSITIVE = []
|
363
384
|
include Aws::Structure
|
364
385
|
end
|
365
386
|
|
@@ -374,6 +395,7 @@ module Aws::QLDB
|
|
374
395
|
#
|
375
396
|
class ExportJournalToS3Response < Struct.new(
|
376
397
|
:export_id)
|
398
|
+
SENSITIVE = []
|
377
399
|
include Aws::Structure
|
378
400
|
end
|
379
401
|
|
@@ -416,6 +438,7 @@ module Aws::QLDB
|
|
416
438
|
:name,
|
417
439
|
:block_address,
|
418
440
|
:digest_tip_address)
|
441
|
+
SENSITIVE = [:block_address, :digest_tip_address]
|
419
442
|
include Aws::Structure
|
420
443
|
end
|
421
444
|
|
@@ -435,6 +458,7 @@ module Aws::QLDB
|
|
435
458
|
class GetBlockResponse < Struct.new(
|
436
459
|
:block,
|
437
460
|
:proof)
|
461
|
+
SENSITIVE = [:block, :proof]
|
438
462
|
include Aws::Structure
|
439
463
|
end
|
440
464
|
|
@@ -453,6 +477,7 @@ module Aws::QLDB
|
|
453
477
|
#
|
454
478
|
class GetDigestRequest < Struct.new(
|
455
479
|
:name)
|
480
|
+
SENSITIVE = []
|
456
481
|
include Aws::Structure
|
457
482
|
end
|
458
483
|
|
@@ -472,6 +497,7 @@ module Aws::QLDB
|
|
472
497
|
class GetDigestResponse < Struct.new(
|
473
498
|
:digest,
|
474
499
|
:digest_tip_address)
|
500
|
+
SENSITIVE = [:digest_tip_address]
|
475
501
|
include Aws::Structure
|
476
502
|
end
|
477
503
|
|
@@ -520,6 +546,7 @@ module Aws::QLDB
|
|
520
546
|
:block_address,
|
521
547
|
:document_id,
|
522
548
|
:digest_tip_address)
|
549
|
+
SENSITIVE = [:block_address, :digest_tip_address]
|
523
550
|
include Aws::Structure
|
524
551
|
end
|
525
552
|
|
@@ -539,6 +566,7 @@ module Aws::QLDB
|
|
539
566
|
class GetRevisionResponse < Struct.new(
|
540
567
|
:proof,
|
541
568
|
:revision)
|
569
|
+
SENSITIVE = [:proof, :revision]
|
542
570
|
include Aws::Structure
|
543
571
|
end
|
544
572
|
|
@@ -556,6 +584,7 @@ module Aws::QLDB
|
|
556
584
|
class InvalidParameterException < Struct.new(
|
557
585
|
:message,
|
558
586
|
:parameter_name)
|
587
|
+
SENSITIVE = []
|
559
588
|
include Aws::Structure
|
560
589
|
end
|
561
590
|
|
@@ -631,6 +660,7 @@ module Aws::QLDB
|
|
631
660
|
:kinesis_configuration,
|
632
661
|
:error_cause,
|
633
662
|
:stream_name)
|
663
|
+
SENSITIVE = []
|
634
664
|
include Aws::Structure
|
635
665
|
end
|
636
666
|
|
@@ -694,6 +724,7 @@ module Aws::QLDB
|
|
694
724
|
:exclusive_end_time,
|
695
725
|
:s3_export_configuration,
|
696
726
|
:role_arn)
|
727
|
+
SENSITIVE = []
|
697
728
|
include Aws::Structure
|
698
729
|
end
|
699
730
|
|
@@ -713,7 +744,7 @@ module Aws::QLDB
|
|
713
744
|
# @return [String]
|
714
745
|
#
|
715
746
|
# @!attribute [rw] aggregation_enabled
|
716
|
-
# Enables QLDB to publish multiple
|
747
|
+
# Enables QLDB to publish multiple data records in a single Kinesis
|
717
748
|
# Data Streams record. To learn more, see [KPL Key Concepts][1] in the
|
718
749
|
# *Amazon Kinesis Data Streams Developer Guide*.
|
719
750
|
#
|
@@ -727,6 +758,7 @@ module Aws::QLDB
|
|
727
758
|
class KinesisConfiguration < Struct.new(
|
728
759
|
:stream_arn,
|
729
760
|
:aggregation_enabled)
|
761
|
+
SENSITIVE = []
|
730
762
|
include Aws::Structure
|
731
763
|
end
|
732
764
|
|
@@ -753,6 +785,7 @@ module Aws::QLDB
|
|
753
785
|
:name,
|
754
786
|
:state,
|
755
787
|
:creation_date_time)
|
788
|
+
SENSITIVE = []
|
756
789
|
include Aws::Structure
|
757
790
|
end
|
758
791
|
|
@@ -770,6 +803,7 @@ module Aws::QLDB
|
|
770
803
|
class LimitExceededException < Struct.new(
|
771
804
|
:message,
|
772
805
|
:resource_type)
|
806
|
+
SENSITIVE = []
|
773
807
|
include Aws::Structure
|
774
808
|
end
|
775
809
|
|
@@ -805,6 +839,7 @@ module Aws::QLDB
|
|
805
839
|
:ledger_name,
|
806
840
|
:max_results,
|
807
841
|
:next_token)
|
842
|
+
SENSITIVE = []
|
808
843
|
include Aws::Structure
|
809
844
|
end
|
810
845
|
|
@@ -827,6 +862,7 @@ module Aws::QLDB
|
|
827
862
|
class ListJournalKinesisStreamsForLedgerResponse < Struct.new(
|
828
863
|
:streams,
|
829
864
|
:next_token)
|
865
|
+
SENSITIVE = []
|
830
866
|
include Aws::Structure
|
831
867
|
end
|
832
868
|
|
@@ -862,6 +898,7 @@ module Aws::QLDB
|
|
862
898
|
:name,
|
863
899
|
:max_results,
|
864
900
|
:next_token)
|
901
|
+
SENSITIVE = []
|
865
902
|
include Aws::Structure
|
866
903
|
end
|
867
904
|
|
@@ -884,6 +921,7 @@ module Aws::QLDB
|
|
884
921
|
class ListJournalS3ExportsForLedgerResponse < Struct.new(
|
885
922
|
:journal_s3_exports,
|
886
923
|
:next_token)
|
924
|
+
SENSITIVE = []
|
887
925
|
include Aws::Structure
|
888
926
|
end
|
889
927
|
|
@@ -913,6 +951,7 @@ module Aws::QLDB
|
|
913
951
|
class ListJournalS3ExportsRequest < Struct.new(
|
914
952
|
:max_results,
|
915
953
|
:next_token)
|
954
|
+
SENSITIVE = []
|
916
955
|
include Aws::Structure
|
917
956
|
end
|
918
957
|
|
@@ -935,6 +974,7 @@ module Aws::QLDB
|
|
935
974
|
class ListJournalS3ExportsResponse < Struct.new(
|
936
975
|
:journal_s3_exports,
|
937
976
|
:next_token)
|
977
|
+
SENSITIVE = []
|
938
978
|
include Aws::Structure
|
939
979
|
end
|
940
980
|
|
@@ -963,6 +1003,7 @@ module Aws::QLDB
|
|
963
1003
|
class ListLedgersRequest < Struct.new(
|
964
1004
|
:max_results,
|
965
1005
|
:next_token)
|
1006
|
+
SENSITIVE = []
|
966
1007
|
include Aws::Structure
|
967
1008
|
end
|
968
1009
|
|
@@ -988,6 +1029,7 @@ module Aws::QLDB
|
|
988
1029
|
class ListLedgersResponse < Struct.new(
|
989
1030
|
:ledgers,
|
990
1031
|
:next_token)
|
1032
|
+
SENSITIVE = []
|
991
1033
|
include Aws::Structure
|
992
1034
|
end
|
993
1035
|
|
@@ -1009,6 +1051,7 @@ module Aws::QLDB
|
|
1009
1051
|
#
|
1010
1052
|
class ListTagsForResourceRequest < Struct.new(
|
1011
1053
|
:resource_arn)
|
1054
|
+
SENSITIVE = []
|
1012
1055
|
include Aws::Structure
|
1013
1056
|
end
|
1014
1057
|
|
@@ -1021,6 +1064,7 @@ module Aws::QLDB
|
|
1021
1064
|
#
|
1022
1065
|
class ListTagsForResourceResponse < Struct.new(
|
1023
1066
|
:tags)
|
1067
|
+
SENSITIVE = []
|
1024
1068
|
include Aws::Structure
|
1025
1069
|
end
|
1026
1070
|
|
@@ -1043,6 +1087,7 @@ module Aws::QLDB
|
|
1043
1087
|
:message,
|
1044
1088
|
:resource_type,
|
1045
1089
|
:resource_name)
|
1090
|
+
SENSITIVE = []
|
1046
1091
|
include Aws::Structure
|
1047
1092
|
end
|
1048
1093
|
|
@@ -1065,6 +1110,7 @@ module Aws::QLDB
|
|
1065
1110
|
:message,
|
1066
1111
|
:resource_type,
|
1067
1112
|
:resource_name)
|
1113
|
+
SENSITIVE = []
|
1068
1114
|
include Aws::Structure
|
1069
1115
|
end
|
1070
1116
|
|
@@ -1087,6 +1133,7 @@ module Aws::QLDB
|
|
1087
1133
|
:message,
|
1088
1134
|
:resource_type,
|
1089
1135
|
:resource_name)
|
1136
|
+
SENSITIVE = []
|
1090
1137
|
include Aws::Structure
|
1091
1138
|
end
|
1092
1139
|
|
@@ -1109,6 +1156,7 @@ module Aws::QLDB
|
|
1109
1156
|
:message,
|
1110
1157
|
:resource_type,
|
1111
1158
|
:resource_name)
|
1159
|
+
SENSITIVE = []
|
1112
1160
|
include Aws::Structure
|
1113
1161
|
end
|
1114
1162
|
|
@@ -1152,6 +1200,7 @@ module Aws::QLDB
|
|
1152
1200
|
class S3EncryptionConfiguration < Struct.new(
|
1153
1201
|
:object_encryption_type,
|
1154
1202
|
:kms_key_arn)
|
1203
|
+
SENSITIVE = []
|
1155
1204
|
include Aws::Structure
|
1156
1205
|
end
|
1157
1206
|
|
@@ -1215,6 +1264,7 @@ module Aws::QLDB
|
|
1215
1264
|
:bucket,
|
1216
1265
|
:prefix,
|
1217
1266
|
:encryption_configuration)
|
1267
|
+
SENSITIVE = []
|
1218
1268
|
include Aws::Structure
|
1219
1269
|
end
|
1220
1270
|
|
@@ -1268,7 +1318,7 @@ module Aws::QLDB
|
|
1268
1318
|
#
|
1269
1319
|
# @!attribute [rw] exclusive_end_time
|
1270
1320
|
# The exclusive date and time that specifies when the stream ends. If
|
1271
|
-
# you
|
1321
|
+
# you don't define this parameter, the stream runs indefinitely until
|
1272
1322
|
# you cancel it.
|
1273
1323
|
#
|
1274
1324
|
# The `ExclusiveEndTime` must be in `ISO 8601` date and time format
|
@@ -1287,11 +1337,9 @@ module Aws::QLDB
|
|
1287
1337
|
# stream.
|
1288
1338
|
#
|
1289
1339
|
# Your stream name must be unique among other *active* streams for a
|
1290
|
-
# given ledger.
|
1291
|
-
#
|
1292
|
-
# QLDB
|
1293
|
-
# naming constraints as ledger names, as defined in [Quotas in Amazon
|
1294
|
-
# QLDB][1] in the *Amazon QLDB Developer Guide*.
|
1340
|
+
# given ledger. Stream names have the same naming constraints as
|
1341
|
+
# ledger names, as defined in [Quotas in Amazon QLDB][1] in the
|
1342
|
+
# *Amazon QLDB Developer Guide*.
|
1295
1343
|
#
|
1296
1344
|
#
|
1297
1345
|
#
|
@@ -1308,6 +1356,7 @@ module Aws::QLDB
|
|
1308
1356
|
:exclusive_end_time,
|
1309
1357
|
:kinesis_configuration,
|
1310
1358
|
:stream_name)
|
1359
|
+
SENSITIVE = []
|
1311
1360
|
include Aws::Structure
|
1312
1361
|
end
|
1313
1362
|
|
@@ -1319,6 +1368,7 @@ module Aws::QLDB
|
|
1319
1368
|
#
|
1320
1369
|
class StreamJournalToKinesisResponse < Struct.new(
|
1321
1370
|
:stream_id)
|
1371
|
+
SENSITIVE = []
|
1322
1372
|
include Aws::Structure
|
1323
1373
|
end
|
1324
1374
|
|
@@ -1351,6 +1401,7 @@ module Aws::QLDB
|
|
1351
1401
|
class TagResourceRequest < Struct.new(
|
1352
1402
|
:resource_arn,
|
1353
1403
|
:tags)
|
1404
|
+
SENSITIVE = []
|
1354
1405
|
include Aws::Structure
|
1355
1406
|
end
|
1356
1407
|
|
@@ -1382,6 +1433,7 @@ module Aws::QLDB
|
|
1382
1433
|
class UntagResourceRequest < Struct.new(
|
1383
1434
|
:resource_arn,
|
1384
1435
|
:tag_keys)
|
1436
|
+
SENSITIVE = []
|
1385
1437
|
include Aws::Structure
|
1386
1438
|
end
|
1387
1439
|
|
@@ -1419,6 +1471,7 @@ module Aws::QLDB
|
|
1419
1471
|
class UpdateLedgerRequest < Struct.new(
|
1420
1472
|
:name,
|
1421
1473
|
:deletion_protection)
|
1474
|
+
SENSITIVE = []
|
1422
1475
|
include Aws::Structure
|
1423
1476
|
end
|
1424
1477
|
|
@@ -1461,11 +1514,11 @@ module Aws::QLDB
|
|
1461
1514
|
:state,
|
1462
1515
|
:creation_date_time,
|
1463
1516
|
:deletion_protection)
|
1517
|
+
SENSITIVE = []
|
1464
1518
|
include Aws::Structure
|
1465
1519
|
end
|
1466
1520
|
|
1467
|
-
# A structure that can contain
|
1468
|
-
# formats.
|
1521
|
+
# A structure that can contain a value in multiple encoding formats.
|
1469
1522
|
#
|
1470
1523
|
# @note When making an API call, you may pass ValueHolder
|
1471
1524
|
# data as a hash:
|
@@ -1483,6 +1536,7 @@ module Aws::QLDB
|
|
1483
1536
|
#
|
1484
1537
|
class ValueHolder < Struct.new(
|
1485
1538
|
:ion_text)
|
1539
|
+
SENSITIVE = [:ion_text]
|
1486
1540
|
include Aws::Structure
|
1487
1541
|
end
|
1488
1542
|
|
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.11.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: 2020-
|
11
|
+
date: 2020-09-30 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.109.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.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|