Skip to content

Commit 98a5282

Browse files
author
awstools
committed
feat(client-pipes): 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.
1 parent 0bfe6e2 commit 98a5282

File tree

2 files changed

+52
-52
lines changed

2 files changed

+52
-52
lines changed

clients/client-pipes/src/models/models_0.ts

+21-21
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ export interface PipeSourceDynamoDBStreamParameters {
829829
DeadLetterConfig?: DeadLetterConfig;
830830

831831
/**
832-
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
832+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
833833
* until all the records are processed or there is one failed message left in the batch.</p>
834834
* @public
835835
*/
@@ -842,27 +842,27 @@ export interface PipeSourceDynamoDBStreamParameters {
842842
MaximumBatchingWindowInSeconds?: number;
843843

844844
/**
845-
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
845+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
846846
* When the value is set to infinite, EventBridge never discards old records. </p>
847847
* @public
848848
*/
849849
MaximumRecordAgeInSeconds?: number;
850850

851851
/**
852-
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
852+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
853853
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
854854
* @public
855855
*/
856856
MaximumRetryAttempts?: number;
857857

858858
/**
859-
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
859+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
860860
* @public
861861
*/
862862
ParallelizationFactor?: number;
863863

864864
/**
865-
* <p>(Streams only) The position in a stream from which to start reading.</p>
865+
* <p>The position in a stream from which to start reading.</p>
866866
* @public
867867
*/
868868
StartingPosition: DynamoDBStreamStartPosition | undefined;
@@ -929,7 +929,7 @@ export interface PipeSourceKinesisStreamParameters {
929929
DeadLetterConfig?: DeadLetterConfig;
930930

931931
/**
932-
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
932+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
933933
* until all the records are processed or there is one failed message left in the batch.</p>
934934
* @public
935935
*/
@@ -942,27 +942,27 @@ export interface PipeSourceKinesisStreamParameters {
942942
MaximumBatchingWindowInSeconds?: number;
943943

944944
/**
945-
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
945+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
946946
* When the value is set to infinite, EventBridge never discards old records. </p>
947947
* @public
948948
*/
949949
MaximumRecordAgeInSeconds?: number;
950950

951951
/**
952-
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
952+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
953953
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
954954
* @public
955955
*/
956956
MaximumRetryAttempts?: number;
957957

958958
/**
959-
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
959+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
960960
* @public
961961
*/
962962
ParallelizationFactor?: number;
963963

964964
/**
965-
* <p>(Streams only) The position in a stream from which to start reading.</p>
965+
* <p>The position in a stream from which to start reading.</p>
966966
* @public
967967
*/
968968
StartingPosition: KinesisStreamStartPosition | undefined;
@@ -1057,7 +1057,7 @@ export interface PipeSourceManagedStreamingKafkaParameters {
10571057
TopicName: string | undefined;
10581058

10591059
/**
1060-
* <p>(Streams only) The position in a stream from which to start reading.</p>
1060+
* <p>The position in a stream from which to start reading.</p>
10611061
* @public
10621062
*/
10631063
StartingPosition?: MSKStartPosition;
@@ -1267,7 +1267,7 @@ export interface PipeSourceSelfManagedKafkaParameters {
12671267
TopicName: string | undefined;
12681268

12691269
/**
1270-
* <p>(Streams only) The position in a stream from which to start reading.</p>
1270+
* <p>The position in a stream from which to start reading.</p>
12711271
* @public
12721272
*/
12731273
StartingPosition?: SelfManagedKafkaStartPosition;
@@ -2505,7 +2505,7 @@ export interface PipeTargetTimestreamParameters {
25052505

25062506
/**
25072507
* <p>How to format the timestamps. For example,
2508-
* <code>YYYY-MM-DDThh:mm:ss.sssTZD</code>.</p>
2508+
* <code>yyyy-MM-dd'T'HH:mm:ss'Z'</code>.</p>
25092509
* <p>Required if <code>TimeFieldType</code> is specified as
25102510
* <code>TIMESTAMP_FORMAT</code>.</p>
25112511
* @public
@@ -3573,7 +3573,7 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
35733573
DeadLetterConfig?: DeadLetterConfig;
35743574

35753575
/**
3576-
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
3576+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
35773577
* until all the records are processed or there is one failed message left in the batch.</p>
35783578
* @public
35793579
*/
@@ -3586,21 +3586,21 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
35863586
MaximumBatchingWindowInSeconds?: number;
35873587

35883588
/**
3589-
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
3589+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
35903590
* When the value is set to infinite, EventBridge never discards old records. </p>
35913591
* @public
35923592
*/
35933593
MaximumRecordAgeInSeconds?: number;
35943594

35953595
/**
3596-
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
3596+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
35973597
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
35983598
* @public
35993599
*/
36003600
MaximumRetryAttempts?: number;
36013601

36023602
/**
3603-
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
3603+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
36043604
* @public
36053605
*/
36063606
ParallelizationFactor?: number;
@@ -3624,7 +3624,7 @@ export interface UpdatePipeSourceKinesisStreamParameters {
36243624
DeadLetterConfig?: DeadLetterConfig;
36253625

36263626
/**
3627-
* <p>(Streams only) Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
3627+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
36283628
* until all the records are processed or there is one failed message left in the batch.</p>
36293629
* @public
36303630
*/
@@ -3637,21 +3637,21 @@ export interface UpdatePipeSourceKinesisStreamParameters {
36373637
MaximumBatchingWindowInSeconds?: number;
36383638

36393639
/**
3640-
* <p>(Streams only) Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
3640+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
36413641
* When the value is set to infinite, EventBridge never discards old records. </p>
36423642
* @public
36433643
*/
36443644
MaximumRecordAgeInSeconds?: number;
36453645

36463646
/**
3647-
* <p>(Streams only) Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
3647+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
36483648
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
36493649
* @public
36503650
*/
36513651
MaximumRetryAttempts?: number;
36523652

36533653
/**
3654-
* <p>(Streams only) The number of batches to process concurrently from each shard. The default value is 1.</p>
3654+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
36553655
* @public
36563656
*/
36573657
ParallelizationFactor?: number;

0 commit comments

Comments
 (0)