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