@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.
@@ -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
  * };