@aws-sdk/client-pipes 3.300.0 → 3.301.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.
@@ -26,22 +26,22 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
26
26
  * import { PipesClient, CreatePipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, CreatePipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // CreatePipeRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * Description: "STRING_VALUE",
32
32
  * DesiredState: "STRING_VALUE",
33
33
  * Source: "STRING_VALUE", // required
34
- * SourceParameters: {
35
- * FilterCriteria: {
36
- * Filters: [
37
- * {
34
+ * SourceParameters: { // PipeSourceParameters
35
+ * FilterCriteria: { // FilterCriteria
36
+ * Filters: [ // FilterList
37
+ * { // Filter
38
38
  * Pattern: "STRING_VALUE",
39
39
  * },
40
40
  * ],
41
41
  * },
42
- * KinesisStreamParameters: {
42
+ * KinesisStreamParameters: { // PipeSourceKinesisStreamParameters
43
43
  * BatchSize: Number("int"),
44
- * DeadLetterConfig: {
44
+ * DeadLetterConfig: { // DeadLetterConfig
45
45
  * Arn: "STRING_VALUE",
46
46
  * },
47
47
  * OnPartialBatchItemFailure: "STRING_VALUE",
@@ -52,7 +52,7 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
52
52
  * StartingPosition: "STRING_VALUE", // required
53
53
  * StartingPositionTimestamp: new Date("TIMESTAMP"),
54
54
  * },
55
- * DynamoDBStreamParameters: {
55
+ * DynamoDBStreamParameters: { // PipeSourceDynamoDBStreamParameters
56
56
  * BatchSize: Number("int"),
57
57
  * DeadLetterConfig: {
58
58
  * Arn: "STRING_VALUE",
@@ -64,20 +64,20 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
64
64
  * ParallelizationFactor: Number("int"),
65
65
  * StartingPosition: "STRING_VALUE", // required
66
66
  * },
67
- * SqsQueueParameters: {
67
+ * SqsQueueParameters: { // PipeSourceSqsQueueParameters
68
68
  * BatchSize: Number("int"),
69
69
  * MaximumBatchingWindowInSeconds: Number("int"),
70
70
  * },
71
- * ActiveMQBrokerParameters: {
72
- * Credentials: { // Union: only one key present
71
+ * ActiveMQBrokerParameters: { // PipeSourceActiveMQBrokerParameters
72
+ * Credentials: { // MQBrokerAccessCredentials Union: only one key present
73
73
  * BasicAuth: "STRING_VALUE",
74
74
  * },
75
75
  * QueueName: "STRING_VALUE", // required
76
76
  * BatchSize: Number("int"),
77
77
  * MaximumBatchingWindowInSeconds: Number("int"),
78
78
  * },
79
- * RabbitMQBrokerParameters: {
80
- * Credentials: { // Union: only one key present
79
+ * RabbitMQBrokerParameters: { // PipeSourceRabbitMQBrokerParameters
80
+ * Credentials: {// Union: only one key present
81
81
  * BasicAuth: "STRING_VALUE",
82
82
  * },
83
83
  * QueueName: "STRING_VALUE", // required
@@ -85,80 +85,80 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
85
85
  * BatchSize: Number("int"),
86
86
  * MaximumBatchingWindowInSeconds: Number("int"),
87
87
  * },
88
- * ManagedStreamingKafkaParameters: {
88
+ * ManagedStreamingKafkaParameters: { // PipeSourceManagedStreamingKafkaParameters
89
89
  * TopicName: "STRING_VALUE", // required
90
90
  * StartingPosition: "STRING_VALUE",
91
91
  * BatchSize: Number("int"),
92
92
  * MaximumBatchingWindowInSeconds: Number("int"),
93
93
  * ConsumerGroupID: "STRING_VALUE",
94
- * Credentials: { // Union: only one key present
94
+ * Credentials: { // MSKAccessCredentials Union: only one key present
95
95
  * SaslScram512Auth: "STRING_VALUE",
96
96
  * ClientCertificateTlsAuth: "STRING_VALUE",
97
97
  * },
98
98
  * },
99
- * SelfManagedKafkaParameters: {
99
+ * SelfManagedKafkaParameters: { // PipeSourceSelfManagedKafkaParameters
100
100
  * TopicName: "STRING_VALUE", // required
101
101
  * StartingPosition: "STRING_VALUE",
102
- * AdditionalBootstrapServers: [
102
+ * AdditionalBootstrapServers: [ // KafkaBootstrapServers
103
103
  * "STRING_VALUE",
104
104
  * ],
105
105
  * BatchSize: Number("int"),
106
106
  * MaximumBatchingWindowInSeconds: Number("int"),
107
107
  * ConsumerGroupID: "STRING_VALUE",
108
- * Credentials: { // Union: only one key present
108
+ * Credentials: { // SelfManagedKafkaAccessConfigurationCredentials Union: only one key present
109
109
  * BasicAuth: "STRING_VALUE",
110
110
  * SaslScram512Auth: "STRING_VALUE",
111
111
  * SaslScram256Auth: "STRING_VALUE",
112
112
  * ClientCertificateTlsAuth: "STRING_VALUE",
113
113
  * },
114
114
  * ServerRootCaCertificate: "STRING_VALUE",
115
- * Vpc: {
116
- * Subnets: [
115
+ * Vpc: { // SelfManagedKafkaAccessConfigurationVpc
116
+ * Subnets: [ // SubnetIds
117
117
  * "STRING_VALUE",
118
118
  * ],
119
- * SecurityGroup: [
119
+ * SecurityGroup: [ // SecurityGroupIds
120
120
  * "STRING_VALUE",
121
121
  * ],
122
122
  * },
123
123
  * },
124
124
  * },
125
125
  * Enrichment: "STRING_VALUE",
126
- * EnrichmentParameters: {
126
+ * EnrichmentParameters: { // PipeEnrichmentParameters
127
127
  * InputTemplate: "STRING_VALUE",
128
- * HttpParameters: {
129
- * PathParameterValues: [
128
+ * HttpParameters: { // PipeEnrichmentHttpParameters
129
+ * PathParameterValues: [ // PathParameterList
130
130
  * "STRING_VALUE",
131
131
  * ],
132
- * HeaderParameters: {
132
+ * HeaderParameters: { // HeaderParametersMap
133
133
  * "<keys>": "STRING_VALUE",
134
134
  * },
135
- * QueryStringParameters: {
135
+ * QueryStringParameters: { // QueryStringParametersMap
136
136
  * "<keys>": "STRING_VALUE",
137
137
  * },
138
138
  * },
139
139
  * },
140
140
  * Target: "STRING_VALUE", // required
141
- * TargetParameters: {
141
+ * TargetParameters: { // PipeTargetParameters
142
142
  * InputTemplate: "STRING_VALUE",
143
- * LambdaFunctionParameters: {
143
+ * LambdaFunctionParameters: { // PipeTargetLambdaFunctionParameters
144
144
  * InvocationType: "STRING_VALUE",
145
145
  * },
146
- * StepFunctionStateMachineParameters: {
146
+ * StepFunctionStateMachineParameters: { // PipeTargetStateMachineParameters
147
147
  * InvocationType: "STRING_VALUE",
148
148
  * },
149
- * KinesisStreamParameters: {
149
+ * KinesisStreamParameters: { // PipeTargetKinesisStreamParameters
150
150
  * PartitionKey: "STRING_VALUE", // required
151
151
  * },
152
- * EcsTaskParameters: {
152
+ * EcsTaskParameters: { // PipeTargetEcsTaskParameters
153
153
  * TaskDefinitionArn: "STRING_VALUE", // required
154
154
  * TaskCount: Number("int"),
155
155
  * LaunchType: "STRING_VALUE",
156
- * NetworkConfiguration: {
157
- * awsvpcConfiguration: {
158
- * Subnets: [ // required
156
+ * NetworkConfiguration: { // NetworkConfiguration
157
+ * awsvpcConfiguration: { // AwsVpcConfiguration
158
+ * Subnets: [ // Subnets // required
159
159
  * "STRING_VALUE",
160
160
  * ],
161
- * SecurityGroups: [
161
+ * SecurityGroups: [ // SecurityGroups
162
162
  * "STRING_VALUE",
163
163
  * ],
164
164
  * AssignPublicIp: "STRING_VALUE",
@@ -166,8 +166,8 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
166
166
  * },
167
167
  * PlatformVersion: "STRING_VALUE",
168
168
  * Group: "STRING_VALUE",
169
- * CapacityProviderStrategy: [
170
- * {
169
+ * CapacityProviderStrategy: [ // CapacityProviderStrategy
170
+ * { // CapacityProviderStrategyItem
171
171
  * capacityProvider: "STRING_VALUE", // required
172
172
  * weight: Number("int"),
173
173
  * base: Number("int"),
@@ -175,35 +175,35 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
175
175
  * ],
176
176
  * EnableECSManagedTags: true || false,
177
177
  * EnableExecuteCommand: true || false,
178
- * PlacementConstraints: [
179
- * {
178
+ * PlacementConstraints: [ // PlacementConstraints
179
+ * { // PlacementConstraint
180
180
  * type: "STRING_VALUE",
181
181
  * expression: "STRING_VALUE",
182
182
  * },
183
183
  * ],
184
- * PlacementStrategy: [
185
- * {
184
+ * PlacementStrategy: [ // PlacementStrategies
185
+ * { // PlacementStrategy
186
186
  * type: "STRING_VALUE",
187
187
  * field: "STRING_VALUE",
188
188
  * },
189
189
  * ],
190
190
  * PropagateTags: "STRING_VALUE",
191
191
  * ReferenceId: "STRING_VALUE",
192
- * Overrides: {
193
- * ContainerOverrides: [
194
- * {
195
- * Command: [
192
+ * Overrides: { // EcsTaskOverride
193
+ * ContainerOverrides: [ // EcsContainerOverrideList
194
+ * { // EcsContainerOverride
195
+ * Command: [ // StringList
196
196
  * "STRING_VALUE",
197
197
  * ],
198
198
  * Cpu: Number("int"),
199
- * Environment: [
200
- * {
199
+ * Environment: [ // EcsEnvironmentVariableList
200
+ * { // EcsEnvironmentVariable
201
201
  * name: "STRING_VALUE",
202
202
  * value: "STRING_VALUE",
203
203
  * },
204
204
  * ],
205
- * EnvironmentFiles: [
206
- * {
205
+ * EnvironmentFiles: [ // EcsEnvironmentFileList
206
+ * { // EcsEnvironmentFile
207
207
  * type: "STRING_VALUE", // required
208
208
  * value: "STRING_VALUE", // required
209
209
  * },
@@ -211,8 +211,8 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
211
211
  * Memory: Number("int"),
212
212
  * MemoryReservation: Number("int"),
213
213
  * Name: "STRING_VALUE",
214
- * ResourceRequirements: [
215
- * {
214
+ * ResourceRequirements: [ // EcsResourceRequirementsList
215
+ * { // EcsResourceRequirement
216
216
  * type: "STRING_VALUE", // required
217
217
  * value: "STRING_VALUE", // required
218
218
  * },
@@ -220,12 +220,12 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
220
220
  * },
221
221
  * ],
222
222
  * Cpu: "STRING_VALUE",
223
- * EphemeralStorage: {
223
+ * EphemeralStorage: { // EcsEphemeralStorage
224
224
  * sizeInGiB: Number("int"), // required
225
225
  * },
226
226
  * ExecutionRoleArn: "STRING_VALUE",
227
- * InferenceAcceleratorOverrides: [
228
- * {
227
+ * InferenceAcceleratorOverrides: [ // EcsInferenceAcceleratorOverrideList
228
+ * { // EcsInferenceAcceleratorOverride
229
229
  * deviceName: "STRING_VALUE",
230
230
  * deviceType: "STRING_VALUE",
231
231
  * },
@@ -233,55 +233,55 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
233
233
  * Memory: "STRING_VALUE",
234
234
  * TaskRoleArn: "STRING_VALUE",
235
235
  * },
236
- * Tags: [
237
- * {
236
+ * Tags: [ // TagList
237
+ * { // Tag
238
238
  * Key: "STRING_VALUE", // required
239
239
  * Value: "STRING_VALUE", // required
240
240
  * },
241
241
  * ],
242
242
  * },
243
- * BatchJobParameters: {
243
+ * BatchJobParameters: { // PipeTargetBatchJobParameters
244
244
  * JobDefinition: "STRING_VALUE", // required
245
245
  * JobName: "STRING_VALUE", // required
246
- * ArrayProperties: {
246
+ * ArrayProperties: { // BatchArrayProperties
247
247
  * Size: Number("int"),
248
248
  * },
249
- * RetryStrategy: {
249
+ * RetryStrategy: { // BatchRetryStrategy
250
250
  * Attempts: Number("int"),
251
251
  * },
252
- * ContainerOverrides: {
252
+ * ContainerOverrides: { // BatchContainerOverrides
253
253
  * Command: [
254
254
  * "STRING_VALUE",
255
255
  * ],
256
- * Environment: [
257
- * {
256
+ * Environment: [ // BatchEnvironmentVariableList
257
+ * { // BatchEnvironmentVariable
258
258
  * Name: "STRING_VALUE",
259
259
  * Value: "STRING_VALUE",
260
260
  * },
261
261
  * ],
262
262
  * InstanceType: "STRING_VALUE",
263
- * ResourceRequirements: [
264
- * {
263
+ * ResourceRequirements: [ // BatchResourceRequirementsList
264
+ * { // BatchResourceRequirement
265
265
  * Type: "STRING_VALUE", // required
266
266
  * Value: "STRING_VALUE", // required
267
267
  * },
268
268
  * ],
269
269
  * },
270
- * DependsOn: [
271
- * {
270
+ * DependsOn: [ // BatchDependsOn
271
+ * { // BatchJobDependency
272
272
  * JobId: "STRING_VALUE",
273
273
  * Type: "STRING_VALUE",
274
274
  * },
275
275
  * ],
276
- * Parameters: {
276
+ * Parameters: { // BatchParametersMap
277
277
  * "<keys>": "STRING_VALUE",
278
278
  * },
279
279
  * },
280
- * SqsQueueParameters: {
280
+ * SqsQueueParameters: { // PipeTargetSqsQueueParameters
281
281
  * MessageGroupId: "STRING_VALUE",
282
282
  * MessageDeduplicationId: "STRING_VALUE",
283
283
  * },
284
- * HttpParameters: {
284
+ * HttpParameters: { // PipeTargetHttpParameters
285
285
  * PathParameterValues: [
286
286
  * "STRING_VALUE",
287
287
  * ],
@@ -292,40 +292,40 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
292
292
  * "<keys>": "STRING_VALUE",
293
293
  * },
294
294
  * },
295
- * RedshiftDataParameters: {
295
+ * RedshiftDataParameters: { // PipeTargetRedshiftDataParameters
296
296
  * SecretManagerArn: "STRING_VALUE",
297
297
  * Database: "STRING_VALUE", // required
298
298
  * DbUser: "STRING_VALUE",
299
299
  * StatementName: "STRING_VALUE",
300
300
  * WithEvent: true || false,
301
- * Sqls: [ // required
301
+ * Sqls: [ // Sqls // required
302
302
  * "STRING_VALUE",
303
303
  * ],
304
304
  * },
305
- * SageMakerPipelineParameters: {
306
- * PipelineParameterList: [
307
- * {
305
+ * SageMakerPipelineParameters: { // PipeTargetSageMakerPipelineParameters
306
+ * PipelineParameterList: [ // SageMakerPipelineParameterList
307
+ * { // SageMakerPipelineParameter
308
308
  * Name: "STRING_VALUE", // required
309
309
  * Value: "STRING_VALUE", // required
310
310
  * },
311
311
  * ],
312
312
  * },
313
- * EventBridgeEventBusParameters: {
313
+ * EventBridgeEventBusParameters: { // PipeTargetEventBridgeEventBusParameters
314
314
  * EndpointId: "STRING_VALUE",
315
315
  * DetailType: "STRING_VALUE",
316
316
  * Source: "STRING_VALUE",
317
- * Resources: [
317
+ * Resources: [ // EventBridgeEventResourceList
318
318
  * "STRING_VALUE",
319
319
  * ],
320
320
  * Time: "STRING_VALUE",
321
321
  * },
322
- * CloudWatchLogsParameters: {
322
+ * CloudWatchLogsParameters: { // PipeTargetCloudWatchLogsParameters
323
323
  * LogStreamName: "STRING_VALUE",
324
324
  * Timestamp: "STRING_VALUE",
325
325
  * },
326
326
  * },
327
327
  * RoleArn: "STRING_VALUE", // required
328
- * Tags: {
328
+ * Tags: { // TagMap
329
329
  * "<keys>": "STRING_VALUE",
330
330
  * },
331
331
  * };
@@ -26,7 +26,7 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB
26
26
  * import { PipesClient, DeletePipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, DeletePipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // DeletePipeRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeletePipeCommand(input);
@@ -26,7 +26,7 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad
26
26
  * import { PipesClient, DescribePipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, DescribePipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // DescribePipeRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribePipeCommand(input);
@@ -26,7 +26,7 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea
26
26
  * import { PipesClient, ListPipesCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, ListPipesCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // ListPipesRequest
30
30
  * NamePrefix: "STRING_VALUE",
31
31
  * DesiredState: "STRING_VALUE",
32
32
  * CurrentState: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { PipesClient, ListTagsForResourceCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, ListTagsForResourceCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea
26
26
  * import { PipesClient, StartPipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, StartPipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // StartPipeRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StartPipeCommand(input);
@@ -26,7 +26,7 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare
26
26
  * import { PipesClient, StopPipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, StopPipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // StopPipeRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StopPipeCommand(input);
@@ -36,9 +36,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
36
36
  * import { PipesClient, TagResourceCommand } from "@aws-sdk/client-pipes"; // ES Modules import
37
37
  * // const { PipesClient, TagResourceCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
38
38
  * const client = new PipesClient(config);
39
- * const input = {
39
+ * const input = { // TagResourceRequest
40
40
  * resourceArn: "STRING_VALUE", // required
41
- * tags: { // required
41
+ * tags: { // TagMap // required
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { PipesClient, UntagResourceCommand } from "@aws-sdk/client-pipes"; // ES Modules import
27
27
  * // const { PipesClient, UntagResourceCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
28
28
  * const client = new PipesClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -31,21 +31,21 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
31
31
  * import { PipesClient, UpdatePipeCommand } from "@aws-sdk/client-pipes"; // ES Modules import
32
32
  * // const { PipesClient, UpdatePipeCommand } = require("@aws-sdk/client-pipes"); // CommonJS import
33
33
  * const client = new PipesClient(config);
34
- * const input = {
34
+ * const input = { // UpdatePipeRequest
35
35
  * Name: "STRING_VALUE", // required
36
36
  * Description: "STRING_VALUE",
37
37
  * DesiredState: "STRING_VALUE",
38
- * SourceParameters: {
39
- * FilterCriteria: {
40
- * Filters: [
41
- * {
38
+ * SourceParameters: { // UpdatePipeSourceParameters
39
+ * FilterCriteria: { // FilterCriteria
40
+ * Filters: [ // FilterList
41
+ * { // Filter
42
42
  * Pattern: "STRING_VALUE",
43
43
  * },
44
44
  * ],
45
45
  * },
46
- * KinesisStreamParameters: {
46
+ * KinesisStreamParameters: { // UpdatePipeSourceKinesisStreamParameters
47
47
  * BatchSize: Number("int"),
48
- * DeadLetterConfig: {
48
+ * DeadLetterConfig: { // DeadLetterConfig
49
49
  * Arn: "STRING_VALUE",
50
50
  * },
51
51
  * OnPartialBatchItemFailure: "STRING_VALUE",
@@ -54,7 +54,7 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
54
54
  * MaximumRetryAttempts: Number("int"),
55
55
  * ParallelizationFactor: Number("int"),
56
56
  * },
57
- * DynamoDBStreamParameters: {
57
+ * DynamoDBStreamParameters: { // UpdatePipeSourceDynamoDBStreamParameters
58
58
  * BatchSize: Number("int"),
59
59
  * DeadLetterConfig: {
60
60
  * Arn: "STRING_VALUE",
@@ -65,89 +65,89 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
65
65
  * MaximumRetryAttempts: Number("int"),
66
66
  * ParallelizationFactor: Number("int"),
67
67
  * },
68
- * SqsQueueParameters: {
68
+ * SqsQueueParameters: { // UpdatePipeSourceSqsQueueParameters
69
69
  * BatchSize: Number("int"),
70
70
  * MaximumBatchingWindowInSeconds: Number("int"),
71
71
  * },
72
- * ActiveMQBrokerParameters: {
73
- * Credentials: { // Union: only one key present
72
+ * ActiveMQBrokerParameters: { // UpdatePipeSourceActiveMQBrokerParameters
73
+ * Credentials: { // MQBrokerAccessCredentials Union: only one key present
74
74
  * BasicAuth: "STRING_VALUE",
75
75
  * },
76
76
  * BatchSize: Number("int"),
77
77
  * MaximumBatchingWindowInSeconds: Number("int"),
78
78
  * },
79
- * RabbitMQBrokerParameters: {
80
- * Credentials: { // Union: only one key present
79
+ * RabbitMQBrokerParameters: { // UpdatePipeSourceRabbitMQBrokerParameters
80
+ * Credentials: {// Union: only one key present
81
81
  * BasicAuth: "STRING_VALUE",
82
82
  * },
83
83
  * BatchSize: Number("int"),
84
84
  * MaximumBatchingWindowInSeconds: Number("int"),
85
85
  * },
86
- * ManagedStreamingKafkaParameters: {
86
+ * ManagedStreamingKafkaParameters: { // UpdatePipeSourceManagedStreamingKafkaParameters
87
87
  * BatchSize: Number("int"),
88
- * Credentials: { // Union: only one key present
88
+ * Credentials: { // MSKAccessCredentials Union: only one key present
89
89
  * SaslScram512Auth: "STRING_VALUE",
90
90
  * ClientCertificateTlsAuth: "STRING_VALUE",
91
91
  * },
92
92
  * MaximumBatchingWindowInSeconds: Number("int"),
93
93
  * },
94
- * SelfManagedKafkaParameters: {
94
+ * SelfManagedKafkaParameters: { // UpdatePipeSourceSelfManagedKafkaParameters
95
95
  * BatchSize: Number("int"),
96
96
  * MaximumBatchingWindowInSeconds: Number("int"),
97
- * Credentials: { // Union: only one key present
97
+ * Credentials: { // SelfManagedKafkaAccessConfigurationCredentials Union: only one key present
98
98
  * BasicAuth: "STRING_VALUE",
99
99
  * SaslScram512Auth: "STRING_VALUE",
100
100
  * SaslScram256Auth: "STRING_VALUE",
101
101
  * ClientCertificateTlsAuth: "STRING_VALUE",
102
102
  * },
103
103
  * ServerRootCaCertificate: "STRING_VALUE",
104
- * Vpc: {
105
- * Subnets: [
104
+ * Vpc: { // SelfManagedKafkaAccessConfigurationVpc
105
+ * Subnets: [ // SubnetIds
106
106
  * "STRING_VALUE",
107
107
  * ],
108
- * SecurityGroup: [
108
+ * SecurityGroup: [ // SecurityGroupIds
109
109
  * "STRING_VALUE",
110
110
  * ],
111
111
  * },
112
112
  * },
113
113
  * },
114
114
  * Enrichment: "STRING_VALUE",
115
- * EnrichmentParameters: {
115
+ * EnrichmentParameters: { // PipeEnrichmentParameters
116
116
  * InputTemplate: "STRING_VALUE",
117
- * HttpParameters: {
118
- * PathParameterValues: [
117
+ * HttpParameters: { // PipeEnrichmentHttpParameters
118
+ * PathParameterValues: [ // PathParameterList
119
119
  * "STRING_VALUE",
120
120
  * ],
121
- * HeaderParameters: {
121
+ * HeaderParameters: { // HeaderParametersMap
122
122
  * "<keys>": "STRING_VALUE",
123
123
  * },
124
- * QueryStringParameters: {
124
+ * QueryStringParameters: { // QueryStringParametersMap
125
125
  * "<keys>": "STRING_VALUE",
126
126
  * },
127
127
  * },
128
128
  * },
129
129
  * Target: "STRING_VALUE",
130
- * TargetParameters: {
130
+ * TargetParameters: { // PipeTargetParameters
131
131
  * InputTemplate: "STRING_VALUE",
132
- * LambdaFunctionParameters: {
132
+ * LambdaFunctionParameters: { // PipeTargetLambdaFunctionParameters
133
133
  * InvocationType: "STRING_VALUE",
134
134
  * },
135
- * StepFunctionStateMachineParameters: {
135
+ * StepFunctionStateMachineParameters: { // PipeTargetStateMachineParameters
136
136
  * InvocationType: "STRING_VALUE",
137
137
  * },
138
- * KinesisStreamParameters: {
138
+ * KinesisStreamParameters: { // PipeTargetKinesisStreamParameters
139
139
  * PartitionKey: "STRING_VALUE", // required
140
140
  * },
141
- * EcsTaskParameters: {
141
+ * EcsTaskParameters: { // PipeTargetEcsTaskParameters
142
142
  * TaskDefinitionArn: "STRING_VALUE", // required
143
143
  * TaskCount: Number("int"),
144
144
  * LaunchType: "STRING_VALUE",
145
- * NetworkConfiguration: {
146
- * awsvpcConfiguration: {
147
- * Subnets: [ // required
145
+ * NetworkConfiguration: { // NetworkConfiguration
146
+ * awsvpcConfiguration: { // AwsVpcConfiguration
147
+ * Subnets: [ // Subnets // required
148
148
  * "STRING_VALUE",
149
149
  * ],
150
- * SecurityGroups: [
150
+ * SecurityGroups: [ // SecurityGroups
151
151
  * "STRING_VALUE",
152
152
  * ],
153
153
  * AssignPublicIp: "STRING_VALUE",
@@ -155,8 +155,8 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
155
155
  * },
156
156
  * PlatformVersion: "STRING_VALUE",
157
157
  * Group: "STRING_VALUE",
158
- * CapacityProviderStrategy: [
159
- * {
158
+ * CapacityProviderStrategy: [ // CapacityProviderStrategy
159
+ * { // CapacityProviderStrategyItem
160
160
  * capacityProvider: "STRING_VALUE", // required
161
161
  * weight: Number("int"),
162
162
  * base: Number("int"),
@@ -164,35 +164,35 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
164
164
  * ],
165
165
  * EnableECSManagedTags: true || false,
166
166
  * EnableExecuteCommand: true || false,
167
- * PlacementConstraints: [
168
- * {
167
+ * PlacementConstraints: [ // PlacementConstraints
168
+ * { // PlacementConstraint
169
169
  * type: "STRING_VALUE",
170
170
  * expression: "STRING_VALUE",
171
171
  * },
172
172
  * ],
173
- * PlacementStrategy: [
174
- * {
173
+ * PlacementStrategy: [ // PlacementStrategies
174
+ * { // PlacementStrategy
175
175
  * type: "STRING_VALUE",
176
176
  * field: "STRING_VALUE",
177
177
  * },
178
178
  * ],
179
179
  * PropagateTags: "STRING_VALUE",
180
180
  * ReferenceId: "STRING_VALUE",
181
- * Overrides: {
182
- * ContainerOverrides: [
183
- * {
184
- * Command: [
181
+ * Overrides: { // EcsTaskOverride
182
+ * ContainerOverrides: [ // EcsContainerOverrideList
183
+ * { // EcsContainerOverride
184
+ * Command: [ // StringList
185
185
  * "STRING_VALUE",
186
186
  * ],
187
187
  * Cpu: Number("int"),
188
- * Environment: [
189
- * {
188
+ * Environment: [ // EcsEnvironmentVariableList
189
+ * { // EcsEnvironmentVariable
190
190
  * name: "STRING_VALUE",
191
191
  * value: "STRING_VALUE",
192
192
  * },
193
193
  * ],
194
- * EnvironmentFiles: [
195
- * {
194
+ * EnvironmentFiles: [ // EcsEnvironmentFileList
195
+ * { // EcsEnvironmentFile
196
196
  * type: "STRING_VALUE", // required
197
197
  * value: "STRING_VALUE", // required
198
198
  * },
@@ -200,8 +200,8 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
200
200
  * Memory: Number("int"),
201
201
  * MemoryReservation: Number("int"),
202
202
  * Name: "STRING_VALUE",
203
- * ResourceRequirements: [
204
- * {
203
+ * ResourceRequirements: [ // EcsResourceRequirementsList
204
+ * { // EcsResourceRequirement
205
205
  * type: "STRING_VALUE", // required
206
206
  * value: "STRING_VALUE", // required
207
207
  * },
@@ -209,12 +209,12 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
209
209
  * },
210
210
  * ],
211
211
  * Cpu: "STRING_VALUE",
212
- * EphemeralStorage: {
212
+ * EphemeralStorage: { // EcsEphemeralStorage
213
213
  * sizeInGiB: Number("int"), // required
214
214
  * },
215
215
  * ExecutionRoleArn: "STRING_VALUE",
216
- * InferenceAcceleratorOverrides: [
217
- * {
216
+ * InferenceAcceleratorOverrides: [ // EcsInferenceAcceleratorOverrideList
217
+ * { // EcsInferenceAcceleratorOverride
218
218
  * deviceName: "STRING_VALUE",
219
219
  * deviceType: "STRING_VALUE",
220
220
  * },
@@ -222,55 +222,55 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
222
222
  * Memory: "STRING_VALUE",
223
223
  * TaskRoleArn: "STRING_VALUE",
224
224
  * },
225
- * Tags: [
226
- * {
225
+ * Tags: [ // TagList
226
+ * { // Tag
227
227
  * Key: "STRING_VALUE", // required
228
228
  * Value: "STRING_VALUE", // required
229
229
  * },
230
230
  * ],
231
231
  * },
232
- * BatchJobParameters: {
232
+ * BatchJobParameters: { // PipeTargetBatchJobParameters
233
233
  * JobDefinition: "STRING_VALUE", // required
234
234
  * JobName: "STRING_VALUE", // required
235
- * ArrayProperties: {
235
+ * ArrayProperties: { // BatchArrayProperties
236
236
  * Size: Number("int"),
237
237
  * },
238
- * RetryStrategy: {
238
+ * RetryStrategy: { // BatchRetryStrategy
239
239
  * Attempts: Number("int"),
240
240
  * },
241
- * ContainerOverrides: {
241
+ * ContainerOverrides: { // BatchContainerOverrides
242
242
  * Command: [
243
243
  * "STRING_VALUE",
244
244
  * ],
245
- * Environment: [
246
- * {
245
+ * Environment: [ // BatchEnvironmentVariableList
246
+ * { // BatchEnvironmentVariable
247
247
  * Name: "STRING_VALUE",
248
248
  * Value: "STRING_VALUE",
249
249
  * },
250
250
  * ],
251
251
  * InstanceType: "STRING_VALUE",
252
- * ResourceRequirements: [
253
- * {
252
+ * ResourceRequirements: [ // BatchResourceRequirementsList
253
+ * { // BatchResourceRequirement
254
254
  * Type: "STRING_VALUE", // required
255
255
  * Value: "STRING_VALUE", // required
256
256
  * },
257
257
  * ],
258
258
  * },
259
- * DependsOn: [
260
- * {
259
+ * DependsOn: [ // BatchDependsOn
260
+ * { // BatchJobDependency
261
261
  * JobId: "STRING_VALUE",
262
262
  * Type: "STRING_VALUE",
263
263
  * },
264
264
  * ],
265
- * Parameters: {
265
+ * Parameters: { // BatchParametersMap
266
266
  * "<keys>": "STRING_VALUE",
267
267
  * },
268
268
  * },
269
- * SqsQueueParameters: {
269
+ * SqsQueueParameters: { // PipeTargetSqsQueueParameters
270
270
  * MessageGroupId: "STRING_VALUE",
271
271
  * MessageDeduplicationId: "STRING_VALUE",
272
272
  * },
273
- * HttpParameters: {
273
+ * HttpParameters: { // PipeTargetHttpParameters
274
274
  * PathParameterValues: [
275
275
  * "STRING_VALUE",
276
276
  * ],
@@ -281,34 +281,34 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
281
281
  * "<keys>": "STRING_VALUE",
282
282
  * },
283
283
  * },
284
- * RedshiftDataParameters: {
284
+ * RedshiftDataParameters: { // PipeTargetRedshiftDataParameters
285
285
  * SecretManagerArn: "STRING_VALUE",
286
286
  * Database: "STRING_VALUE", // required
287
287
  * DbUser: "STRING_VALUE",
288
288
  * StatementName: "STRING_VALUE",
289
289
  * WithEvent: true || false,
290
- * Sqls: [ // required
290
+ * Sqls: [ // Sqls // required
291
291
  * "STRING_VALUE",
292
292
  * ],
293
293
  * },
294
- * SageMakerPipelineParameters: {
295
- * PipelineParameterList: [
296
- * {
294
+ * SageMakerPipelineParameters: { // PipeTargetSageMakerPipelineParameters
295
+ * PipelineParameterList: [ // SageMakerPipelineParameterList
296
+ * { // SageMakerPipelineParameter
297
297
  * Name: "STRING_VALUE", // required
298
298
  * Value: "STRING_VALUE", // required
299
299
  * },
300
300
  * ],
301
301
  * },
302
- * EventBridgeEventBusParameters: {
302
+ * EventBridgeEventBusParameters: { // PipeTargetEventBridgeEventBusParameters
303
303
  * EndpointId: "STRING_VALUE",
304
304
  * DetailType: "STRING_VALUE",
305
305
  * Source: "STRING_VALUE",
306
- * Resources: [
306
+ * Resources: [ // EventBridgeEventResourceList
307
307
  * "STRING_VALUE",
308
308
  * ],
309
309
  * Time: "STRING_VALUE",
310
310
  * },
311
- * CloudWatchLogsParameters: {
311
+ * CloudWatchLogsParameters: { // PipeTargetCloudWatchLogsParameters
312
312
  * LogStreamName: "STRING_VALUE",
313
313
  * Timestamp: "STRING_VALUE",
314
314
  * },
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.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",