@aws-sdk/client-pipes 3.670.0 → 3.675.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.
|
@@ -741,7 +741,7 @@ export interface PipeSourceDynamoDBStreamParameters {
|
|
|
741
741
|
*/
|
|
742
742
|
DeadLetterConfig?: DeadLetterConfig;
|
|
743
743
|
/**
|
|
744
|
-
* <p>
|
|
744
|
+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
745
745
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
@@ -752,24 +752,24 @@ export interface PipeSourceDynamoDBStreamParameters {
|
|
|
752
752
|
*/
|
|
753
753
|
MaximumBatchingWindowInSeconds?: number;
|
|
754
754
|
/**
|
|
755
|
-
* <p>
|
|
755
|
+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
756
756
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
759
|
MaximumRecordAgeInSeconds?: number;
|
|
760
760
|
/**
|
|
761
|
-
* <p>
|
|
761
|
+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
762
762
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
765
|
MaximumRetryAttempts?: number;
|
|
766
766
|
/**
|
|
767
|
-
* <p>
|
|
767
|
+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
770
|
ParallelizationFactor?: number;
|
|
771
771
|
/**
|
|
772
|
-
* <p>
|
|
772
|
+
* <p>The position in a stream from which to start reading.</p>
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
775
|
StartingPosition: DynamoDBStreamStartPosition | undefined;
|
|
@@ -829,7 +829,7 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
829
829
|
*/
|
|
830
830
|
DeadLetterConfig?: DeadLetterConfig;
|
|
831
831
|
/**
|
|
832
|
-
* <p>
|
|
832
|
+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
833
833
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
834
834
|
* @public
|
|
835
835
|
*/
|
|
@@ -840,24 +840,24 @@ export interface PipeSourceKinesisStreamParameters {
|
|
|
840
840
|
*/
|
|
841
841
|
MaximumBatchingWindowInSeconds?: number;
|
|
842
842
|
/**
|
|
843
|
-
* <p>
|
|
843
|
+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
844
844
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
847
|
MaximumRecordAgeInSeconds?: number;
|
|
848
848
|
/**
|
|
849
|
-
* <p>
|
|
849
|
+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
850
850
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
853
|
MaximumRetryAttempts?: number;
|
|
854
854
|
/**
|
|
855
|
-
* <p>
|
|
855
|
+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
858
|
ParallelizationFactor?: number;
|
|
859
859
|
/**
|
|
860
|
-
* <p>
|
|
860
|
+
* <p>The position in a stream from which to start reading.</p>
|
|
861
861
|
* @public
|
|
862
862
|
*/
|
|
863
863
|
StartingPosition: KinesisStreamStartPosition | undefined;
|
|
@@ -933,7 +933,7 @@ export interface PipeSourceManagedStreamingKafkaParameters {
|
|
|
933
933
|
*/
|
|
934
934
|
TopicName: string | undefined;
|
|
935
935
|
/**
|
|
936
|
-
* <p>
|
|
936
|
+
* <p>The position in a stream from which to start reading.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
939
|
StartingPosition?: MSKStartPosition;
|
|
@@ -1107,7 +1107,7 @@ export interface PipeSourceSelfManagedKafkaParameters {
|
|
|
1107
1107
|
*/
|
|
1108
1108
|
TopicName: string | undefined;
|
|
1109
1109
|
/**
|
|
1110
|
-
* <p>
|
|
1110
|
+
* <p>The position in a stream from which to start reading.</p>
|
|
1111
1111
|
* @public
|
|
1112
1112
|
*/
|
|
1113
1113
|
StartingPosition?: SelfManagedKafkaStartPosition;
|
|
@@ -2214,7 +2214,7 @@ export interface PipeTargetTimestreamParameters {
|
|
|
2214
2214
|
TimeFieldType?: TimeFieldType;
|
|
2215
2215
|
/**
|
|
2216
2216
|
* <p>How to format the timestamps. For example,
|
|
2217
|
-
* <code>
|
|
2217
|
+
* <code>yyyy-MM-dd'T'HH:mm:ss'Z'</code>.</p>
|
|
2218
2218
|
* <p>Required if <code>TimeFieldType</code> is specified as
|
|
2219
2219
|
* <code>TIMESTAMP_FORMAT</code>.</p>
|
|
2220
2220
|
* @public
|
|
@@ -3104,7 +3104,7 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
|
3104
3104
|
*/
|
|
3105
3105
|
DeadLetterConfig?: DeadLetterConfig;
|
|
3106
3106
|
/**
|
|
3107
|
-
* <p>
|
|
3107
|
+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
3108
3108
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
3109
3109
|
* @public
|
|
3110
3110
|
*/
|
|
@@ -3115,19 +3115,19 @@ export interface UpdatePipeSourceDynamoDBStreamParameters {
|
|
|
3115
3115
|
*/
|
|
3116
3116
|
MaximumBatchingWindowInSeconds?: number;
|
|
3117
3117
|
/**
|
|
3118
|
-
* <p>
|
|
3118
|
+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
3119
3119
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
3120
3120
|
* @public
|
|
3121
3121
|
*/
|
|
3122
3122
|
MaximumRecordAgeInSeconds?: number;
|
|
3123
3123
|
/**
|
|
3124
|
-
* <p>
|
|
3124
|
+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
3125
3125
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
3126
3126
|
* @public
|
|
3127
3127
|
*/
|
|
3128
3128
|
MaximumRetryAttempts?: number;
|
|
3129
3129
|
/**
|
|
3130
|
-
* <p>
|
|
3130
|
+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
3133
|
ParallelizationFactor?: number;
|
|
@@ -3148,7 +3148,7 @@ export interface UpdatePipeSourceKinesisStreamParameters {
|
|
|
3148
3148
|
*/
|
|
3149
3149
|
DeadLetterConfig?: DeadLetterConfig;
|
|
3150
3150
|
/**
|
|
3151
|
-
* <p>
|
|
3151
|
+
* <p>Define how to handle item process failures. <code>AUTOMATIC_BISECT</code> halves each batch and retry each half
|
|
3152
3152
|
* until all the records are processed or there is one failed message left in the batch.</p>
|
|
3153
3153
|
* @public
|
|
3154
3154
|
*/
|
|
@@ -3159,19 +3159,19 @@ export interface UpdatePipeSourceKinesisStreamParameters {
|
|
|
3159
3159
|
*/
|
|
3160
3160
|
MaximumBatchingWindowInSeconds?: number;
|
|
3161
3161
|
/**
|
|
3162
|
-
* <p>
|
|
3162
|
+
* <p>Discard records older than the specified age. The default value is -1, which sets the maximum age to infinite.
|
|
3163
3163
|
* When the value is set to infinite, EventBridge never discards old records. </p>
|
|
3164
3164
|
* @public
|
|
3165
3165
|
*/
|
|
3166
3166
|
MaximumRecordAgeInSeconds?: number;
|
|
3167
3167
|
/**
|
|
3168
|
-
* <p>
|
|
3168
|
+
* <p>Discard records after the specified number of retries. The default value is -1, which sets the maximum number of
|
|
3169
3169
|
* retries to infinite. When MaximumRetryAttempts is infinite, EventBridge retries failed records until the record expires in the event source.</p>
|
|
3170
3170
|
* @public
|
|
3171
3171
|
*/
|
|
3172
3172
|
MaximumRetryAttempts?: number;
|
|
3173
3173
|
/**
|
|
3174
|
-
* <p>
|
|
3174
|
+
* <p>The number of batches to process concurrently from each shard. The default value is 1.</p>
|
|
3175
3175
|
* @public
|
|
3176
3176
|
*/
|
|
3177
3177
|
ParallelizationFactor?: number;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
-
defaultUserAgentProvider: (config
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
14
14
|
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
-
defaultUserAgentProvider: (config
|
|
23
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
24
24
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
25
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
26
26
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -10,7 +10,9 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
10
10
|
input: any
|
|
11
11
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
12
|
defaultUserAgentProvider: (
|
|
13
|
-
config
|
|
13
|
+
config?:
|
|
14
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
15
|
+
| undefined
|
|
14
16
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
15
17
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
16
18
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -23,7 +23,9 @@ export declare const getRuntimeConfig: (config: PipesClientConfig) => {
|
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
25
|
defaultUserAgentProvider: (
|
|
26
|
-
config
|
|
26
|
+
config?:
|
|
27
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
28
|
+
| undefined
|
|
27
29
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
28
30
|
credentialDefaultProvider: (
|
|
29
31
|
input: any
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pipes",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pipes Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.675.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-pipes",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.675.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.675.0",
|
|
25
25
|
"@aws-sdk/core": "3.667.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.675.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.667.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.667.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.667.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.667.0",
|
|
32
32
|
"@aws-sdk/types": "3.667.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.667.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.675.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.669.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.9",
|
|
37
37
|
"@smithy/core": "^2.4.8",
|