aws-sdk-firehose 1.85.0 → 1.87.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-firehose/client.rb +43 -5
- data/lib/aws-sdk-firehose/client_api.rb +14 -0
- data/lib/aws-sdk-firehose/types.rb +398 -90
- data/lib/aws-sdk-firehose.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +15 -0
- 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: 390fa454500789558aa4c8e7f8e71d824578f5ae906de30da44a48e127cb05cb
|
4
|
+
data.tar.gz: 32bdb5a34571a95d017bb307c76320582d14d538d1fcd11b44f9e4f59251d2cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f98482260f6f7e4338b2d67f59073c72bc31c9c634c155837558e34355d47b11e5e0e53aff5f9f7f692cd1cda6e0974bdc22e9eea55f3005a765ffad5f7500ec
|
7
|
+
data.tar.gz: 1c936d35a7ad3809e9d1921ed8b6d588d09ac0c63c31e2e00e42ce17ae2204c263b38f48c0ef43e3e4318eb0f3dbfb2a573c97792f50d6171c5d4e9d89822829
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.87.0 (2025-01-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - For AppendOnly streams, Firehose will automatically scale to match your throughput.
|
8
|
+
|
9
|
+
1.86.0 (2025-01-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.85.0 (2024-11-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.87.0
|
@@ -257,11 +257,34 @@ module Aws::Firehose
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -554,6 +577,10 @@ module Aws::Firehose
|
|
554
577
|
# * `KinesisStreamAsSource`: The Firehose stream uses a Kinesis data
|
555
578
|
# stream as a source.
|
556
579
|
#
|
580
|
+
# @option params [Types::DirectPutSourceConfiguration] :direct_put_source_configuration
|
581
|
+
# The structure that configures parameters such as `ThroughputHintInMBs`
|
582
|
+
# for a stream configured with Direct PUT as a source.
|
583
|
+
#
|
557
584
|
# @option params [Types::KinesisStreamSourceConfiguration] :kinesis_stream_source_configuration
|
558
585
|
# When a Kinesis data stream is used as the source for the Firehose
|
559
586
|
# stream, a KinesisStreamSourceConfiguration containing the Kinesis data
|
@@ -576,7 +603,8 @@ module Aws::Firehose
|
|
576
603
|
# destination.
|
577
604
|
#
|
578
605
|
# @option params [Types::ElasticsearchDestinationConfiguration] :elasticsearch_destination_configuration
|
579
|
-
# The destination in Amazon
|
606
|
+
# The destination in Amazon OpenSearch Service. You can specify only one
|
607
|
+
# destination.
|
580
608
|
#
|
581
609
|
# @option params [Types::AmazonopensearchserviceDestinationConfiguration] :amazonopensearchservice_destination_configuration
|
582
610
|
# The destination in Amazon OpenSearch Service. You can specify only one
|
@@ -604,8 +632,8 @@ module Aws::Firehose
|
|
604
632
|
# Firehose performs an additional authorization on the
|
605
633
|
# `firehose:TagDeliveryStream` action to verify if users have
|
606
634
|
# permissions to create tags. If you do not provide this permission,
|
607
|
-
# requests to create new Firehose
|
608
|
-
#
|
635
|
+
# requests to create new Firehose streams with IAM resource tags will
|
636
|
+
# fail with an `AccessDeniedException` such as following.
|
609
637
|
#
|
610
638
|
# **AccessDeniedException**
|
611
639
|
#
|
@@ -636,6 +664,9 @@ module Aws::Firehose
|
|
636
664
|
# Configure Apache Iceberg Tables destination.
|
637
665
|
#
|
638
666
|
# @option params [Types::DatabaseSourceConfiguration] :database_source_configuration
|
667
|
+
# The top level object for configuring streams with database as a
|
668
|
+
# source.
|
669
|
+
#
|
639
670
|
# Amazon Data Firehose is in preview release and is subject to change.
|
640
671
|
#
|
641
672
|
# @return [Types::CreateDeliveryStreamOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -647,6 +678,9 @@ module Aws::Firehose
|
|
647
678
|
# resp = client.create_delivery_stream({
|
648
679
|
# delivery_stream_name: "DeliveryStreamName", # required
|
649
680
|
# delivery_stream_type: "DirectPut", # accepts DirectPut, KinesisStreamAsSource, MSKAsSource, DatabaseAsSource
|
681
|
+
# direct_put_source_configuration: {
|
682
|
+
# throughput_hint_in_m_bs: 1, # required
|
683
|
+
# },
|
650
684
|
# kinesis_stream_source_configuration: {
|
651
685
|
# kinesis_stream_arn: "KinesisStreamARN", # required
|
652
686
|
# role_arn: "RoleARN", # required
|
@@ -1335,6 +1369,7 @@ module Aws::Firehose
|
|
1335
1369
|
# duration_in_seconds: 1,
|
1336
1370
|
# },
|
1337
1371
|
# role_arn: "RoleARN", # required
|
1372
|
+
# append_only: false,
|
1338
1373
|
# catalog_configuration: { # required
|
1339
1374
|
# catalog_arn: "GlueDataCatalogARN",
|
1340
1375
|
# warehouse_location: "WarehouseLocation",
|
@@ -1517,6 +1552,7 @@ module Aws::Firehose
|
|
1517
1552
|
# resp.delivery_stream_description.version_id #=> String
|
1518
1553
|
# resp.delivery_stream_description.create_timestamp #=> Time
|
1519
1554
|
# resp.delivery_stream_description.last_update_timestamp #=> Time
|
1555
|
+
# resp.delivery_stream_description.source.direct_put_source_description.throughput_hint_in_m_bs #=> Integer
|
1520
1556
|
# resp.delivery_stream_description.source.kinesis_stream_source_description.kinesis_stream_arn #=> String
|
1521
1557
|
# resp.delivery_stream_description.source.kinesis_stream_source_description.role_arn #=> String
|
1522
1558
|
# resp.delivery_stream_description.source.kinesis_stream_source_description.delivery_start_timestamp #=> Time
|
@@ -1921,6 +1957,7 @@ module Aws::Firehose
|
|
1921
1957
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.s3_backup_mode #=> String, one of "FailedDataOnly", "AllData"
|
1922
1958
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.retry_options.duration_in_seconds #=> Integer
|
1923
1959
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.role_arn #=> String
|
1960
|
+
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.append_only #=> Boolean
|
1924
1961
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.catalog_configuration.catalog_arn #=> String
|
1925
1962
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.catalog_configuration.warehouse_location #=> String
|
1926
1963
|
# resp.delivery_stream_description.destinations[0].iceberg_destination_description.s3_destination_description.role_arn #=> String
|
@@ -2553,7 +2590,7 @@ module Aws::Firehose
|
|
2553
2590
|
# Describes an update for a destination in Amazon Redshift.
|
2554
2591
|
#
|
2555
2592
|
# @option params [Types::ElasticsearchDestinationUpdate] :elasticsearch_destination_update
|
2556
|
-
# Describes an update for a destination in Amazon
|
2593
|
+
# Describes an update for a destination in Amazon OpenSearch Service.
|
2557
2594
|
#
|
2558
2595
|
# @option params [Types::AmazonopensearchserviceDestinationUpdate] :amazonopensearchservice_destination_update
|
2559
2596
|
# Describes an update for a destination in Amazon OpenSearch Service.
|
@@ -3226,6 +3263,7 @@ module Aws::Firehose
|
|
3226
3263
|
# duration_in_seconds: 1,
|
3227
3264
|
# },
|
3228
3265
|
# role_arn: "RoleARN",
|
3266
|
+
# append_only: false,
|
3229
3267
|
# catalog_configuration: {
|
3230
3268
|
# catalog_arn: "GlueDataCatalogARN",
|
3231
3269
|
# warehouse_location: "WarehouseLocation",
|
@@ -3282,7 +3320,7 @@ module Aws::Firehose
|
|
3282
3320
|
tracer: tracer
|
3283
3321
|
)
|
3284
3322
|
context[:gem_name] = 'aws-sdk-firehose'
|
3285
|
-
context[:gem_version] = '1.
|
3323
|
+
context[:gem_version] = '1.87.0'
|
3286
3324
|
Seahorse::Client::Request.new(handlers, context)
|
3287
3325
|
end
|
3288
3326
|
|
@@ -105,6 +105,8 @@ module Aws::Firehose
|
|
105
105
|
DestinationId = Shapes::StringShape.new(name: 'DestinationId')
|
106
106
|
DestinationTableConfiguration = Shapes::StructureShape.new(name: 'DestinationTableConfiguration')
|
107
107
|
DestinationTableConfigurationList = Shapes::ListShape.new(name: 'DestinationTableConfigurationList')
|
108
|
+
DirectPutSourceConfiguration = Shapes::StructureShape.new(name: 'DirectPutSourceConfiguration')
|
109
|
+
DirectPutSourceDescription = Shapes::StructureShape.new(name: 'DirectPutSourceDescription')
|
108
110
|
DocumentIdOptions = Shapes::StructureShape.new(name: 'DocumentIdOptions')
|
109
111
|
DynamicPartitioningConfiguration = Shapes::StructureShape.new(name: 'DynamicPartitioningConfiguration')
|
110
112
|
ElasticsearchBufferingHints = Shapes::StructureShape.new(name: 'ElasticsearchBufferingHints')
|
@@ -296,6 +298,7 @@ module Aws::Firehose
|
|
296
298
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
297
299
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
298
300
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
301
|
+
ThroughputHintInMBs = Shapes::IntegerShape.new(name: 'ThroughputHintInMBs')
|
299
302
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
300
303
|
TopicName = Shapes::StringShape.new(name: 'TopicName')
|
301
304
|
UntagDeliveryStreamInput = Shapes::StructureShape.new(name: 'UntagDeliveryStreamInput')
|
@@ -432,6 +435,7 @@ module Aws::Firehose
|
|
432
435
|
|
433
436
|
CreateDeliveryStreamInput.add_member(:delivery_stream_name, Shapes::ShapeRef.new(shape: DeliveryStreamName, required: true, location_name: "DeliveryStreamName"))
|
434
437
|
CreateDeliveryStreamInput.add_member(:delivery_stream_type, Shapes::ShapeRef.new(shape: DeliveryStreamType, location_name: "DeliveryStreamType"))
|
438
|
+
CreateDeliveryStreamInput.add_member(:direct_put_source_configuration, Shapes::ShapeRef.new(shape: DirectPutSourceConfiguration, location_name: "DirectPutSourceConfiguration"))
|
435
439
|
CreateDeliveryStreamInput.add_member(:kinesis_stream_source_configuration, Shapes::ShapeRef.new(shape: KinesisStreamSourceConfiguration, location_name: "KinesisStreamSourceConfiguration"))
|
436
440
|
CreateDeliveryStreamInput.add_member(:delivery_stream_encryption_configuration_input, Shapes::ShapeRef.new(shape: DeliveryStreamEncryptionConfigurationInput, location_name: "DeliveryStreamEncryptionConfigurationInput"))
|
437
441
|
CreateDeliveryStreamInput.add_member(:s3_destination_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, deprecated: true, location_name: "S3DestinationConfiguration"))
|
@@ -589,6 +593,12 @@ module Aws::Firehose
|
|
589
593
|
|
590
594
|
DestinationTableConfigurationList.member = Shapes::ShapeRef.new(shape: DestinationTableConfiguration)
|
591
595
|
|
596
|
+
DirectPutSourceConfiguration.add_member(:throughput_hint_in_m_bs, Shapes::ShapeRef.new(shape: ThroughputHintInMBs, required: true, location_name: "ThroughputHintInMBs"))
|
597
|
+
DirectPutSourceConfiguration.struct_class = Types::DirectPutSourceConfiguration
|
598
|
+
|
599
|
+
DirectPutSourceDescription.add_member(:throughput_hint_in_m_bs, Shapes::ShapeRef.new(shape: ThroughputHintInMBs, location_name: "ThroughputHintInMBs"))
|
600
|
+
DirectPutSourceDescription.struct_class = Types::DirectPutSourceDescription
|
601
|
+
|
592
602
|
DocumentIdOptions.add_member(:default_document_id_format, Shapes::ShapeRef.new(shape: DefaultDocumentIdFormat, required: true, location_name: "DefaultDocumentIdFormat"))
|
593
603
|
DocumentIdOptions.struct_class = Types::DocumentIdOptions
|
594
604
|
|
@@ -782,6 +792,7 @@ module Aws::Firehose
|
|
782
792
|
IcebergDestinationConfiguration.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: IcebergS3BackupMode, location_name: "S3BackupMode"))
|
783
793
|
IcebergDestinationConfiguration.add_member(:retry_options, Shapes::ShapeRef.new(shape: RetryOptions, location_name: "RetryOptions"))
|
784
794
|
IcebergDestinationConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, required: true, location_name: "RoleARN"))
|
795
|
+
IcebergDestinationConfiguration.add_member(:append_only, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "AppendOnly"))
|
785
796
|
IcebergDestinationConfiguration.add_member(:catalog_configuration, Shapes::ShapeRef.new(shape: CatalogConfiguration, required: true, location_name: "CatalogConfiguration"))
|
786
797
|
IcebergDestinationConfiguration.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, required: true, location_name: "S3Configuration"))
|
787
798
|
IcebergDestinationConfiguration.struct_class = Types::IcebergDestinationConfiguration
|
@@ -795,6 +806,7 @@ module Aws::Firehose
|
|
795
806
|
IcebergDestinationDescription.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: IcebergS3BackupMode, location_name: "S3BackupMode"))
|
796
807
|
IcebergDestinationDescription.add_member(:retry_options, Shapes::ShapeRef.new(shape: RetryOptions, location_name: "RetryOptions"))
|
797
808
|
IcebergDestinationDescription.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
809
|
+
IcebergDestinationDescription.add_member(:append_only, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "AppendOnly"))
|
798
810
|
IcebergDestinationDescription.add_member(:catalog_configuration, Shapes::ShapeRef.new(shape: CatalogConfiguration, location_name: "CatalogConfiguration"))
|
799
811
|
IcebergDestinationDescription.add_member(:s3_destination_description, Shapes::ShapeRef.new(shape: S3DestinationDescription, location_name: "S3DestinationDescription"))
|
800
812
|
IcebergDestinationDescription.struct_class = Types::IcebergDestinationDescription
|
@@ -808,6 +820,7 @@ module Aws::Firehose
|
|
808
820
|
IcebergDestinationUpdate.add_member(:s3_backup_mode, Shapes::ShapeRef.new(shape: IcebergS3BackupMode, location_name: "S3BackupMode"))
|
809
821
|
IcebergDestinationUpdate.add_member(:retry_options, Shapes::ShapeRef.new(shape: RetryOptions, location_name: "RetryOptions"))
|
810
822
|
IcebergDestinationUpdate.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleARN, location_name: "RoleARN"))
|
823
|
+
IcebergDestinationUpdate.add_member(:append_only, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "AppendOnly"))
|
811
824
|
IcebergDestinationUpdate.add_member(:catalog_configuration, Shapes::ShapeRef.new(shape: CatalogConfiguration, location_name: "CatalogConfiguration"))
|
812
825
|
IcebergDestinationUpdate.add_member(:s3_configuration, Shapes::ShapeRef.new(shape: S3DestinationConfiguration, location_name: "S3Configuration"))
|
813
826
|
IcebergDestinationUpdate.struct_class = Types::IcebergDestinationUpdate
|
@@ -1144,6 +1157,7 @@ module Aws::Firehose
|
|
1144
1157
|
SnowflakeVpcConfiguration.add_member(:private_link_vpce_id, Shapes::ShapeRef.new(shape: SnowflakePrivateLinkVpceId, required: true, location_name: "PrivateLinkVpceId"))
|
1145
1158
|
SnowflakeVpcConfiguration.struct_class = Types::SnowflakeVpcConfiguration
|
1146
1159
|
|
1160
|
+
SourceDescription.add_member(:direct_put_source_description, Shapes::ShapeRef.new(shape: DirectPutSourceDescription, location_name: "DirectPutSourceDescription"))
|
1147
1161
|
SourceDescription.add_member(:kinesis_stream_source_description, Shapes::ShapeRef.new(shape: KinesisStreamSourceDescription, location_name: "KinesisStreamSourceDescription"))
|
1148
1162
|
SourceDescription.add_member(:msk_source_description, Shapes::ShapeRef.new(shape: MSKSourceDescription, location_name: "MSKSourceDescription"))
|
1149
1163
|
SourceDescription.add_member(:database_source_description, Shapes::ShapeRef.new(shape: DatabaseSourceDescription, location_name: "DatabaseSourceDescription"))
|