aws-sdk-pipes 1.30.0 → 1.31.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pipes/client.rb +1 -1
- data/lib/aws-sdk-pipes/types.rb +53 -65
- data/lib/aws-sdk-pipes.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c4efa8d0d77ae18899dbfb168fa1f448b2ea30a7ccc93708f18879aa7ae9306
|
4
|
+
data.tar.gz: ff9ff9ae89dfbfa69187627412c0c2b0654cd84f06559a7ce5ee2f44f563497c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fc9a7b43453e3835df3868bb4de11fb6854969b5956250caef324f77a020f599e80b80db218804aa71a8b1f34b52f87c91b636f3d05e41e1297f250afa4eada
|
7
|
+
data.tar.gz: b57746ad5d6182e21a1a185d46c8d926f0b893bc78bc96cbf31f4da8e23058840c73fdd2b16ea3115bb88d2a5abe45889e404e71539f806af4ba756ae03fdabc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.31.0 (2024-10-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds validation to require specifying a SecurityGroup and Subnets in the Vpc object under PipesSourceSelfManagedKafkaParameters. It also adds support for iso-e, iso-f, and other non-commercial partitions in ARN parameters.
|
8
|
+
|
4
9
|
1.30.0 (2024-09-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.31.0
|
data/lib/aws-sdk-pipes/client.rb
CHANGED
data/lib/aws-sdk-pipes/types.rb
CHANGED
@@ -1738,10 +1738,9 @@ module Aws::Pipes
|
|
1738
1738
|
# @return [Types::DeadLetterConfig]
|
1739
1739
|
#
|
1740
1740
|
# @!attribute [rw] on_partial_batch_item_failure
|
1741
|
-
#
|
1742
|
-
#
|
1743
|
-
#
|
1744
|
-
# batch.
|
1741
|
+
# Define how to handle item process failures. `AUTOMATIC_BISECT`
|
1742
|
+
# halves each batch and retry each half until all the records are
|
1743
|
+
# processed or there is one failed message left in the batch.
|
1745
1744
|
# @return [String]
|
1746
1745
|
#
|
1747
1746
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -1749,27 +1748,25 @@ module Aws::Pipes
|
|
1749
1748
|
# @return [Integer]
|
1750
1749
|
#
|
1751
1750
|
# @!attribute [rw] maximum_record_age_in_seconds
|
1752
|
-
#
|
1753
|
-
#
|
1754
|
-
#
|
1755
|
-
# records.
|
1751
|
+
# Discard records older than the specified age. The default value is
|
1752
|
+
# -1, which sets the maximum age to infinite. When the value is set to
|
1753
|
+
# infinite, EventBridge never discards old records.
|
1756
1754
|
# @return [Integer]
|
1757
1755
|
#
|
1758
1756
|
# @!attribute [rw] maximum_retry_attempts
|
1759
|
-
#
|
1760
|
-
#
|
1761
|
-
#
|
1762
|
-
#
|
1763
|
-
# event source.
|
1757
|
+
# Discard records after the specified number of retries. The default
|
1758
|
+
# value is -1, which sets the maximum number of retries to infinite.
|
1759
|
+
# When MaximumRetryAttempts is infinite, EventBridge retries failed
|
1760
|
+
# records until the record expires in the event source.
|
1764
1761
|
# @return [Integer]
|
1765
1762
|
#
|
1766
1763
|
# @!attribute [rw] parallelization_factor
|
1767
|
-
#
|
1768
|
-
#
|
1764
|
+
# The number of batches to process concurrently from each shard. The
|
1765
|
+
# default value is 1.
|
1769
1766
|
# @return [Integer]
|
1770
1767
|
#
|
1771
1768
|
# @!attribute [rw] starting_position
|
1772
|
-
#
|
1769
|
+
# The position in a stream from which to start reading.
|
1773
1770
|
# @return [String]
|
1774
1771
|
#
|
1775
1772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeSourceDynamoDBStreamParameters AWS API Documentation
|
@@ -1798,10 +1795,9 @@ module Aws::Pipes
|
|
1798
1795
|
# @return [Types::DeadLetterConfig]
|
1799
1796
|
#
|
1800
1797
|
# @!attribute [rw] on_partial_batch_item_failure
|
1801
|
-
#
|
1802
|
-
#
|
1803
|
-
#
|
1804
|
-
# batch.
|
1798
|
+
# Define how to handle item process failures. `AUTOMATIC_BISECT`
|
1799
|
+
# halves each batch and retry each half until all the records are
|
1800
|
+
# processed or there is one failed message left in the batch.
|
1805
1801
|
# @return [String]
|
1806
1802
|
#
|
1807
1803
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -1809,27 +1805,25 @@ module Aws::Pipes
|
|
1809
1805
|
# @return [Integer]
|
1810
1806
|
#
|
1811
1807
|
# @!attribute [rw] maximum_record_age_in_seconds
|
1812
|
-
#
|
1813
|
-
#
|
1814
|
-
#
|
1815
|
-
# records.
|
1808
|
+
# Discard records older than the specified age. The default value is
|
1809
|
+
# -1, which sets the maximum age to infinite. When the value is set to
|
1810
|
+
# infinite, EventBridge never discards old records.
|
1816
1811
|
# @return [Integer]
|
1817
1812
|
#
|
1818
1813
|
# @!attribute [rw] maximum_retry_attempts
|
1819
|
-
#
|
1820
|
-
#
|
1821
|
-
#
|
1822
|
-
#
|
1823
|
-
# event source.
|
1814
|
+
# Discard records after the specified number of retries. The default
|
1815
|
+
# value is -1, which sets the maximum number of retries to infinite.
|
1816
|
+
# When MaximumRetryAttempts is infinite, EventBridge retries failed
|
1817
|
+
# records until the record expires in the event source.
|
1824
1818
|
# @return [Integer]
|
1825
1819
|
#
|
1826
1820
|
# @!attribute [rw] parallelization_factor
|
1827
|
-
#
|
1828
|
-
#
|
1821
|
+
# The number of batches to process concurrently from each shard. The
|
1822
|
+
# default value is 1.
|
1829
1823
|
# @return [Integer]
|
1830
1824
|
#
|
1831
1825
|
# @!attribute [rw] starting_position
|
1832
|
-
#
|
1826
|
+
# The position in a stream from which to start reading.
|
1833
1827
|
# @return [String]
|
1834
1828
|
#
|
1835
1829
|
# @!attribute [rw] starting_position_timestamp
|
@@ -1860,7 +1854,7 @@ module Aws::Pipes
|
|
1860
1854
|
# @return [String]
|
1861
1855
|
#
|
1862
1856
|
# @!attribute [rw] starting_position
|
1863
|
-
#
|
1857
|
+
# The position in a stream from which to start reading.
|
1864
1858
|
# @return [String]
|
1865
1859
|
#
|
1866
1860
|
# @!attribute [rw] batch_size
|
@@ -2022,7 +2016,7 @@ module Aws::Pipes
|
|
2022
2016
|
# @return [String]
|
2023
2017
|
#
|
2024
2018
|
# @!attribute [rw] starting_position
|
2025
|
-
#
|
2019
|
+
# The position in a stream from which to start reading.
|
2026
2020
|
# @return [String]
|
2027
2021
|
#
|
2028
2022
|
# @!attribute [rw] additional_bootstrap_servers
|
@@ -2673,7 +2667,7 @@ module Aws::Pipes
|
|
2673
2667
|
#
|
2674
2668
|
# @!attribute [rw] timestamp_format
|
2675
2669
|
# How to format the timestamps. For example,
|
2676
|
-
# `
|
2670
|
+
# `yyyy-MM-dd'T'HH:mm:ss'Z'`.
|
2677
2671
|
#
|
2678
2672
|
# Required if `TimeFieldType` is specified as `TIMESTAMP_FORMAT`.
|
2679
2673
|
# @return [String]
|
@@ -3415,10 +3409,9 @@ module Aws::Pipes
|
|
3415
3409
|
# @return [Types::DeadLetterConfig]
|
3416
3410
|
#
|
3417
3411
|
# @!attribute [rw] on_partial_batch_item_failure
|
3418
|
-
#
|
3419
|
-
#
|
3420
|
-
#
|
3421
|
-
# batch.
|
3412
|
+
# Define how to handle item process failures. `AUTOMATIC_BISECT`
|
3413
|
+
# halves each batch and retry each half until all the records are
|
3414
|
+
# processed or there is one failed message left in the batch.
|
3422
3415
|
# @return [String]
|
3423
3416
|
#
|
3424
3417
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -3426,23 +3419,21 @@ module Aws::Pipes
|
|
3426
3419
|
# @return [Integer]
|
3427
3420
|
#
|
3428
3421
|
# @!attribute [rw] maximum_record_age_in_seconds
|
3429
|
-
#
|
3430
|
-
#
|
3431
|
-
#
|
3432
|
-
# records.
|
3422
|
+
# Discard records older than the specified age. The default value is
|
3423
|
+
# -1, which sets the maximum age to infinite. When the value is set to
|
3424
|
+
# infinite, EventBridge never discards old records.
|
3433
3425
|
# @return [Integer]
|
3434
3426
|
#
|
3435
3427
|
# @!attribute [rw] maximum_retry_attempts
|
3436
|
-
#
|
3437
|
-
#
|
3438
|
-
#
|
3439
|
-
#
|
3440
|
-
# event source.
|
3428
|
+
# Discard records after the specified number of retries. The default
|
3429
|
+
# value is -1, which sets the maximum number of retries to infinite.
|
3430
|
+
# When MaximumRetryAttempts is infinite, EventBridge retries failed
|
3431
|
+
# records until the record expires in the event source.
|
3441
3432
|
# @return [Integer]
|
3442
3433
|
#
|
3443
3434
|
# @!attribute [rw] parallelization_factor
|
3444
|
-
#
|
3445
|
-
#
|
3435
|
+
# The number of batches to process concurrently from each shard. The
|
3436
|
+
# default value is 1.
|
3446
3437
|
# @return [Integer]
|
3447
3438
|
#
|
3448
3439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeSourceDynamoDBStreamParameters AWS API Documentation
|
@@ -3470,10 +3461,9 @@ module Aws::Pipes
|
|
3470
3461
|
# @return [Types::DeadLetterConfig]
|
3471
3462
|
#
|
3472
3463
|
# @!attribute [rw] on_partial_batch_item_failure
|
3473
|
-
#
|
3474
|
-
#
|
3475
|
-
#
|
3476
|
-
# batch.
|
3464
|
+
# Define how to handle item process failures. `AUTOMATIC_BISECT`
|
3465
|
+
# halves each batch and retry each half until all the records are
|
3466
|
+
# processed or there is one failed message left in the batch.
|
3477
3467
|
# @return [String]
|
3478
3468
|
#
|
3479
3469
|
# @!attribute [rw] maximum_batching_window_in_seconds
|
@@ -3481,23 +3471,21 @@ module Aws::Pipes
|
|
3481
3471
|
# @return [Integer]
|
3482
3472
|
#
|
3483
3473
|
# @!attribute [rw] maximum_record_age_in_seconds
|
3484
|
-
#
|
3485
|
-
#
|
3486
|
-
#
|
3487
|
-
# records.
|
3474
|
+
# Discard records older than the specified age. The default value is
|
3475
|
+
# -1, which sets the maximum age to infinite. When the value is set to
|
3476
|
+
# infinite, EventBridge never discards old records.
|
3488
3477
|
# @return [Integer]
|
3489
3478
|
#
|
3490
3479
|
# @!attribute [rw] maximum_retry_attempts
|
3491
|
-
#
|
3492
|
-
#
|
3493
|
-
#
|
3494
|
-
#
|
3495
|
-
# event source.
|
3480
|
+
# Discard records after the specified number of retries. The default
|
3481
|
+
# value is -1, which sets the maximum number of retries to infinite.
|
3482
|
+
# When MaximumRetryAttempts is infinite, EventBridge retries failed
|
3483
|
+
# records until the record expires in the event source.
|
3496
3484
|
# @return [Integer]
|
3497
3485
|
#
|
3498
3486
|
# @!attribute [rw] parallelization_factor
|
3499
|
-
#
|
3500
|
-
#
|
3487
|
+
# The number of batches to process concurrently from each shard. The
|
3488
|
+
# default value is 1.
|
3501
3489
|
# @return [Integer]
|
3502
3490
|
#
|
3503
3491
|
# @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeSourceKinesisStreamParameters AWS API Documentation
|
data/lib/aws-sdk-pipes.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-pipes
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.31.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: 2024-
|
11
|
+
date: 2024-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|