@aws-sdk/client-pipes 3.321.1 → 3.326.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.
- package/dist-types/commands/CreatePipeCommand.d.ts +11 -0
- package/dist-types/commands/DeletePipeCommand.d.ts +11 -0
- package/dist-types/commands/DescribePipeCommand.d.ts +311 -0
- package/dist-types/commands/ListPipesCommand.d.ts +20 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/StartPipeCommand.d.ts +11 -0
- package/dist-types/commands/StopPipeCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdatePipeCommand.d.ts +11 -0
- package/package.json +16 -16
|
@@ -331,6 +331,15 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
|
|
|
331
331
|
* };
|
|
332
332
|
* const command = new CreatePipeCommand(input);
|
|
333
333
|
* const response = await client.send(command);
|
|
334
|
+
* // { // CreatePipeResponse
|
|
335
|
+
* // Arn: "STRING_VALUE",
|
|
336
|
+
* // Name: "STRING_VALUE",
|
|
337
|
+
* // DesiredState: "STRING_VALUE",
|
|
338
|
+
* // CurrentState: "STRING_VALUE",
|
|
339
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
340
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
341
|
+
* // };
|
|
342
|
+
*
|
|
334
343
|
* ```
|
|
335
344
|
*
|
|
336
345
|
* @param CreatePipeCommandInput - {@link CreatePipeCommandInput}
|
|
@@ -357,6 +366,8 @@ export interface CreatePipeCommandOutput extends CreatePipeResponse, __MetadataB
|
|
|
357
366
|
* @throws {@link ValidationException} (client fault)
|
|
358
367
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
359
368
|
*
|
|
369
|
+
* @throws {@link PipesServiceException}
|
|
370
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
360
371
|
*
|
|
361
372
|
*/
|
|
362
373
|
export declare class CreatePipeCommand extends $Command<CreatePipeCommandInput, CreatePipeCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeletePipeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeletePipeResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // DesiredState: "STRING_VALUE",
|
|
38
|
+
* // CurrentState: "STRING_VALUE",
|
|
39
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param DeletePipeCommandInput - {@link DeletePipeCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface DeletePipeCommandOutput extends DeletePipeResponse, __MetadataB
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link PipesServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class DeletePipeCommand extends $Command<DeletePipeCommandInput, DeletePipeCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -31,6 +31,315 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribePipeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribePipeResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // Description: "STRING_VALUE",
|
|
38
|
+
* // DesiredState: "STRING_VALUE",
|
|
39
|
+
* // CurrentState: "STRING_VALUE",
|
|
40
|
+
* // StateReason: "STRING_VALUE",
|
|
41
|
+
* // Source: "STRING_VALUE",
|
|
42
|
+
* // SourceParameters: { // PipeSourceParameters
|
|
43
|
+
* // FilterCriteria: { // FilterCriteria
|
|
44
|
+
* // Filters: [ // FilterList
|
|
45
|
+
* // { // Filter
|
|
46
|
+
* // Pattern: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // },
|
|
50
|
+
* // KinesisStreamParameters: { // PipeSourceKinesisStreamParameters
|
|
51
|
+
* // BatchSize: Number("int"),
|
|
52
|
+
* // DeadLetterConfig: { // DeadLetterConfig
|
|
53
|
+
* // Arn: "STRING_VALUE",
|
|
54
|
+
* // },
|
|
55
|
+
* // OnPartialBatchItemFailure: "STRING_VALUE",
|
|
56
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
57
|
+
* // MaximumRecordAgeInSeconds: Number("int"),
|
|
58
|
+
* // MaximumRetryAttempts: Number("int"),
|
|
59
|
+
* // ParallelizationFactor: Number("int"),
|
|
60
|
+
* // StartingPosition: "STRING_VALUE", // required
|
|
61
|
+
* // StartingPositionTimestamp: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // DynamoDBStreamParameters: { // PipeSourceDynamoDBStreamParameters
|
|
64
|
+
* // BatchSize: Number("int"),
|
|
65
|
+
* // DeadLetterConfig: {
|
|
66
|
+
* // Arn: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // OnPartialBatchItemFailure: "STRING_VALUE",
|
|
69
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
70
|
+
* // MaximumRecordAgeInSeconds: Number("int"),
|
|
71
|
+
* // MaximumRetryAttempts: Number("int"),
|
|
72
|
+
* // ParallelizationFactor: Number("int"),
|
|
73
|
+
* // StartingPosition: "STRING_VALUE", // required
|
|
74
|
+
* // },
|
|
75
|
+
* // SqsQueueParameters: { // PipeSourceSqsQueueParameters
|
|
76
|
+
* // BatchSize: Number("int"),
|
|
77
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
78
|
+
* // },
|
|
79
|
+
* // ActiveMQBrokerParameters: { // PipeSourceActiveMQBrokerParameters
|
|
80
|
+
* // Credentials: { // MQBrokerAccessCredentials Union: only one key present
|
|
81
|
+
* // BasicAuth: "STRING_VALUE",
|
|
82
|
+
* // },
|
|
83
|
+
* // QueueName: "STRING_VALUE", // required
|
|
84
|
+
* // BatchSize: Number("int"),
|
|
85
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
86
|
+
* // },
|
|
87
|
+
* // RabbitMQBrokerParameters: { // PipeSourceRabbitMQBrokerParameters
|
|
88
|
+
* // Credentials: {// Union: only one key present
|
|
89
|
+
* // BasicAuth: "STRING_VALUE",
|
|
90
|
+
* // },
|
|
91
|
+
* // QueueName: "STRING_VALUE", // required
|
|
92
|
+
* // VirtualHost: "STRING_VALUE",
|
|
93
|
+
* // BatchSize: Number("int"),
|
|
94
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
95
|
+
* // },
|
|
96
|
+
* // ManagedStreamingKafkaParameters: { // PipeSourceManagedStreamingKafkaParameters
|
|
97
|
+
* // TopicName: "STRING_VALUE", // required
|
|
98
|
+
* // StartingPosition: "STRING_VALUE",
|
|
99
|
+
* // BatchSize: Number("int"),
|
|
100
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
101
|
+
* // ConsumerGroupID: "STRING_VALUE",
|
|
102
|
+
* // Credentials: { // MSKAccessCredentials Union: only one key present
|
|
103
|
+
* // SaslScram512Auth: "STRING_VALUE",
|
|
104
|
+
* // ClientCertificateTlsAuth: "STRING_VALUE",
|
|
105
|
+
* // },
|
|
106
|
+
* // },
|
|
107
|
+
* // SelfManagedKafkaParameters: { // PipeSourceSelfManagedKafkaParameters
|
|
108
|
+
* // TopicName: "STRING_VALUE", // required
|
|
109
|
+
* // StartingPosition: "STRING_VALUE",
|
|
110
|
+
* // AdditionalBootstrapServers: [ // KafkaBootstrapServers
|
|
111
|
+
* // "STRING_VALUE",
|
|
112
|
+
* // ],
|
|
113
|
+
* // BatchSize: Number("int"),
|
|
114
|
+
* // MaximumBatchingWindowInSeconds: Number("int"),
|
|
115
|
+
* // ConsumerGroupID: "STRING_VALUE",
|
|
116
|
+
* // Credentials: { // SelfManagedKafkaAccessConfigurationCredentials Union: only one key present
|
|
117
|
+
* // BasicAuth: "STRING_VALUE",
|
|
118
|
+
* // SaslScram512Auth: "STRING_VALUE",
|
|
119
|
+
* // SaslScram256Auth: "STRING_VALUE",
|
|
120
|
+
* // ClientCertificateTlsAuth: "STRING_VALUE",
|
|
121
|
+
* // },
|
|
122
|
+
* // ServerRootCaCertificate: "STRING_VALUE",
|
|
123
|
+
* // Vpc: { // SelfManagedKafkaAccessConfigurationVpc
|
|
124
|
+
* // Subnets: [ // SubnetIds
|
|
125
|
+
* // "STRING_VALUE",
|
|
126
|
+
* // ],
|
|
127
|
+
* // SecurityGroup: [ // SecurityGroupIds
|
|
128
|
+
* // "STRING_VALUE",
|
|
129
|
+
* // ],
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // },
|
|
133
|
+
* // Enrichment: "STRING_VALUE",
|
|
134
|
+
* // EnrichmentParameters: { // PipeEnrichmentParameters
|
|
135
|
+
* // InputTemplate: "STRING_VALUE",
|
|
136
|
+
* // HttpParameters: { // PipeEnrichmentHttpParameters
|
|
137
|
+
* // PathParameterValues: [ // PathParameterList
|
|
138
|
+
* // "STRING_VALUE",
|
|
139
|
+
* // ],
|
|
140
|
+
* // HeaderParameters: { // HeaderParametersMap
|
|
141
|
+
* // "<keys>": "STRING_VALUE",
|
|
142
|
+
* // },
|
|
143
|
+
* // QueryStringParameters: { // QueryStringParametersMap
|
|
144
|
+
* // "<keys>": "STRING_VALUE",
|
|
145
|
+
* // },
|
|
146
|
+
* // },
|
|
147
|
+
* // },
|
|
148
|
+
* // Target: "STRING_VALUE",
|
|
149
|
+
* // TargetParameters: { // PipeTargetParameters
|
|
150
|
+
* // InputTemplate: "STRING_VALUE",
|
|
151
|
+
* // LambdaFunctionParameters: { // PipeTargetLambdaFunctionParameters
|
|
152
|
+
* // InvocationType: "STRING_VALUE",
|
|
153
|
+
* // },
|
|
154
|
+
* // StepFunctionStateMachineParameters: { // PipeTargetStateMachineParameters
|
|
155
|
+
* // InvocationType: "STRING_VALUE",
|
|
156
|
+
* // },
|
|
157
|
+
* // KinesisStreamParameters: { // PipeTargetKinesisStreamParameters
|
|
158
|
+
* // PartitionKey: "STRING_VALUE", // required
|
|
159
|
+
* // },
|
|
160
|
+
* // EcsTaskParameters: { // PipeTargetEcsTaskParameters
|
|
161
|
+
* // TaskDefinitionArn: "STRING_VALUE", // required
|
|
162
|
+
* // TaskCount: Number("int"),
|
|
163
|
+
* // LaunchType: "STRING_VALUE",
|
|
164
|
+
* // NetworkConfiguration: { // NetworkConfiguration
|
|
165
|
+
* // awsvpcConfiguration: { // AwsVpcConfiguration
|
|
166
|
+
* // Subnets: [ // Subnets // required
|
|
167
|
+
* // "STRING_VALUE",
|
|
168
|
+
* // ],
|
|
169
|
+
* // SecurityGroups: [ // SecurityGroups
|
|
170
|
+
* // "STRING_VALUE",
|
|
171
|
+
* // ],
|
|
172
|
+
* // AssignPublicIp: "STRING_VALUE",
|
|
173
|
+
* // },
|
|
174
|
+
* // },
|
|
175
|
+
* // PlatformVersion: "STRING_VALUE",
|
|
176
|
+
* // Group: "STRING_VALUE",
|
|
177
|
+
* // CapacityProviderStrategy: [ // CapacityProviderStrategy
|
|
178
|
+
* // { // CapacityProviderStrategyItem
|
|
179
|
+
* // capacityProvider: "STRING_VALUE", // required
|
|
180
|
+
* // weight: Number("int"),
|
|
181
|
+
* // base: Number("int"),
|
|
182
|
+
* // },
|
|
183
|
+
* // ],
|
|
184
|
+
* // EnableECSManagedTags: true || false,
|
|
185
|
+
* // EnableExecuteCommand: true || false,
|
|
186
|
+
* // PlacementConstraints: [ // PlacementConstraints
|
|
187
|
+
* // { // PlacementConstraint
|
|
188
|
+
* // type: "STRING_VALUE",
|
|
189
|
+
* // expression: "STRING_VALUE",
|
|
190
|
+
* // },
|
|
191
|
+
* // ],
|
|
192
|
+
* // PlacementStrategy: [ // PlacementStrategies
|
|
193
|
+
* // { // PlacementStrategy
|
|
194
|
+
* // type: "STRING_VALUE",
|
|
195
|
+
* // field: "STRING_VALUE",
|
|
196
|
+
* // },
|
|
197
|
+
* // ],
|
|
198
|
+
* // PropagateTags: "STRING_VALUE",
|
|
199
|
+
* // ReferenceId: "STRING_VALUE",
|
|
200
|
+
* // Overrides: { // EcsTaskOverride
|
|
201
|
+
* // ContainerOverrides: [ // EcsContainerOverrideList
|
|
202
|
+
* // { // EcsContainerOverride
|
|
203
|
+
* // Command: [ // StringList
|
|
204
|
+
* // "STRING_VALUE",
|
|
205
|
+
* // ],
|
|
206
|
+
* // Cpu: Number("int"),
|
|
207
|
+
* // Environment: [ // EcsEnvironmentVariableList
|
|
208
|
+
* // { // EcsEnvironmentVariable
|
|
209
|
+
* // name: "STRING_VALUE",
|
|
210
|
+
* // value: "STRING_VALUE",
|
|
211
|
+
* // },
|
|
212
|
+
* // ],
|
|
213
|
+
* // EnvironmentFiles: [ // EcsEnvironmentFileList
|
|
214
|
+
* // { // EcsEnvironmentFile
|
|
215
|
+
* // type: "STRING_VALUE", // required
|
|
216
|
+
* // value: "STRING_VALUE", // required
|
|
217
|
+
* // },
|
|
218
|
+
* // ],
|
|
219
|
+
* // Memory: Number("int"),
|
|
220
|
+
* // MemoryReservation: Number("int"),
|
|
221
|
+
* // Name: "STRING_VALUE",
|
|
222
|
+
* // ResourceRequirements: [ // EcsResourceRequirementsList
|
|
223
|
+
* // { // EcsResourceRequirement
|
|
224
|
+
* // type: "STRING_VALUE", // required
|
|
225
|
+
* // value: "STRING_VALUE", // required
|
|
226
|
+
* // },
|
|
227
|
+
* // ],
|
|
228
|
+
* // },
|
|
229
|
+
* // ],
|
|
230
|
+
* // Cpu: "STRING_VALUE",
|
|
231
|
+
* // EphemeralStorage: { // EcsEphemeralStorage
|
|
232
|
+
* // sizeInGiB: Number("int"), // required
|
|
233
|
+
* // },
|
|
234
|
+
* // ExecutionRoleArn: "STRING_VALUE",
|
|
235
|
+
* // InferenceAcceleratorOverrides: [ // EcsInferenceAcceleratorOverrideList
|
|
236
|
+
* // { // EcsInferenceAcceleratorOverride
|
|
237
|
+
* // deviceName: "STRING_VALUE",
|
|
238
|
+
* // deviceType: "STRING_VALUE",
|
|
239
|
+
* // },
|
|
240
|
+
* // ],
|
|
241
|
+
* // Memory: "STRING_VALUE",
|
|
242
|
+
* // TaskRoleArn: "STRING_VALUE",
|
|
243
|
+
* // },
|
|
244
|
+
* // Tags: [ // TagList
|
|
245
|
+
* // { // Tag
|
|
246
|
+
* // Key: "STRING_VALUE", // required
|
|
247
|
+
* // Value: "STRING_VALUE", // required
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
250
|
+
* // },
|
|
251
|
+
* // BatchJobParameters: { // PipeTargetBatchJobParameters
|
|
252
|
+
* // JobDefinition: "STRING_VALUE", // required
|
|
253
|
+
* // JobName: "STRING_VALUE", // required
|
|
254
|
+
* // ArrayProperties: { // BatchArrayProperties
|
|
255
|
+
* // Size: Number("int"),
|
|
256
|
+
* // },
|
|
257
|
+
* // RetryStrategy: { // BatchRetryStrategy
|
|
258
|
+
* // Attempts: Number("int"),
|
|
259
|
+
* // },
|
|
260
|
+
* // ContainerOverrides: { // BatchContainerOverrides
|
|
261
|
+
* // Command: [
|
|
262
|
+
* // "STRING_VALUE",
|
|
263
|
+
* // ],
|
|
264
|
+
* // Environment: [ // BatchEnvironmentVariableList
|
|
265
|
+
* // { // BatchEnvironmentVariable
|
|
266
|
+
* // Name: "STRING_VALUE",
|
|
267
|
+
* // Value: "STRING_VALUE",
|
|
268
|
+
* // },
|
|
269
|
+
* // ],
|
|
270
|
+
* // InstanceType: "STRING_VALUE",
|
|
271
|
+
* // ResourceRequirements: [ // BatchResourceRequirementsList
|
|
272
|
+
* // { // BatchResourceRequirement
|
|
273
|
+
* // Type: "STRING_VALUE", // required
|
|
274
|
+
* // Value: "STRING_VALUE", // required
|
|
275
|
+
* // },
|
|
276
|
+
* // ],
|
|
277
|
+
* // },
|
|
278
|
+
* // DependsOn: [ // BatchDependsOn
|
|
279
|
+
* // { // BatchJobDependency
|
|
280
|
+
* // JobId: "STRING_VALUE",
|
|
281
|
+
* // Type: "STRING_VALUE",
|
|
282
|
+
* // },
|
|
283
|
+
* // ],
|
|
284
|
+
* // Parameters: { // BatchParametersMap
|
|
285
|
+
* // "<keys>": "STRING_VALUE",
|
|
286
|
+
* // },
|
|
287
|
+
* // },
|
|
288
|
+
* // SqsQueueParameters: { // PipeTargetSqsQueueParameters
|
|
289
|
+
* // MessageGroupId: "STRING_VALUE",
|
|
290
|
+
* // MessageDeduplicationId: "STRING_VALUE",
|
|
291
|
+
* // },
|
|
292
|
+
* // HttpParameters: { // PipeTargetHttpParameters
|
|
293
|
+
* // PathParameterValues: [
|
|
294
|
+
* // "STRING_VALUE",
|
|
295
|
+
* // ],
|
|
296
|
+
* // HeaderParameters: {
|
|
297
|
+
* // "<keys>": "STRING_VALUE",
|
|
298
|
+
* // },
|
|
299
|
+
* // QueryStringParameters: {
|
|
300
|
+
* // "<keys>": "STRING_VALUE",
|
|
301
|
+
* // },
|
|
302
|
+
* // },
|
|
303
|
+
* // RedshiftDataParameters: { // PipeTargetRedshiftDataParameters
|
|
304
|
+
* // SecretManagerArn: "STRING_VALUE",
|
|
305
|
+
* // Database: "STRING_VALUE", // required
|
|
306
|
+
* // DbUser: "STRING_VALUE",
|
|
307
|
+
* // StatementName: "STRING_VALUE",
|
|
308
|
+
* // WithEvent: true || false,
|
|
309
|
+
* // Sqls: [ // Sqls // required
|
|
310
|
+
* // "STRING_VALUE",
|
|
311
|
+
* // ],
|
|
312
|
+
* // },
|
|
313
|
+
* // SageMakerPipelineParameters: { // PipeTargetSageMakerPipelineParameters
|
|
314
|
+
* // PipelineParameterList: [ // SageMakerPipelineParameterList
|
|
315
|
+
* // { // SageMakerPipelineParameter
|
|
316
|
+
* // Name: "STRING_VALUE", // required
|
|
317
|
+
* // Value: "STRING_VALUE", // required
|
|
318
|
+
* // },
|
|
319
|
+
* // ],
|
|
320
|
+
* // },
|
|
321
|
+
* // EventBridgeEventBusParameters: { // PipeTargetEventBridgeEventBusParameters
|
|
322
|
+
* // EndpointId: "STRING_VALUE",
|
|
323
|
+
* // DetailType: "STRING_VALUE",
|
|
324
|
+
* // Source: "STRING_VALUE",
|
|
325
|
+
* // Resources: [ // EventBridgeEventResourceList
|
|
326
|
+
* // "STRING_VALUE",
|
|
327
|
+
* // ],
|
|
328
|
+
* // Time: "STRING_VALUE",
|
|
329
|
+
* // },
|
|
330
|
+
* // CloudWatchLogsParameters: { // PipeTargetCloudWatchLogsParameters
|
|
331
|
+
* // LogStreamName: "STRING_VALUE",
|
|
332
|
+
* // Timestamp: "STRING_VALUE",
|
|
333
|
+
* // },
|
|
334
|
+
* // },
|
|
335
|
+
* // RoleArn: "STRING_VALUE",
|
|
336
|
+
* // Tags: { // TagMap
|
|
337
|
+
* // "<keys>": "STRING_VALUE",
|
|
338
|
+
* // },
|
|
339
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
340
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
341
|
+
* // };
|
|
342
|
+
*
|
|
34
343
|
* ```
|
|
35
344
|
*
|
|
36
345
|
* @param DescribePipeCommandInput - {@link DescribePipeCommandInput}
|
|
@@ -51,6 +360,8 @@ export interface DescribePipeCommandOutput extends DescribePipeResponse, __Metad
|
|
|
51
360
|
* @throws {@link ValidationException} (client fault)
|
|
52
361
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
53
362
|
*
|
|
363
|
+
* @throws {@link PipesServiceException}
|
|
364
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
54
365
|
*
|
|
55
366
|
*/
|
|
56
367
|
export declare class DescribePipeCommand extends $Command<DescribePipeCommandInput, DescribePipeCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -37,6 +37,24 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListPipesCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // ListPipesResponse
|
|
41
|
+
* // Pipes: [ // PipeList
|
|
42
|
+
* // { // Pipe
|
|
43
|
+
* // Name: "STRING_VALUE",
|
|
44
|
+
* // Arn: "STRING_VALUE",
|
|
45
|
+
* // DesiredState: "STRING_VALUE",
|
|
46
|
+
* // CurrentState: "STRING_VALUE",
|
|
47
|
+
* // StateReason: "STRING_VALUE",
|
|
48
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
49
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
50
|
+
* // Source: "STRING_VALUE",
|
|
51
|
+
* // Target: "STRING_VALUE",
|
|
52
|
+
* // Enrichment: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
40
58
|
* ```
|
|
41
59
|
*
|
|
42
60
|
* @param ListPipesCommandInput - {@link ListPipesCommandInput}
|
|
@@ -54,6 +72,8 @@ export interface ListPipesCommandOutput extends ListPipesResponse, __MetadataBea
|
|
|
54
72
|
* @throws {@link ValidationException} (client fault)
|
|
55
73
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
56
74
|
*
|
|
75
|
+
* @throws {@link PipesServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
57
77
|
*
|
|
58
78
|
*/
|
|
59
79
|
export declare class ListPipesCommand extends $Command<ListPipesCommandInput, ListPipesCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
48
54
|
* @throws {@link ValidationException} (client fault)
|
|
49
55
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
50
56
|
*
|
|
57
|
+
* @throws {@link PipesServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
51
59
|
*
|
|
52
60
|
*/
|
|
53
61
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StartPipeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StartPipeResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // DesiredState: "STRING_VALUE",
|
|
38
|
+
* // CurrentState: "STRING_VALUE",
|
|
39
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param StartPipeCommandInput - {@link StartPipeCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface StartPipeCommandOutput extends StartPipeResponse, __MetadataBea
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link PipesServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class StartPipeCommand extends $Command<StartPipeCommandInput, StartPipeCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -31,6 +31,15 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new StopPipeCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // StopPipeResponse
|
|
35
|
+
* // Arn: "STRING_VALUE",
|
|
36
|
+
* // Name: "STRING_VALUE",
|
|
37
|
+
* // DesiredState: "STRING_VALUE",
|
|
38
|
+
* // CurrentState: "STRING_VALUE",
|
|
39
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
40
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
34
43
|
* ```
|
|
35
44
|
*
|
|
36
45
|
* @param StopPipeCommandInput - {@link StopPipeCommandInput}
|
|
@@ -54,6 +63,8 @@ export interface StopPipeCommandOutput extends StopPipeResponse, __MetadataBeare
|
|
|
54
63
|
* @throws {@link ValidationException} (client fault)
|
|
55
64
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
56
65
|
*
|
|
66
|
+
* @throws {@link PipesServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
57
68
|
*
|
|
58
69
|
*/
|
|
59
70
|
export declare class StopPipeCommand extends $Command<StopPipeCommandInput, StopPipeCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new TagResourceCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
61
63
|
* @throws {@link ValidationException} (client fault)
|
|
62
64
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link PipesServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -51,6 +53,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
51
53
|
* @throws {@link ValidationException} (client fault)
|
|
52
54
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
53
55
|
*
|
|
56
|
+
* @throws {@link PipesServiceException}
|
|
57
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
54
58
|
*
|
|
55
59
|
*/
|
|
56
60
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, PipesClientResolvedConfig> {
|
|
@@ -317,6 +317,15 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
|
|
|
317
317
|
* };
|
|
318
318
|
* const command = new UpdatePipeCommand(input);
|
|
319
319
|
* const response = await client.send(command);
|
|
320
|
+
* // { // UpdatePipeResponse
|
|
321
|
+
* // Arn: "STRING_VALUE",
|
|
322
|
+
* // Name: "STRING_VALUE",
|
|
323
|
+
* // DesiredState: "STRING_VALUE",
|
|
324
|
+
* // CurrentState: "STRING_VALUE",
|
|
325
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
326
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
327
|
+
* // };
|
|
328
|
+
*
|
|
320
329
|
* ```
|
|
321
330
|
*
|
|
322
331
|
* @param UpdatePipeCommandInput - {@link UpdatePipeCommandInput}
|
|
@@ -340,6 +349,8 @@ export interface UpdatePipeCommandOutput extends UpdatePipeResponse, __MetadataB
|
|
|
340
349
|
* @throws {@link ValidationException} (client fault)
|
|
341
350
|
* <p>Indicates that an error has occurred while performing a validate operation.</p>
|
|
342
351
|
*
|
|
352
|
+
* @throws {@link PipesServiceException}
|
|
353
|
+
* <p>Base exception class for all service exceptions from Pipes service.</p>
|
|
343
354
|
*
|
|
344
355
|
*/
|
|
345
356
|
export declare class UpdatePipeCommand extends $Command<UpdatePipeCommandInput, UpdatePipeCommandOutput, PipesClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|