aws-sdk-firehose 1.10.0 → 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-firehose.rb +1 -1
- data/lib/aws-sdk-firehose/client.rb +104 -77
- data/lib/aws-sdk-firehose/client_api.rb +7 -0
- data/lib/aws-sdk-firehose/types.rb +78 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db7d38339f516434eade0d4c9d9990707f4b8fa6
|
|
4
|
+
data.tar.gz: 2653510a85a2bba93a9b266b4bfb72ea400b12fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f699f13c548fe2b05ba5bc8371ad462bf79c02f0268bc612a233ae5a8c8b8f441f4eb87c3282f18396f2952399e3cfcd882cba44f5eed73bc50c2821a71fdc50
|
|
7
|
+
data.tar.gz: 107b8f2236b5a3c4ec790ece79467e372f04ca52cd05e10e8376aae48715bb163071f31011f5781a2d6cce873bb6c5f2958c00dcf3e2363e013ebeea6b3db192
|
data/lib/aws-sdk-firehose.rb
CHANGED
|
@@ -237,23 +237,22 @@ module Aws::Firehose
|
|
|
237
237
|
# A delivery stream is configured with a single destination: Amazon S3,
|
|
238
238
|
# Amazon ES, Amazon Redshift, or Splunk. You must specify only one of
|
|
239
239
|
# the following destination configuration parameters:
|
|
240
|
-
#
|
|
241
|
-
#
|
|
242
|
-
#
|
|
243
|
-
#
|
|
244
|
-
#
|
|
245
|
-
#
|
|
246
|
-
#
|
|
247
|
-
#
|
|
248
|
-
#
|
|
249
|
-
#
|
|
250
|
-
#
|
|
251
|
-
#
|
|
252
|
-
#
|
|
253
|
-
#
|
|
254
|
-
#
|
|
255
|
-
#
|
|
256
|
-
# secure data storage in Amazon S3.
|
|
240
|
+
# `ExtendedS3DestinationConfiguration`, `S3DestinationConfiguration`,
|
|
241
|
+
# `ElasticsearchDestinationConfiguration`,
|
|
242
|
+
# `RedshiftDestinationConfiguration`, or
|
|
243
|
+
# `SplunkDestinationConfiguration`.
|
|
244
|
+
#
|
|
245
|
+
# When you specify `S3DestinationConfiguration`, you can also provide
|
|
246
|
+
# the following optional values: BufferingHints,
|
|
247
|
+
# `EncryptionConfiguration`, and `CompressionFormat`. By default, if no
|
|
248
|
+
# `BufferingHints` value is provided, Kinesis Data Firehose buffers data
|
|
249
|
+
# up to 5 MB or for 5 minutes, whichever condition is satisfied first.
|
|
250
|
+
# `BufferingHints` is a hint, so there are some cases where the service
|
|
251
|
+
# cannot adhere to these conditions strictly. For example, record
|
|
252
|
+
# boundaries might be such that the size is a little over or under the
|
|
253
|
+
# configured buffering size. By default, no encryption is performed. We
|
|
254
|
+
# strongly recommend that you enable encryption to ensure secure data
|
|
255
|
+
# storage in Amazon S3.
|
|
257
256
|
#
|
|
258
257
|
# A few notes about Amazon Redshift as a destination:
|
|
259
258
|
#
|
|
@@ -261,7 +260,7 @@ module Aws::Firehose
|
|
|
261
260
|
# location. Kinesis Data Firehose first delivers data to Amazon S3 and
|
|
262
261
|
# then uses `COPY` syntax to load data into an Amazon Redshift table.
|
|
263
262
|
# This is specified in the
|
|
264
|
-
#
|
|
263
|
+
# `RedshiftDestinationConfiguration.S3Configuration` parameter.
|
|
265
264
|
#
|
|
266
265
|
# * The compression formats `SNAPPY` or `ZIP` cannot be specified in
|
|
267
266
|
# `RedshiftDestinationConfiguration.S3Configuration` because the
|
|
@@ -354,6 +353,7 @@ module Aws::Firehose
|
|
|
354
353
|
# role_arn: "RoleARN", # required
|
|
355
354
|
# bucket_arn: "BucketARN", # required
|
|
356
355
|
# prefix: "Prefix",
|
|
356
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
357
357
|
# buffering_hints: {
|
|
358
358
|
# size_in_m_bs: 1,
|
|
359
359
|
# interval_in_seconds: 1,
|
|
@@ -375,6 +375,7 @@ module Aws::Firehose
|
|
|
375
375
|
# role_arn: "RoleARN", # required
|
|
376
376
|
# bucket_arn: "BucketARN", # required
|
|
377
377
|
# prefix: "Prefix",
|
|
378
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
378
379
|
# buffering_hints: {
|
|
379
380
|
# size_in_m_bs: 1,
|
|
380
381
|
# interval_in_seconds: 1,
|
|
@@ -410,6 +411,7 @@ module Aws::Firehose
|
|
|
410
411
|
# role_arn: "RoleARN", # required
|
|
411
412
|
# bucket_arn: "BucketARN", # required
|
|
412
413
|
# prefix: "Prefix",
|
|
414
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
413
415
|
# buffering_hints: {
|
|
414
416
|
# size_in_m_bs: 1,
|
|
415
417
|
# interval_in_seconds: 1,
|
|
@@ -494,6 +496,7 @@ module Aws::Firehose
|
|
|
494
496
|
# role_arn: "RoleARN", # required
|
|
495
497
|
# bucket_arn: "BucketARN", # required
|
|
496
498
|
# prefix: "Prefix",
|
|
499
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
497
500
|
# buffering_hints: {
|
|
498
501
|
# size_in_m_bs: 1,
|
|
499
502
|
# interval_in_seconds: 1,
|
|
@@ -530,6 +533,7 @@ module Aws::Firehose
|
|
|
530
533
|
# role_arn: "RoleARN", # required
|
|
531
534
|
# bucket_arn: "BucketARN", # required
|
|
532
535
|
# prefix: "Prefix",
|
|
536
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
533
537
|
# buffering_hints: {
|
|
534
538
|
# size_in_m_bs: 1,
|
|
535
539
|
# interval_in_seconds: 1,
|
|
@@ -571,6 +575,7 @@ module Aws::Firehose
|
|
|
571
575
|
# role_arn: "RoleARN", # required
|
|
572
576
|
# bucket_arn: "BucketARN", # required
|
|
573
577
|
# prefix: "Prefix",
|
|
578
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
574
579
|
# buffering_hints: {
|
|
575
580
|
# size_in_m_bs: 1,
|
|
576
581
|
# interval_in_seconds: 1,
|
|
@@ -621,6 +626,7 @@ module Aws::Firehose
|
|
|
621
626
|
# role_arn: "RoleARN", # required
|
|
622
627
|
# bucket_arn: "BucketARN", # required
|
|
623
628
|
# prefix: "Prefix",
|
|
629
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
624
630
|
# buffering_hints: {
|
|
625
631
|
# size_in_m_bs: 1,
|
|
626
632
|
# interval_in_seconds: 1,
|
|
@@ -760,6 +766,7 @@ module Aws::Firehose
|
|
|
760
766
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.role_arn #=> String
|
|
761
767
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.bucket_arn #=> String
|
|
762
768
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.prefix #=> String
|
|
769
|
+
# resp.delivery_stream_description.destinations[0].s3_destination_description.error_output_prefix #=> String
|
|
763
770
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
|
764
771
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
|
765
772
|
# resp.delivery_stream_description.destinations[0].s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -771,6 +778,7 @@ module Aws::Firehose
|
|
|
771
778
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.role_arn #=> String
|
|
772
779
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.bucket_arn #=> String
|
|
773
780
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.prefix #=> String
|
|
781
|
+
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.error_output_prefix #=> String
|
|
774
782
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
|
775
783
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
|
776
784
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -789,6 +797,7 @@ module Aws::Firehose
|
|
|
789
797
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.role_arn #=> String
|
|
790
798
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.bucket_arn #=> String
|
|
791
799
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.prefix #=> String
|
|
800
|
+
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.error_output_prefix #=> String
|
|
792
801
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
|
793
802
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
|
|
794
803
|
# resp.delivery_stream_description.destinations[0].extended_s3_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -837,6 +846,7 @@ module Aws::Firehose
|
|
|
837
846
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.role_arn #=> String
|
|
838
847
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.bucket_arn #=> String
|
|
839
848
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.prefix #=> String
|
|
849
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.error_output_prefix #=> String
|
|
840
850
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
|
841
851
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
|
842
852
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -855,6 +865,7 @@ module Aws::Firehose
|
|
|
855
865
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.role_arn #=> String
|
|
856
866
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.bucket_arn #=> String
|
|
857
867
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.prefix #=> String
|
|
868
|
+
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.error_output_prefix #=> String
|
|
858
869
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.size_in_m_bs #=> Integer
|
|
859
870
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.buffering_hints.interval_in_seconds #=> Integer
|
|
860
871
|
# resp.delivery_stream_description.destinations[0].redshift_destination_description.s3_backup_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -878,6 +889,7 @@ module Aws::Firehose
|
|
|
878
889
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.role_arn #=> String
|
|
879
890
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.bucket_arn #=> String
|
|
880
891
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.prefix #=> String
|
|
892
|
+
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.error_output_prefix #=> String
|
|
881
893
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
|
882
894
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
|
883
895
|
# resp.delivery_stream_description.destinations[0].elasticsearch_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -904,6 +916,7 @@ module Aws::Firehose
|
|
|
904
916
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.role_arn #=> String
|
|
905
917
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.bucket_arn #=> String
|
|
906
918
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.prefix #=> String
|
|
919
|
+
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.error_output_prefix #=> String
|
|
907
920
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.size_in_m_bs #=> Integer
|
|
908
921
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.buffering_hints.interval_in_seconds #=> Integer
|
|
909
922
|
# resp.delivery_stream_description.destinations[0].splunk_destination_description.s3_destination_description.compression_format #=> String, one of "UNCOMPRESSED", "GZIP", "ZIP", "Snappy"
|
|
@@ -936,7 +949,7 @@ module Aws::Firehose
|
|
|
936
949
|
#
|
|
937
950
|
# The number of delivery streams might be too large to return using a
|
|
938
951
|
# single call to `ListDeliveryStreams`. You can limit the number of
|
|
939
|
-
# delivery streams returned, using the
|
|
952
|
+
# delivery streams returned, using the `Limit` parameter. To determine
|
|
940
953
|
# whether there are more delivery streams to list, check the value of
|
|
941
954
|
# `HasMoreDeliveryStreams` in the output. If there are more delivery
|
|
942
955
|
# streams to list, you can request them by calling this operation again
|
|
@@ -1150,35 +1163,34 @@ module Aws::Firehose
|
|
|
1150
1163
|
# data from the destination.
|
|
1151
1164
|
#
|
|
1152
1165
|
# The PutRecordBatch response includes a count of failed records,
|
|
1153
|
-
#
|
|
1154
|
-
#
|
|
1155
|
-
#
|
|
1156
|
-
#
|
|
1157
|
-
#
|
|
1158
|
-
#
|
|
1159
|
-
#
|
|
1160
|
-
#
|
|
1161
|
-
#
|
|
1162
|
-
#
|
|
1163
|
-
#
|
|
1164
|
-
#
|
|
1165
|
-
#
|
|
1166
|
-
# A successfully processed record includes a
|
|
1167
|
-
#
|
|
1168
|
-
#
|
|
1169
|
-
#
|
|
1170
|
-
# `ServiceUnavailableException` or `InternalFailure`.
|
|
1166
|
+
# `FailedPutCount`, and an array of responses, `RequestResponses`. Even
|
|
1167
|
+
# if the PutRecordBatch call succeeds, the value of `FailedPutCount` may
|
|
1168
|
+
# be greater than 0, indicating that there are records for which the
|
|
1169
|
+
# operation didn't succeed. Each entry in the `RequestResponses` array
|
|
1170
|
+
# provides additional information about the processed record. It
|
|
1171
|
+
# directly correlates with a record in the request array using the same
|
|
1172
|
+
# ordering, from the top to the bottom. The response array always
|
|
1173
|
+
# includes the same number of records as the request array.
|
|
1174
|
+
# `RequestResponses` includes both successfully and unsuccessfully
|
|
1175
|
+
# processed records. Kinesis Data Firehose tries to process all records
|
|
1176
|
+
# in each PutRecordBatch request. A single record failure does not stop
|
|
1177
|
+
# the processing of subsequent records.
|
|
1178
|
+
#
|
|
1179
|
+
# A successfully processed record includes a `RecordId` value, which is
|
|
1180
|
+
# unique for the record. An unsuccessfully processed record includes
|
|
1181
|
+
# `ErrorCode` and `ErrorMessage` values. `ErrorCode` reflects the type
|
|
1182
|
+
# of error, and is one of the following values:
|
|
1183
|
+
# `ServiceUnavailableException` or `InternalFailure`. `ErrorMessage`
|
|
1171
1184
|
# provides more detailed information about the error.
|
|
1172
1185
|
#
|
|
1173
1186
|
# If there is an internal server error or a timeout, the write might
|
|
1174
|
-
# have completed or it might have failed. If
|
|
1175
|
-
#
|
|
1176
|
-
#
|
|
1177
|
-
#
|
|
1178
|
-
#
|
|
1179
|
-
# destination.
|
|
1187
|
+
# have completed or it might have failed. If `FailedPutCount` is greater
|
|
1188
|
+
# than 0, retry the request, resending only those records that might
|
|
1189
|
+
# have failed processing. This minimizes the possible duplicate records
|
|
1190
|
+
# and also reduces the total bytes sent (and corresponding charges). We
|
|
1191
|
+
# recommend that you handle any duplicates at the destination.
|
|
1180
1192
|
#
|
|
1181
|
-
# If PutRecordBatch throws
|
|
1193
|
+
# If PutRecordBatch throws `ServiceUnavailableException`, back off and
|
|
1182
1194
|
# retry. If the exception persists, it is possible that the throughput
|
|
1183
1195
|
# limits have been exceeded for the delivery stream.
|
|
1184
1196
|
#
|
|
@@ -1236,14 +1248,18 @@ module Aws::Firehose
|
|
|
1236
1248
|
req.send_request(options)
|
|
1237
1249
|
end
|
|
1238
1250
|
|
|
1239
|
-
# Enables server-side encryption (SSE) for the delivery stream.
|
|
1240
|
-
#
|
|
1241
|
-
#
|
|
1242
|
-
#
|
|
1243
|
-
#
|
|
1244
|
-
#
|
|
1245
|
-
#
|
|
1246
|
-
#
|
|
1251
|
+
# Enables server-side encryption (SSE) for the delivery stream.
|
|
1252
|
+
#
|
|
1253
|
+
# This operation is asynchronous. It returns immediately. When you
|
|
1254
|
+
# invoke it, Kinesis Data Firehose first sets the status of the stream
|
|
1255
|
+
# to `ENABLING`, and then to `ENABLED`. You can continue to read and
|
|
1256
|
+
# write data to your stream while its status is `ENABLING`, but the data
|
|
1257
|
+
# is not encrypted. It can take up to 5 seconds after the encryption
|
|
1258
|
+
# status changes to `ENABLED` before all records written to the delivery
|
|
1259
|
+
# stream are encrypted. To find out whether a record or a batch of
|
|
1260
|
+
# records was encrypted, check the response elements
|
|
1261
|
+
# PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted,
|
|
1262
|
+
# respectively.
|
|
1247
1263
|
#
|
|
1248
1264
|
# To check the encryption state of a delivery stream, use
|
|
1249
1265
|
# DescribeDeliveryStream.
|
|
@@ -1254,9 +1270,9 @@ module Aws::Firehose
|
|
|
1254
1270
|
# The `StartDeliveryStreamEncryption` and `StopDeliveryStreamEncryption`
|
|
1255
1271
|
# operations have a combined limit of 25 calls per delivery stream per
|
|
1256
1272
|
# 24 hours. For example, you reach the limit if you call
|
|
1257
|
-
# `StartDeliveryStreamEncryption`
|
|
1258
|
-
# `StopDeliveryStreamEncryption`
|
|
1259
|
-
# 24-hour period.
|
|
1273
|
+
# `StartDeliveryStreamEncryption` 13 times and
|
|
1274
|
+
# `StopDeliveryStreamEncryption` 12 times for the same delivery stream
|
|
1275
|
+
# in a 24-hour period.
|
|
1260
1276
|
#
|
|
1261
1277
|
# @option params [required, String] :delivery_stream_name
|
|
1262
1278
|
# The name of the delivery stream for which you want to enable
|
|
@@ -1279,13 +1295,18 @@ module Aws::Firehose
|
|
|
1279
1295
|
req.send_request(options)
|
|
1280
1296
|
end
|
|
1281
1297
|
|
|
1282
|
-
# Disables server-side encryption (SSE) for the delivery stream.
|
|
1283
|
-
#
|
|
1284
|
-
#
|
|
1285
|
-
#
|
|
1286
|
-
#
|
|
1287
|
-
#
|
|
1288
|
-
#
|
|
1298
|
+
# Disables server-side encryption (SSE) for the delivery stream.
|
|
1299
|
+
#
|
|
1300
|
+
# This operation is asynchronous. It returns immediately. When you
|
|
1301
|
+
# invoke it, Kinesis Data Firehose first sets the status of the stream
|
|
1302
|
+
# to `DISABLING`, and then to `DISABLED`. You can continue to read and
|
|
1303
|
+
# write data to your stream while its status is `DISABLING`. It can take
|
|
1304
|
+
# up to 5 seconds after the encryption status changes to `DISABLED`
|
|
1305
|
+
# before all records written to the delivery stream are no longer
|
|
1306
|
+
# subject to encryption. To find out whether a record or a batch of
|
|
1307
|
+
# records was encrypted, check the response elements
|
|
1308
|
+
# PutRecordOutput$Encrypted and PutRecordBatchOutput$Encrypted,
|
|
1309
|
+
# respectively.
|
|
1289
1310
|
#
|
|
1290
1311
|
# To check the encryption state of a delivery stream, use
|
|
1291
1312
|
# DescribeDeliveryStream.
|
|
@@ -1293,9 +1314,9 @@ module Aws::Firehose
|
|
|
1293
1314
|
# The `StartDeliveryStreamEncryption` and `StopDeliveryStreamEncryption`
|
|
1294
1315
|
# operations have a combined limit of 25 calls per delivery stream per
|
|
1295
1316
|
# 24 hours. For example, you reach the limit if you call
|
|
1296
|
-
# `StartDeliveryStreamEncryption`
|
|
1297
|
-
# `StopDeliveryStreamEncryption`
|
|
1298
|
-
# 24-hour period.
|
|
1317
|
+
# `StartDeliveryStreamEncryption` 13 times and
|
|
1318
|
+
# `StopDeliveryStreamEncryption` 12 times for the same delivery stream
|
|
1319
|
+
# in a 24-hour period.
|
|
1299
1320
|
#
|
|
1300
1321
|
# @option params [required, String] :delivery_stream_name
|
|
1301
1322
|
# The name of the delivery stream for which you want to disable
|
|
@@ -1319,14 +1340,13 @@ module Aws::Firehose
|
|
|
1319
1340
|
end
|
|
1320
1341
|
|
|
1321
1342
|
# Adds or updates tags for the specified delivery stream. A tag is a
|
|
1322
|
-
# key-value pair
|
|
1323
|
-
#
|
|
1324
|
-
# value
|
|
1325
|
-
#
|
|
1326
|
-
#
|
|
1327
|
-
#
|
|
1328
|
-
#
|
|
1329
|
-
# Guide*.
|
|
1343
|
+
# key-value pair that you can define and assign to AWS resources. If you
|
|
1344
|
+
# specify a tag that already exists, the tag value is replaced with the
|
|
1345
|
+
# value that you specify in the request. Tags are metadata. For example,
|
|
1346
|
+
# you can add friendly names and descriptions or other types of
|
|
1347
|
+
# information that can help you distinguish the delivery stream. For
|
|
1348
|
+
# more information about tags, see [Using Cost Allocation Tags][1] in
|
|
1349
|
+
# the *AWS Billing and Cost Management User Guide*.
|
|
1330
1350
|
#
|
|
1331
1351
|
# Each delivery stream can have up to 50 tags.
|
|
1332
1352
|
#
|
|
@@ -1428,19 +1448,19 @@ module Aws::Firehose
|
|
|
1428
1448
|
# does not merge any parameters. In this case, all parameters must be
|
|
1429
1449
|
# specified.
|
|
1430
1450
|
#
|
|
1431
|
-
# Kinesis Data Firehose uses
|
|
1451
|
+
# Kinesis Data Firehose uses `CurrentDeliveryStreamVersionId` to avoid
|
|
1432
1452
|
# race conditions and conflicting merges. This is a required field, and
|
|
1433
1453
|
# the service updates the configuration only if the existing
|
|
1434
1454
|
# configuration has a version ID that matches. After the update is
|
|
1435
1455
|
# applied successfully, the version ID is updated, and can be retrieved
|
|
1436
1456
|
# using DescribeDeliveryStream. Use the new version ID to set
|
|
1437
|
-
#
|
|
1457
|
+
# `CurrentDeliveryStreamVersionId` in the next call.
|
|
1438
1458
|
#
|
|
1439
1459
|
# @option params [required, String] :delivery_stream_name
|
|
1440
1460
|
# The name of the delivery stream.
|
|
1441
1461
|
#
|
|
1442
1462
|
# @option params [required, String] :current_delivery_stream_version_id
|
|
1443
|
-
# Obtain this value from the
|
|
1463
|
+
# Obtain this value from the `VersionId` result of
|
|
1444
1464
|
# DeliveryStreamDescription. This value is required, and helps the
|
|
1445
1465
|
# service perform conditional operations. For example, if there is an
|
|
1446
1466
|
# interleaving update and this value is null, then the update
|
|
@@ -1478,6 +1498,7 @@ module Aws::Firehose
|
|
|
1478
1498
|
# role_arn: "RoleARN",
|
|
1479
1499
|
# bucket_arn: "BucketARN",
|
|
1480
1500
|
# prefix: "Prefix",
|
|
1501
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1481
1502
|
# buffering_hints: {
|
|
1482
1503
|
# size_in_m_bs: 1,
|
|
1483
1504
|
# interval_in_seconds: 1,
|
|
@@ -1499,6 +1520,7 @@ module Aws::Firehose
|
|
|
1499
1520
|
# role_arn: "RoleARN",
|
|
1500
1521
|
# bucket_arn: "BucketARN",
|
|
1501
1522
|
# prefix: "Prefix",
|
|
1523
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1502
1524
|
# buffering_hints: {
|
|
1503
1525
|
# size_in_m_bs: 1,
|
|
1504
1526
|
# interval_in_seconds: 1,
|
|
@@ -1534,6 +1556,7 @@ module Aws::Firehose
|
|
|
1534
1556
|
# role_arn: "RoleARN",
|
|
1535
1557
|
# bucket_arn: "BucketARN",
|
|
1536
1558
|
# prefix: "Prefix",
|
|
1559
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1537
1560
|
# buffering_hints: {
|
|
1538
1561
|
# size_in_m_bs: 1,
|
|
1539
1562
|
# interval_in_seconds: 1,
|
|
@@ -1618,6 +1641,7 @@ module Aws::Firehose
|
|
|
1618
1641
|
# role_arn: "RoleARN",
|
|
1619
1642
|
# bucket_arn: "BucketARN",
|
|
1620
1643
|
# prefix: "Prefix",
|
|
1644
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1621
1645
|
# buffering_hints: {
|
|
1622
1646
|
# size_in_m_bs: 1,
|
|
1623
1647
|
# interval_in_seconds: 1,
|
|
@@ -1654,6 +1678,7 @@ module Aws::Firehose
|
|
|
1654
1678
|
# role_arn: "RoleARN",
|
|
1655
1679
|
# bucket_arn: "BucketARN",
|
|
1656
1680
|
# prefix: "Prefix",
|
|
1681
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1657
1682
|
# buffering_hints: {
|
|
1658
1683
|
# size_in_m_bs: 1,
|
|
1659
1684
|
# interval_in_seconds: 1,
|
|
@@ -1694,6 +1719,7 @@ module Aws::Firehose
|
|
|
1694
1719
|
# role_arn: "RoleARN",
|
|
1695
1720
|
# bucket_arn: "BucketARN",
|
|
1696
1721
|
# prefix: "Prefix",
|
|
1722
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1697
1723
|
# buffering_hints: {
|
|
1698
1724
|
# size_in_m_bs: 1,
|
|
1699
1725
|
# interval_in_seconds: 1,
|
|
@@ -1744,6 +1770,7 @@ module Aws::Firehose
|
|
|
1744
1770
|
# role_arn: "RoleARN",
|
|
1745
1771
|
# bucket_arn: "BucketARN",
|
|
1746
1772
|
# prefix: "Prefix",
|
|
1773
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1747
1774
|
# buffering_hints: {
|
|
1748
1775
|
# size_in_m_bs: 1,
|
|
1749
1776
|
# interval_in_seconds: 1,
|
|
@@ -1805,7 +1832,7 @@ module Aws::Firehose
|
|
|
1805
1832
|
params: params,
|
|
1806
1833
|
config: config)
|
|
1807
1834
|
context[:gem_name] = 'aws-sdk-firehose'
|
|
1808
|
-
context[:gem_version] = '1.
|
|
1835
|
+
context[:gem_version] = '1.11.0'
|
|
1809
1836
|
Seahorse::Client::Request.new(handlers, context)
|
|
1810
1837
|
end
|
|
1811
1838
|
|
|
@@ -64,6 +64,7 @@ module Aws::Firehose
|
|
|
64
64
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
|
65
65
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
66
66
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
67
|
+
ErrorOutputPrefix = Shapes::StringShape.new(name: 'ErrorOutputPrefix')
|
|
67
68
|
ExtendedS3DestinationConfiguration = Shapes::StructureShape.new(name: 'ExtendedS3DestinationConfiguration')
|
|
68
69
|
ExtendedS3DestinationDescription = Shapes::StructureShape.new(name: 'ExtendedS3DestinationDescription')
|
|
69
70
|
ExtendedS3DestinationUpdate = Shapes::StructureShape.new(name: 'ExtendedS3DestinationUpdate')
|
|
@@ -302,6 +303,7 @@ module Aws::Firehose
|
|
|
302
303
|
ExtendedS3DestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
|
303
304
|
ExtendedS3DestinationConfiguration.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
|
|
304
305
|
ExtendedS3DestinationConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
306
|
+
ExtendedS3DestinationConfiguration.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
305
307
|
ExtendedS3DestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, location_name: "BufferingHints"))
|
|
306
308
|
ExtendedS3DestinationConfiguration.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, location_name: "CompressionFormat"))
|
|
307
309
|
ExtendedS3DestinationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
|
@@ -315,6 +317,7 @@ module Aws::Firehose
|
|
|
315
317
|
ExtendedS3DestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
|
316
318
|
ExtendedS3DestinationDescription.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
|
|
317
319
|
ExtendedS3DestinationDescription.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
320
|
+
ExtendedS3DestinationDescription.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
318
321
|
ExtendedS3DestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, required: true, location_name: "BufferingHints"))
|
|
319
322
|
ExtendedS3DestinationDescription.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, required: true, location_name: "CompressionFormat"))
|
|
320
323
|
ExtendedS3DestinationDescription.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, required: true, location_name: "EncryptionConfiguration"))
|
|
@@ -328,6 +331,7 @@ module Aws::Firehose
|
|
|
328
331
|
ExtendedS3DestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
|
329
332
|
ExtendedS3DestinationUpdate.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, location_name: "BucketARN"))
|
|
330
333
|
ExtendedS3DestinationUpdate.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
334
|
+
ExtendedS3DestinationUpdate.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
331
335
|
ExtendedS3DestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, location_name: "BufferingHints"))
|
|
332
336
|
ExtendedS3DestinationUpdate.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, location_name: "CompressionFormat"))
|
|
333
337
|
ExtendedS3DestinationUpdate.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
|
@@ -497,6 +501,7 @@ module Aws::Firehose
|
|
|
497
501
|
S3DestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
|
498
502
|
S3DestinationConfiguration.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
|
|
499
503
|
S3DestinationConfiguration.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
504
|
+
S3DestinationConfiguration.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
500
505
|
S3DestinationConfiguration.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, location_name: "BufferingHints"))
|
|
501
506
|
S3DestinationConfiguration.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, location_name: "CompressionFormat"))
|
|
502
507
|
S3DestinationConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
|
@@ -506,6 +511,7 @@ module Aws::Firehose
|
|
|
506
511
|
S3DestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
|
507
512
|
S3DestinationDescription.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, required: true, location_name: "BucketARN"))
|
|
508
513
|
S3DestinationDescription.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
514
|
+
S3DestinationDescription.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
509
515
|
S3DestinationDescription.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, required: true, location_name: "BufferingHints"))
|
|
510
516
|
S3DestinationDescription.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, required: true, location_name: "CompressionFormat"))
|
|
511
517
|
S3DestinationDescription.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, required: true, location_name: "EncryptionConfiguration"))
|
|
@@ -515,6 +521,7 @@ module Aws::Firehose
|
|
|
515
521
|
S3DestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
|
516
522
|
S3DestinationUpdate.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketARN, location_name: "BucketARN"))
|
|
517
523
|
S3DestinationUpdate.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
|
524
|
+
S3DestinationUpdate.add_member(:error_output_prefix, Shapes::ShapeRef.new(shape: ErrorOutputPrefix, location_name: "ErrorOutputPrefix"))
|
|
518
525
|
S3DestinationUpdate.add_member(:buffering_hints, Shapes::ShapeRef.new(shape: BufferingHints, location_name: "BufferingHints"))
|
|
519
526
|
S3DestinationUpdate.add_member(:compression_format, Shapes::ShapeRef.new(shape: CompressionFormat, location_name: "CompressionFormat"))
|
|
520
527
|
S3DestinationUpdate.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
|
@@ -152,6 +152,7 @@ module Aws::Firehose
|
|
|
152
152
|
# role_arn: "RoleARN", # required
|
|
153
153
|
# bucket_arn: "BucketARN", # required
|
|
154
154
|
# prefix: "Prefix",
|
|
155
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
155
156
|
# buffering_hints: {
|
|
156
157
|
# size_in_m_bs: 1,
|
|
157
158
|
# interval_in_seconds: 1,
|
|
@@ -173,6 +174,7 @@ module Aws::Firehose
|
|
|
173
174
|
# role_arn: "RoleARN", # required
|
|
174
175
|
# bucket_arn: "BucketARN", # required
|
|
175
176
|
# prefix: "Prefix",
|
|
177
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
176
178
|
# buffering_hints: {
|
|
177
179
|
# size_in_m_bs: 1,
|
|
178
180
|
# interval_in_seconds: 1,
|
|
@@ -208,6 +210,7 @@ module Aws::Firehose
|
|
|
208
210
|
# role_arn: "RoleARN", # required
|
|
209
211
|
# bucket_arn: "BucketARN", # required
|
|
210
212
|
# prefix: "Prefix",
|
|
213
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
211
214
|
# buffering_hints: {
|
|
212
215
|
# size_in_m_bs: 1,
|
|
213
216
|
# interval_in_seconds: 1,
|
|
@@ -292,6 +295,7 @@ module Aws::Firehose
|
|
|
292
295
|
# role_arn: "RoleARN", # required
|
|
293
296
|
# bucket_arn: "BucketARN", # required
|
|
294
297
|
# prefix: "Prefix",
|
|
298
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
295
299
|
# buffering_hints: {
|
|
296
300
|
# size_in_m_bs: 1,
|
|
297
301
|
# interval_in_seconds: 1,
|
|
@@ -328,6 +332,7 @@ module Aws::Firehose
|
|
|
328
332
|
# role_arn: "RoleARN", # required
|
|
329
333
|
# bucket_arn: "BucketARN", # required
|
|
330
334
|
# prefix: "Prefix",
|
|
335
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
331
336
|
# buffering_hints: {
|
|
332
337
|
# size_in_m_bs: 1,
|
|
333
338
|
# interval_in_seconds: 1,
|
|
@@ -369,6 +374,7 @@ module Aws::Firehose
|
|
|
369
374
|
# role_arn: "RoleARN", # required
|
|
370
375
|
# bucket_arn: "BucketARN", # required
|
|
371
376
|
# prefix: "Prefix",
|
|
377
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
372
378
|
# buffering_hints: {
|
|
373
379
|
# size_in_m_bs: 1,
|
|
374
380
|
# interval_in_seconds: 1,
|
|
@@ -419,6 +425,7 @@ module Aws::Firehose
|
|
|
419
425
|
# role_arn: "RoleARN", # required
|
|
420
426
|
# bucket_arn: "BucketARN", # required
|
|
421
427
|
# prefix: "Prefix",
|
|
428
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
422
429
|
# buffering_hints: {
|
|
423
430
|
# size_in_m_bs: 1,
|
|
424
431
|
# interval_in_seconds: 1,
|
|
@@ -958,6 +965,7 @@ module Aws::Firehose
|
|
|
958
965
|
# role_arn: "RoleARN", # required
|
|
959
966
|
# bucket_arn: "BucketARN", # required
|
|
960
967
|
# prefix: "Prefix",
|
|
968
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
961
969
|
# buffering_hints: {
|
|
962
970
|
# size_in_m_bs: 1,
|
|
963
971
|
# interval_in_seconds: 1,
|
|
@@ -1034,7 +1042,7 @@ module Aws::Firehose
|
|
|
1034
1042
|
#
|
|
1035
1043
|
# @!attribute [rw] index_rotation_period
|
|
1036
1044
|
# The Elasticsearch index rotation period. Index rotation appends a
|
|
1037
|
-
#
|
|
1045
|
+
# timestamp to the `IndexName` to facilitate the expiration of old
|
|
1038
1046
|
# data. For more information, see [Index Rotation for the Amazon ES
|
|
1039
1047
|
# Destination][1]. The default value is `OneDay`.
|
|
1040
1048
|
#
|
|
@@ -1195,6 +1203,7 @@ module Aws::Firehose
|
|
|
1195
1203
|
# role_arn: "RoleARN",
|
|
1196
1204
|
# bucket_arn: "BucketARN",
|
|
1197
1205
|
# prefix: "Prefix",
|
|
1206
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1198
1207
|
# buffering_hints: {
|
|
1199
1208
|
# size_in_m_bs: 1,
|
|
1200
1209
|
# interval_in_seconds: 1,
|
|
@@ -1250,7 +1259,7 @@ module Aws::Firehose
|
|
|
1250
1259
|
# The ARN of the Amazon ES domain. The IAM role must have permissions
|
|
1251
1260
|
# for `DescribeElasticsearchDomain`, `DescribeElasticsearchDomains`,
|
|
1252
1261
|
# and `DescribeElasticsearchDomainConfig` after assuming the IAM role
|
|
1253
|
-
# specified in
|
|
1262
|
+
# specified in `RoleARN`. For more information, see [Amazon Resource
|
|
1254
1263
|
# Names (ARNs) and AWS Service Namespaces][1].
|
|
1255
1264
|
#
|
|
1256
1265
|
#
|
|
@@ -1271,7 +1280,7 @@ module Aws::Firehose
|
|
|
1271
1280
|
#
|
|
1272
1281
|
# @!attribute [rw] index_rotation_period
|
|
1273
1282
|
# The Elasticsearch index rotation period. Index rotation appends a
|
|
1274
|
-
#
|
|
1283
|
+
# timestamp to `IndexName` to facilitate the expiration of old data.
|
|
1275
1284
|
# For more information, see [Index Rotation for the Amazon ES
|
|
1276
1285
|
# Destination][1]. Default value is `OneDay`.
|
|
1277
1286
|
#
|
|
@@ -1282,7 +1291,7 @@ module Aws::Firehose
|
|
|
1282
1291
|
#
|
|
1283
1292
|
# @!attribute [rw] buffering_hints
|
|
1284
1293
|
# The buffering options. If no value is specified,
|
|
1285
|
-
#
|
|
1294
|
+
# `ElasticsearchBufferingHints` object default values are used.
|
|
1286
1295
|
# @return [Types::ElasticsearchBufferingHints]
|
|
1287
1296
|
#
|
|
1288
1297
|
# @!attribute [rw] retry_options
|
|
@@ -1382,6 +1391,7 @@ module Aws::Firehose
|
|
|
1382
1391
|
# role_arn: "RoleARN", # required
|
|
1383
1392
|
# bucket_arn: "BucketARN", # required
|
|
1384
1393
|
# prefix: "Prefix",
|
|
1394
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1385
1395
|
# buffering_hints: {
|
|
1386
1396
|
# size_in_m_bs: 1,
|
|
1387
1397
|
# interval_in_seconds: 1,
|
|
@@ -1417,6 +1427,7 @@ module Aws::Firehose
|
|
|
1417
1427
|
# role_arn: "RoleARN", # required
|
|
1418
1428
|
# bucket_arn: "BucketARN", # required
|
|
1419
1429
|
# prefix: "Prefix",
|
|
1430
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1420
1431
|
# buffering_hints: {
|
|
1421
1432
|
# size_in_m_bs: 1,
|
|
1422
1433
|
# interval_in_seconds: 1,
|
|
@@ -1517,6 +1528,12 @@ module Aws::Firehose
|
|
|
1517
1528
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
1518
1529
|
# @return [String]
|
|
1519
1530
|
#
|
|
1531
|
+
# @!attribute [rw] error_output_prefix
|
|
1532
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
1533
|
+
# records before writing them to S3. This prefix appears immediately
|
|
1534
|
+
# following the bucket name.
|
|
1535
|
+
# @return [String]
|
|
1536
|
+
#
|
|
1520
1537
|
# @!attribute [rw] buffering_hints
|
|
1521
1538
|
# The buffering option.
|
|
1522
1539
|
# @return [Types::BufferingHints]
|
|
@@ -1559,6 +1576,7 @@ module Aws::Firehose
|
|
|
1559
1576
|
:role_arn,
|
|
1560
1577
|
:bucket_arn,
|
|
1561
1578
|
:prefix,
|
|
1579
|
+
:error_output_prefix,
|
|
1562
1580
|
:buffering_hints,
|
|
1563
1581
|
:compression_format,
|
|
1564
1582
|
:encryption_configuration,
|
|
@@ -1604,6 +1622,12 @@ module Aws::Firehose
|
|
|
1604
1622
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
1605
1623
|
# @return [String]
|
|
1606
1624
|
#
|
|
1625
|
+
# @!attribute [rw] error_output_prefix
|
|
1626
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
1627
|
+
# records before writing them to S3. This prefix appears immediately
|
|
1628
|
+
# following the bucket name.
|
|
1629
|
+
# @return [String]
|
|
1630
|
+
#
|
|
1607
1631
|
# @!attribute [rw] buffering_hints
|
|
1608
1632
|
# The buffering option.
|
|
1609
1633
|
# @return [Types::BufferingHints]
|
|
@@ -1646,6 +1670,7 @@ module Aws::Firehose
|
|
|
1646
1670
|
:role_arn,
|
|
1647
1671
|
:bucket_arn,
|
|
1648
1672
|
:prefix,
|
|
1673
|
+
:error_output_prefix,
|
|
1649
1674
|
:buffering_hints,
|
|
1650
1675
|
:compression_format,
|
|
1651
1676
|
:encryption_configuration,
|
|
@@ -1666,6 +1691,7 @@ module Aws::Firehose
|
|
|
1666
1691
|
# role_arn: "RoleARN",
|
|
1667
1692
|
# bucket_arn: "BucketARN",
|
|
1668
1693
|
# prefix: "Prefix",
|
|
1694
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1669
1695
|
# buffering_hints: {
|
|
1670
1696
|
# size_in_m_bs: 1,
|
|
1671
1697
|
# interval_in_seconds: 1,
|
|
@@ -1701,6 +1727,7 @@ module Aws::Firehose
|
|
|
1701
1727
|
# role_arn: "RoleARN",
|
|
1702
1728
|
# bucket_arn: "BucketARN",
|
|
1703
1729
|
# prefix: "Prefix",
|
|
1730
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
1704
1731
|
# buffering_hints: {
|
|
1705
1732
|
# size_in_m_bs: 1,
|
|
1706
1733
|
# interval_in_seconds: 1,
|
|
@@ -1801,6 +1828,12 @@ module Aws::Firehose
|
|
|
1801
1828
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
1802
1829
|
# @return [String]
|
|
1803
1830
|
#
|
|
1831
|
+
# @!attribute [rw] error_output_prefix
|
|
1832
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
1833
|
+
# records before writing them to S3. This prefix appears immediately
|
|
1834
|
+
# following the bucket name.
|
|
1835
|
+
# @return [String]
|
|
1836
|
+
#
|
|
1804
1837
|
# @!attribute [rw] buffering_hints
|
|
1805
1838
|
# The buffering option.
|
|
1806
1839
|
# @return [Types::BufferingHints]
|
|
@@ -1843,6 +1876,7 @@ module Aws::Firehose
|
|
|
1843
1876
|
:role_arn,
|
|
1844
1877
|
:bucket_arn,
|
|
1845
1878
|
:prefix,
|
|
1879
|
+
:error_output_prefix,
|
|
1846
1880
|
:buffering_hints,
|
|
1847
1881
|
:compression_format,
|
|
1848
1882
|
:encryption_configuration,
|
|
@@ -1870,11 +1904,11 @@ module Aws::Firehose
|
|
|
1870
1904
|
#
|
|
1871
1905
|
# @!attribute [rw] timestamp_formats
|
|
1872
1906
|
# Indicates how you want Kinesis Data Firehose to parse the date and
|
|
1873
|
-
#
|
|
1907
|
+
# timestamps that may be present in your input data JSON. To specify
|
|
1874
1908
|
# these format strings, follow the pattern syntax of JodaTime's
|
|
1875
1909
|
# DateTimeFormat format strings. For more information, see [Class
|
|
1876
1910
|
# DateTimeFormat][1]. You can also use the special value `millis` to
|
|
1877
|
-
# parse
|
|
1911
|
+
# parse timestamps in epoch milliseconds. If you don't specify a
|
|
1878
1912
|
# format, Kinesis Data Firehose uses `java.sql.Timestamp::valueOf` by
|
|
1879
1913
|
# default.
|
|
1880
1914
|
#
|
|
@@ -2014,7 +2048,7 @@ module Aws::Firehose
|
|
|
2014
2048
|
#
|
|
2015
2049
|
# @!attribute [rw] delivery_start_timestamp
|
|
2016
2050
|
# Kinesis Data Firehose starts retrieving records from the Kinesis
|
|
2017
|
-
# data stream starting with this
|
|
2051
|
+
# data stream starting with this timestamp.
|
|
2018
2052
|
# @return [Time]
|
|
2019
2053
|
#
|
|
2020
2054
|
# @see http://docs.aws.amazon.com/goto/WebAPI/firehose-2015-08-04/KinesisStreamSourceDescription AWS API Documentation
|
|
@@ -2670,6 +2704,7 @@ module Aws::Firehose
|
|
|
2670
2704
|
# role_arn: "RoleARN", # required
|
|
2671
2705
|
# bucket_arn: "BucketARN", # required
|
|
2672
2706
|
# prefix: "Prefix",
|
|
2707
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
2673
2708
|
# buffering_hints: {
|
|
2674
2709
|
# size_in_m_bs: 1,
|
|
2675
2710
|
# interval_in_seconds: 1,
|
|
@@ -2706,6 +2741,7 @@ module Aws::Firehose
|
|
|
2706
2741
|
# role_arn: "RoleARN", # required
|
|
2707
2742
|
# bucket_arn: "BucketARN", # required
|
|
2708
2743
|
# prefix: "Prefix",
|
|
2744
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
2709
2745
|
# buffering_hints: {
|
|
2710
2746
|
# size_in_m_bs: 1,
|
|
2711
2747
|
# interval_in_seconds: 1,
|
|
@@ -2894,6 +2930,7 @@ module Aws::Firehose
|
|
|
2894
2930
|
# role_arn: "RoleARN",
|
|
2895
2931
|
# bucket_arn: "BucketARN",
|
|
2896
2932
|
# prefix: "Prefix",
|
|
2933
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
2897
2934
|
# buffering_hints: {
|
|
2898
2935
|
# size_in_m_bs: 1,
|
|
2899
2936
|
# interval_in_seconds: 1,
|
|
@@ -2930,6 +2967,7 @@ module Aws::Firehose
|
|
|
2930
2967
|
# role_arn: "RoleARN",
|
|
2931
2968
|
# bucket_arn: "BucketARN",
|
|
2932
2969
|
# prefix: "Prefix",
|
|
2970
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
2933
2971
|
# buffering_hints: {
|
|
2934
2972
|
# size_in_m_bs: 1,
|
|
2935
2973
|
# interval_in_seconds: 1,
|
|
@@ -3063,6 +3101,7 @@ module Aws::Firehose
|
|
|
3063
3101
|
# role_arn: "RoleARN", # required
|
|
3064
3102
|
# bucket_arn: "BucketARN", # required
|
|
3065
3103
|
# prefix: "Prefix",
|
|
3104
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3066
3105
|
# buffering_hints: {
|
|
3067
3106
|
# size_in_m_bs: 1,
|
|
3068
3107
|
# interval_in_seconds: 1,
|
|
@@ -3113,6 +3152,12 @@ module Aws::Firehose
|
|
|
3113
3152
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
3114
3153
|
# @return [String]
|
|
3115
3154
|
#
|
|
3155
|
+
# @!attribute [rw] error_output_prefix
|
|
3156
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
3157
|
+
# records before writing them to S3. This prefix appears immediately
|
|
3158
|
+
# following the bucket name.
|
|
3159
|
+
# @return [String]
|
|
3160
|
+
#
|
|
3116
3161
|
# @!attribute [rw] buffering_hints
|
|
3117
3162
|
# The buffering option. If no value is specified, `BufferingHints`
|
|
3118
3163
|
# object default values are used.
|
|
@@ -3142,6 +3187,7 @@ module Aws::Firehose
|
|
|
3142
3187
|
:role_arn,
|
|
3143
3188
|
:bucket_arn,
|
|
3144
3189
|
:prefix,
|
|
3190
|
+
:error_output_prefix,
|
|
3145
3191
|
:buffering_hints,
|
|
3146
3192
|
:compression_format,
|
|
3147
3193
|
:encryption_configuration,
|
|
@@ -3183,6 +3229,12 @@ module Aws::Firehose
|
|
|
3183
3229
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
3184
3230
|
# @return [String]
|
|
3185
3231
|
#
|
|
3232
|
+
# @!attribute [rw] error_output_prefix
|
|
3233
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
3234
|
+
# records before writing them to S3. This prefix appears immediately
|
|
3235
|
+
# following the bucket name.
|
|
3236
|
+
# @return [String]
|
|
3237
|
+
#
|
|
3186
3238
|
# @!attribute [rw] buffering_hints
|
|
3187
3239
|
# The buffering option. If no value is specified, `BufferingHints`
|
|
3188
3240
|
# object default values are used.
|
|
@@ -3208,6 +3260,7 @@ module Aws::Firehose
|
|
|
3208
3260
|
:role_arn,
|
|
3209
3261
|
:bucket_arn,
|
|
3210
3262
|
:prefix,
|
|
3263
|
+
:error_output_prefix,
|
|
3211
3264
|
:buffering_hints,
|
|
3212
3265
|
:compression_format,
|
|
3213
3266
|
:encryption_configuration,
|
|
@@ -3224,6 +3277,7 @@ module Aws::Firehose
|
|
|
3224
3277
|
# role_arn: "RoleARN",
|
|
3225
3278
|
# bucket_arn: "BucketARN",
|
|
3226
3279
|
# prefix: "Prefix",
|
|
3280
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3227
3281
|
# buffering_hints: {
|
|
3228
3282
|
# size_in_m_bs: 1,
|
|
3229
3283
|
# interval_in_seconds: 1,
|
|
@@ -3274,6 +3328,12 @@ module Aws::Firehose
|
|
|
3274
3328
|
# [1]: http://docs.aws.amazon.com/firehose/latest/dev/basic-deliver.html#s3-object-name
|
|
3275
3329
|
# @return [String]
|
|
3276
3330
|
#
|
|
3331
|
+
# @!attribute [rw] error_output_prefix
|
|
3332
|
+
# A prefix that Kinesis Data Firehose evaluates and adds to failed
|
|
3333
|
+
# records before writing them to S3. This prefix appears immediately
|
|
3334
|
+
# following the bucket name.
|
|
3335
|
+
# @return [String]
|
|
3336
|
+
#
|
|
3277
3337
|
# @!attribute [rw] buffering_hints
|
|
3278
3338
|
# The buffering option. If no value is specified, `BufferingHints`
|
|
3279
3339
|
# object default values are used.
|
|
@@ -3303,6 +3363,7 @@ module Aws::Firehose
|
|
|
3303
3363
|
:role_arn,
|
|
3304
3364
|
:bucket_arn,
|
|
3305
3365
|
:prefix,
|
|
3366
|
+
:error_output_prefix,
|
|
3306
3367
|
:buffering_hints,
|
|
3307
3368
|
:compression_format,
|
|
3308
3369
|
:encryption_configuration,
|
|
@@ -3466,6 +3527,7 @@ module Aws::Firehose
|
|
|
3466
3527
|
# role_arn: "RoleARN", # required
|
|
3467
3528
|
# bucket_arn: "BucketARN", # required
|
|
3468
3529
|
# prefix: "Prefix",
|
|
3530
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3469
3531
|
# buffering_hints: {
|
|
3470
3532
|
# size_in_m_bs: 1,
|
|
3471
3533
|
# interval_in_seconds: 1,
|
|
@@ -3650,6 +3712,7 @@ module Aws::Firehose
|
|
|
3650
3712
|
# role_arn: "RoleARN",
|
|
3651
3713
|
# bucket_arn: "BucketARN",
|
|
3652
3714
|
# prefix: "Prefix",
|
|
3715
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3653
3716
|
# buffering_hints: {
|
|
3654
3717
|
# size_in_m_bs: 1,
|
|
3655
3718
|
# interval_in_seconds: 1,
|
|
@@ -3927,6 +3990,7 @@ module Aws::Firehose
|
|
|
3927
3990
|
# role_arn: "RoleARN",
|
|
3928
3991
|
# bucket_arn: "BucketARN",
|
|
3929
3992
|
# prefix: "Prefix",
|
|
3993
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3930
3994
|
# buffering_hints: {
|
|
3931
3995
|
# size_in_m_bs: 1,
|
|
3932
3996
|
# interval_in_seconds: 1,
|
|
@@ -3948,6 +4012,7 @@ module Aws::Firehose
|
|
|
3948
4012
|
# role_arn: "RoleARN",
|
|
3949
4013
|
# bucket_arn: "BucketARN",
|
|
3950
4014
|
# prefix: "Prefix",
|
|
4015
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3951
4016
|
# buffering_hints: {
|
|
3952
4017
|
# size_in_m_bs: 1,
|
|
3953
4018
|
# interval_in_seconds: 1,
|
|
@@ -3983,6 +4048,7 @@ module Aws::Firehose
|
|
|
3983
4048
|
# role_arn: "RoleARN",
|
|
3984
4049
|
# bucket_arn: "BucketARN",
|
|
3985
4050
|
# prefix: "Prefix",
|
|
4051
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
3986
4052
|
# buffering_hints: {
|
|
3987
4053
|
# size_in_m_bs: 1,
|
|
3988
4054
|
# interval_in_seconds: 1,
|
|
@@ -4067,6 +4133,7 @@ module Aws::Firehose
|
|
|
4067
4133
|
# role_arn: "RoleARN",
|
|
4068
4134
|
# bucket_arn: "BucketARN",
|
|
4069
4135
|
# prefix: "Prefix",
|
|
4136
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
4070
4137
|
# buffering_hints: {
|
|
4071
4138
|
# size_in_m_bs: 1,
|
|
4072
4139
|
# interval_in_seconds: 1,
|
|
@@ -4103,6 +4170,7 @@ module Aws::Firehose
|
|
|
4103
4170
|
# role_arn: "RoleARN",
|
|
4104
4171
|
# bucket_arn: "BucketARN",
|
|
4105
4172
|
# prefix: "Prefix",
|
|
4173
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
4106
4174
|
# buffering_hints: {
|
|
4107
4175
|
# size_in_m_bs: 1,
|
|
4108
4176
|
# interval_in_seconds: 1,
|
|
@@ -4143,6 +4211,7 @@ module Aws::Firehose
|
|
|
4143
4211
|
# role_arn: "RoleARN",
|
|
4144
4212
|
# bucket_arn: "BucketARN",
|
|
4145
4213
|
# prefix: "Prefix",
|
|
4214
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
4146
4215
|
# buffering_hints: {
|
|
4147
4216
|
# size_in_m_bs: 1,
|
|
4148
4217
|
# interval_in_seconds: 1,
|
|
@@ -4193,6 +4262,7 @@ module Aws::Firehose
|
|
|
4193
4262
|
# role_arn: "RoleARN",
|
|
4194
4263
|
# bucket_arn: "BucketARN",
|
|
4195
4264
|
# prefix: "Prefix",
|
|
4265
|
+
# error_output_prefix: "ErrorOutputPrefix",
|
|
4196
4266
|
# buffering_hints: {
|
|
4197
4267
|
# size_in_m_bs: 1,
|
|
4198
4268
|
# interval_in_seconds: 1,
|
|
@@ -4237,7 +4307,7 @@ module Aws::Firehose
|
|
|
4237
4307
|
# @return [String]
|
|
4238
4308
|
#
|
|
4239
4309
|
# @!attribute [rw] current_delivery_stream_version_id
|
|
4240
|
-
# Obtain this value from the
|
|
4310
|
+
# Obtain this value from the `VersionId` result of
|
|
4241
4311
|
# DeliveryStreamDescription. This value is required, and helps the
|
|
4242
4312
|
# service perform conditional operations. For example, if there is an
|
|
4243
4313
|
# interleaving update and this value is null, then the update
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-firehose
|
|
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: 2018-
|
|
11
|
+
date: 2018-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|