@aws-sdk/client-pipes 3.300.0 → 3.303.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-cjs/models/models_0.js +83 -101
- package/dist-es/models/models_0.js +83 -101
- package/dist-types/commands/CreatePipeCommand.d.ts +78 -78
- package/dist-types/commands/DeletePipeCommand.d.ts +1 -1
- package/dist-types/commands/DescribePipeCommand.d.ts +1 -1
- package/dist-types/commands/ListPipesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartPipeCommand.d.ts +1 -1
- package/dist-types/commands/StopPipeCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePipeCommand.d.ts +76 -76
- package/dist-types/models/models_0.d.ts +173 -83
- package/dist-types/ts3.4/models/models_0.d.ts +116 -83
- package/package.json +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: {
|
|
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
|
* },
|