aws-sdk-iotanalytics 1.60.0 → 1.62.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iotanalytics/client.rb +70 -46
- data/lib/aws-sdk-iotanalytics/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-iotanalytics.rb +1 -1
- data/sig/client.rbs +903 -0
- data/sig/errors.rbs +39 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +929 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,929 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::IoTAnalytics
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddAttributesActivity
|
12
|
+
attr_accessor name: ::String
|
13
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
14
|
+
attr_accessor next: ::String
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class BatchPutMessageErrorEntry
|
19
|
+
attr_accessor message_id: ::String
|
20
|
+
attr_accessor error_code: ::String
|
21
|
+
attr_accessor error_message: ::String
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class BatchPutMessageRequest
|
26
|
+
attr_accessor channel_name: ::String
|
27
|
+
attr_accessor messages: ::Array[Types::Message]
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class BatchPutMessageResponse
|
32
|
+
attr_accessor batch_put_message_error_entries: ::Array[Types::BatchPutMessageErrorEntry]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class CancelPipelineReprocessingRequest
|
37
|
+
attr_accessor pipeline_name: ::String
|
38
|
+
attr_accessor reprocessing_id: ::String
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class CancelPipelineReprocessingResponse < Aws::EmptyStructure
|
43
|
+
end
|
44
|
+
|
45
|
+
class Channel
|
46
|
+
attr_accessor name: ::String
|
47
|
+
attr_accessor storage: Types::ChannelStorage
|
48
|
+
attr_accessor arn: ::String
|
49
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
50
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
51
|
+
attr_accessor creation_time: ::Time
|
52
|
+
attr_accessor last_update_time: ::Time
|
53
|
+
attr_accessor last_message_arrival_time: ::Time
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class ChannelActivity
|
58
|
+
attr_accessor name: ::String
|
59
|
+
attr_accessor channel_name: ::String
|
60
|
+
attr_accessor next: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class ChannelMessages
|
65
|
+
attr_accessor s3_paths: ::Array[::String]
|
66
|
+
SENSITIVE: []
|
67
|
+
end
|
68
|
+
|
69
|
+
class ChannelStatistics
|
70
|
+
attr_accessor size: Types::EstimatedResourceSize
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class ChannelStorage
|
75
|
+
attr_accessor service_managed_s3: Types::ServiceManagedChannelS3Storage
|
76
|
+
attr_accessor customer_managed_s3: Types::CustomerManagedChannelS3Storage
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class ChannelStorageSummary
|
81
|
+
attr_accessor service_managed_s3: Types::ServiceManagedChannelS3StorageSummary
|
82
|
+
attr_accessor customer_managed_s3: Types::CustomerManagedChannelS3StorageSummary
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class ChannelSummary
|
87
|
+
attr_accessor channel_name: ::String
|
88
|
+
attr_accessor channel_storage: Types::ChannelStorageSummary
|
89
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
90
|
+
attr_accessor creation_time: ::Time
|
91
|
+
attr_accessor last_update_time: ::Time
|
92
|
+
attr_accessor last_message_arrival_time: ::Time
|
93
|
+
SENSITIVE: []
|
94
|
+
end
|
95
|
+
|
96
|
+
class Column
|
97
|
+
attr_accessor name: ::String
|
98
|
+
attr_accessor type: ::String
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
102
|
+
class ContainerDatasetAction
|
103
|
+
attr_accessor image: ::String
|
104
|
+
attr_accessor execution_role_arn: ::String
|
105
|
+
attr_accessor resource_configuration: Types::ResourceConfiguration
|
106
|
+
attr_accessor variables: ::Array[Types::Variable]
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class CreateChannelRequest
|
111
|
+
attr_accessor channel_name: ::String
|
112
|
+
attr_accessor channel_storage: Types::ChannelStorage
|
113
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
114
|
+
attr_accessor tags: ::Array[Types::Tag]
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class CreateChannelResponse
|
119
|
+
attr_accessor channel_name: ::String
|
120
|
+
attr_accessor channel_arn: ::String
|
121
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class CreateDatasetContentRequest
|
126
|
+
attr_accessor dataset_name: ::String
|
127
|
+
attr_accessor version_id: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateDatasetContentResponse
|
132
|
+
attr_accessor version_id: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateDatasetRequest
|
137
|
+
attr_accessor dataset_name: ::String
|
138
|
+
attr_accessor actions: ::Array[Types::DatasetAction]
|
139
|
+
attr_accessor triggers: ::Array[Types::DatasetTrigger]
|
140
|
+
attr_accessor content_delivery_rules: ::Array[Types::DatasetContentDeliveryRule]
|
141
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
142
|
+
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
143
|
+
attr_accessor tags: ::Array[Types::Tag]
|
144
|
+
attr_accessor late_data_rules: ::Array[Types::LateDataRule]
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class CreateDatasetResponse
|
149
|
+
attr_accessor dataset_name: ::String
|
150
|
+
attr_accessor dataset_arn: ::String
|
151
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class CreateDatastoreRequest
|
156
|
+
attr_accessor datastore_name: ::String
|
157
|
+
attr_accessor datastore_storage: Types::DatastoreStorage
|
158
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
159
|
+
attr_accessor tags: ::Array[Types::Tag]
|
160
|
+
attr_accessor file_format_configuration: Types::FileFormatConfiguration
|
161
|
+
attr_accessor datastore_partitions: Types::DatastorePartitions
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class CreateDatastoreResponse
|
166
|
+
attr_accessor datastore_name: ::String
|
167
|
+
attr_accessor datastore_arn: ::String
|
168
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class CreatePipelineRequest
|
173
|
+
attr_accessor pipeline_name: ::String
|
174
|
+
attr_accessor pipeline_activities: ::Array[Types::PipelineActivity]
|
175
|
+
attr_accessor tags: ::Array[Types::Tag]
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreatePipelineResponse
|
180
|
+
attr_accessor pipeline_name: ::String
|
181
|
+
attr_accessor pipeline_arn: ::String
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class CustomerManagedChannelS3Storage
|
186
|
+
attr_accessor bucket: ::String
|
187
|
+
attr_accessor key_prefix: ::String
|
188
|
+
attr_accessor role_arn: ::String
|
189
|
+
SENSITIVE: []
|
190
|
+
end
|
191
|
+
|
192
|
+
class CustomerManagedChannelS3StorageSummary
|
193
|
+
attr_accessor bucket: ::String
|
194
|
+
attr_accessor key_prefix: ::String
|
195
|
+
attr_accessor role_arn: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CustomerManagedDatastoreS3Storage
|
200
|
+
attr_accessor bucket: ::String
|
201
|
+
attr_accessor key_prefix: ::String
|
202
|
+
attr_accessor role_arn: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class CustomerManagedDatastoreS3StorageSummary
|
207
|
+
attr_accessor bucket: ::String
|
208
|
+
attr_accessor key_prefix: ::String
|
209
|
+
attr_accessor role_arn: ::String
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class Dataset
|
214
|
+
attr_accessor name: ::String
|
215
|
+
attr_accessor arn: ::String
|
216
|
+
attr_accessor actions: ::Array[Types::DatasetAction]
|
217
|
+
attr_accessor triggers: ::Array[Types::DatasetTrigger]
|
218
|
+
attr_accessor content_delivery_rules: ::Array[Types::DatasetContentDeliveryRule]
|
219
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
220
|
+
attr_accessor creation_time: ::Time
|
221
|
+
attr_accessor last_update_time: ::Time
|
222
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
223
|
+
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
224
|
+
attr_accessor late_data_rules: ::Array[Types::LateDataRule]
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class DatasetAction
|
229
|
+
attr_accessor action_name: ::String
|
230
|
+
attr_accessor query_action: Types::SqlQueryDatasetAction
|
231
|
+
attr_accessor container_action: Types::ContainerDatasetAction
|
232
|
+
SENSITIVE: []
|
233
|
+
end
|
234
|
+
|
235
|
+
class DatasetActionSummary
|
236
|
+
attr_accessor action_name: ::String
|
237
|
+
attr_accessor action_type: ("QUERY" | "CONTAINER")
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class DatasetContentDeliveryDestination
|
242
|
+
attr_accessor iot_events_destination_configuration: Types::IotEventsDestinationConfiguration
|
243
|
+
attr_accessor s3_destination_configuration: Types::S3DestinationConfiguration
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class DatasetContentDeliveryRule
|
248
|
+
attr_accessor entry_name: ::String
|
249
|
+
attr_accessor destination: Types::DatasetContentDeliveryDestination
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class DatasetContentStatus
|
254
|
+
attr_accessor state: ("CREATING" | "SUCCEEDED" | "FAILED")
|
255
|
+
attr_accessor reason: ::String
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class DatasetContentSummary
|
260
|
+
attr_accessor version: ::String
|
261
|
+
attr_accessor status: Types::DatasetContentStatus
|
262
|
+
attr_accessor creation_time: ::Time
|
263
|
+
attr_accessor schedule_time: ::Time
|
264
|
+
attr_accessor completion_time: ::Time
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class DatasetContentVersionValue
|
269
|
+
attr_accessor dataset_name: ::String
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class DatasetEntry
|
274
|
+
attr_accessor entry_name: ::String
|
275
|
+
attr_accessor data_uri: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class DatasetSummary
|
280
|
+
attr_accessor dataset_name: ::String
|
281
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
282
|
+
attr_accessor creation_time: ::Time
|
283
|
+
attr_accessor last_update_time: ::Time
|
284
|
+
attr_accessor triggers: ::Array[Types::DatasetTrigger]
|
285
|
+
attr_accessor actions: ::Array[Types::DatasetActionSummary]
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class DatasetTrigger
|
290
|
+
attr_accessor schedule: Types::Schedule
|
291
|
+
attr_accessor dataset: Types::TriggeringDataset
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class Datastore
|
296
|
+
attr_accessor name: ::String
|
297
|
+
attr_accessor storage: Types::DatastoreStorage
|
298
|
+
attr_accessor arn: ::String
|
299
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
300
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
301
|
+
attr_accessor creation_time: ::Time
|
302
|
+
attr_accessor last_update_time: ::Time
|
303
|
+
attr_accessor last_message_arrival_time: ::Time
|
304
|
+
attr_accessor file_format_configuration: Types::FileFormatConfiguration
|
305
|
+
attr_accessor datastore_partitions: Types::DatastorePartitions
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DatastoreActivity
|
310
|
+
attr_accessor name: ::String
|
311
|
+
attr_accessor datastore_name: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class DatastoreIotSiteWiseMultiLayerStorage
|
316
|
+
attr_accessor customer_managed_s3_storage: Types::IotSiteWiseCustomerManagedDatastoreS3Storage
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class DatastoreIotSiteWiseMultiLayerStorageSummary
|
321
|
+
attr_accessor customer_managed_s3_storage: Types::IotSiteWiseCustomerManagedDatastoreS3StorageSummary
|
322
|
+
SENSITIVE: []
|
323
|
+
end
|
324
|
+
|
325
|
+
class DatastorePartition
|
326
|
+
attr_accessor attribute_partition: Types::Partition
|
327
|
+
attr_accessor timestamp_partition: Types::TimestampPartition
|
328
|
+
SENSITIVE: []
|
329
|
+
end
|
330
|
+
|
331
|
+
class DatastorePartitions
|
332
|
+
attr_accessor partitions: ::Array[Types::DatastorePartition]
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class DatastoreStatistics
|
337
|
+
attr_accessor size: Types::EstimatedResourceSize
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class DatastoreStorage
|
342
|
+
attr_accessor service_managed_s3: Types::ServiceManagedDatastoreS3Storage
|
343
|
+
attr_accessor customer_managed_s3: Types::CustomerManagedDatastoreS3Storage
|
344
|
+
attr_accessor iot_site_wise_multi_layer_storage: Types::DatastoreIotSiteWiseMultiLayerStorage
|
345
|
+
SENSITIVE: []
|
346
|
+
end
|
347
|
+
|
348
|
+
class DatastoreStorageSummary
|
349
|
+
attr_accessor service_managed_s3: Types::ServiceManagedDatastoreS3StorageSummary
|
350
|
+
attr_accessor customer_managed_s3: Types::CustomerManagedDatastoreS3StorageSummary
|
351
|
+
attr_accessor iot_site_wise_multi_layer_storage: Types::DatastoreIotSiteWiseMultiLayerStorageSummary
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class DatastoreSummary
|
356
|
+
attr_accessor datastore_name: ::String
|
357
|
+
attr_accessor datastore_storage: Types::DatastoreStorageSummary
|
358
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "DELETING")
|
359
|
+
attr_accessor creation_time: ::Time
|
360
|
+
attr_accessor last_update_time: ::Time
|
361
|
+
attr_accessor last_message_arrival_time: ::Time
|
362
|
+
attr_accessor file_format_type: ("JSON" | "PARQUET")
|
363
|
+
attr_accessor datastore_partitions: Types::DatastorePartitions
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class DeleteChannelRequest
|
368
|
+
attr_accessor channel_name: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class DeleteDatasetContentRequest
|
373
|
+
attr_accessor dataset_name: ::String
|
374
|
+
attr_accessor version_id: ::String
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class DeleteDatasetRequest
|
379
|
+
attr_accessor dataset_name: ::String
|
380
|
+
SENSITIVE: []
|
381
|
+
end
|
382
|
+
|
383
|
+
class DeleteDatastoreRequest
|
384
|
+
attr_accessor datastore_name: ::String
|
385
|
+
SENSITIVE: []
|
386
|
+
end
|
387
|
+
|
388
|
+
class DeletePipelineRequest
|
389
|
+
attr_accessor pipeline_name: ::String
|
390
|
+
SENSITIVE: []
|
391
|
+
end
|
392
|
+
|
393
|
+
class DeltaTime
|
394
|
+
attr_accessor offset_seconds: ::Integer
|
395
|
+
attr_accessor time_expression: ::String
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
399
|
+
class DeltaTimeSessionWindowConfiguration
|
400
|
+
attr_accessor timeout_in_minutes: ::Integer
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class DescribeChannelRequest
|
405
|
+
attr_accessor channel_name: ::String
|
406
|
+
attr_accessor include_statistics: bool
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class DescribeChannelResponse
|
411
|
+
attr_accessor channel: Types::Channel
|
412
|
+
attr_accessor statistics: Types::ChannelStatistics
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class DescribeDatasetRequest
|
417
|
+
attr_accessor dataset_name: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class DescribeDatasetResponse
|
422
|
+
attr_accessor dataset: Types::Dataset
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class DescribeDatastoreRequest
|
427
|
+
attr_accessor datastore_name: ::String
|
428
|
+
attr_accessor include_statistics: bool
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class DescribeDatastoreResponse
|
433
|
+
attr_accessor datastore: Types::Datastore
|
434
|
+
attr_accessor statistics: Types::DatastoreStatistics
|
435
|
+
SENSITIVE: []
|
436
|
+
end
|
437
|
+
|
438
|
+
class DescribeLoggingOptionsRequest < Aws::EmptyStructure
|
439
|
+
end
|
440
|
+
|
441
|
+
class DescribeLoggingOptionsResponse
|
442
|
+
attr_accessor logging_options: Types::LoggingOptions
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribePipelineRequest
|
447
|
+
attr_accessor pipeline_name: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class DescribePipelineResponse
|
452
|
+
attr_accessor pipeline: Types::Pipeline
|
453
|
+
SENSITIVE: []
|
454
|
+
end
|
455
|
+
|
456
|
+
class DeviceRegistryEnrichActivity
|
457
|
+
attr_accessor name: ::String
|
458
|
+
attr_accessor attribute: ::String
|
459
|
+
attr_accessor thing_name: ::String
|
460
|
+
attr_accessor role_arn: ::String
|
461
|
+
attr_accessor next: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class DeviceShadowEnrichActivity
|
466
|
+
attr_accessor name: ::String
|
467
|
+
attr_accessor attribute: ::String
|
468
|
+
attr_accessor thing_name: ::String
|
469
|
+
attr_accessor role_arn: ::String
|
470
|
+
attr_accessor next: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class EstimatedResourceSize
|
475
|
+
attr_accessor estimated_size_in_bytes: ::Float
|
476
|
+
attr_accessor estimated_on: ::Time
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class FileFormatConfiguration
|
481
|
+
attr_accessor json_configuration: Types::JsonConfiguration
|
482
|
+
attr_accessor parquet_configuration: Types::ParquetConfiguration
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class FilterActivity
|
487
|
+
attr_accessor name: ::String
|
488
|
+
attr_accessor filter: ::String
|
489
|
+
attr_accessor next: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class GetDatasetContentRequest
|
494
|
+
attr_accessor dataset_name: ::String
|
495
|
+
attr_accessor version_id: ::String
|
496
|
+
SENSITIVE: []
|
497
|
+
end
|
498
|
+
|
499
|
+
class GetDatasetContentResponse
|
500
|
+
attr_accessor entries: ::Array[Types::DatasetEntry]
|
501
|
+
attr_accessor timestamp: ::Time
|
502
|
+
attr_accessor status: Types::DatasetContentStatus
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class GlueConfiguration
|
507
|
+
attr_accessor table_name: ::String
|
508
|
+
attr_accessor database_name: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class InternalFailureException
|
513
|
+
attr_accessor message: ::String
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class InvalidRequestException
|
518
|
+
attr_accessor message: ::String
|
519
|
+
SENSITIVE: []
|
520
|
+
end
|
521
|
+
|
522
|
+
class IotEventsDestinationConfiguration
|
523
|
+
attr_accessor input_name: ::String
|
524
|
+
attr_accessor role_arn: ::String
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class IotSiteWiseCustomerManagedDatastoreS3Storage
|
529
|
+
attr_accessor bucket: ::String
|
530
|
+
attr_accessor key_prefix: ::String
|
531
|
+
SENSITIVE: []
|
532
|
+
end
|
533
|
+
|
534
|
+
class IotSiteWiseCustomerManagedDatastoreS3StorageSummary
|
535
|
+
attr_accessor bucket: ::String
|
536
|
+
attr_accessor key_prefix: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class JsonConfiguration < Aws::EmptyStructure
|
541
|
+
end
|
542
|
+
|
543
|
+
class LambdaActivity
|
544
|
+
attr_accessor name: ::String
|
545
|
+
attr_accessor lambda_name: ::String
|
546
|
+
attr_accessor batch_size: ::Integer
|
547
|
+
attr_accessor next: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class LateDataRule
|
552
|
+
attr_accessor rule_name: ::String
|
553
|
+
attr_accessor rule_configuration: Types::LateDataRuleConfiguration
|
554
|
+
SENSITIVE: []
|
555
|
+
end
|
556
|
+
|
557
|
+
class LateDataRuleConfiguration
|
558
|
+
attr_accessor delta_time_session_window_configuration: Types::DeltaTimeSessionWindowConfiguration
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class LimitExceededException
|
563
|
+
attr_accessor message: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class ListChannelsRequest
|
568
|
+
attr_accessor next_token: ::String
|
569
|
+
attr_accessor max_results: ::Integer
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class ListChannelsResponse
|
574
|
+
attr_accessor channel_summaries: ::Array[Types::ChannelSummary]
|
575
|
+
attr_accessor next_token: ::String
|
576
|
+
SENSITIVE: []
|
577
|
+
end
|
578
|
+
|
579
|
+
class ListDatasetContentsRequest
|
580
|
+
attr_accessor dataset_name: ::String
|
581
|
+
attr_accessor next_token: ::String
|
582
|
+
attr_accessor max_results: ::Integer
|
583
|
+
attr_accessor scheduled_on_or_after: ::Time
|
584
|
+
attr_accessor scheduled_before: ::Time
|
585
|
+
SENSITIVE: []
|
586
|
+
end
|
587
|
+
|
588
|
+
class ListDatasetContentsResponse
|
589
|
+
attr_accessor dataset_content_summaries: ::Array[Types::DatasetContentSummary]
|
590
|
+
attr_accessor next_token: ::String
|
591
|
+
SENSITIVE: []
|
592
|
+
end
|
593
|
+
|
594
|
+
class ListDatasetsRequest
|
595
|
+
attr_accessor next_token: ::String
|
596
|
+
attr_accessor max_results: ::Integer
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class ListDatasetsResponse
|
601
|
+
attr_accessor dataset_summaries: ::Array[Types::DatasetSummary]
|
602
|
+
attr_accessor next_token: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class ListDatastoresRequest
|
607
|
+
attr_accessor next_token: ::String
|
608
|
+
attr_accessor max_results: ::Integer
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class ListDatastoresResponse
|
613
|
+
attr_accessor datastore_summaries: ::Array[Types::DatastoreSummary]
|
614
|
+
attr_accessor next_token: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class ListPipelinesRequest
|
619
|
+
attr_accessor next_token: ::String
|
620
|
+
attr_accessor max_results: ::Integer
|
621
|
+
SENSITIVE: []
|
622
|
+
end
|
623
|
+
|
624
|
+
class ListPipelinesResponse
|
625
|
+
attr_accessor pipeline_summaries: ::Array[Types::PipelineSummary]
|
626
|
+
attr_accessor next_token: ::String
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class ListTagsForResourceRequest
|
631
|
+
attr_accessor resource_arn: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class ListTagsForResourceResponse
|
636
|
+
attr_accessor tags: ::Array[Types::Tag]
|
637
|
+
SENSITIVE: []
|
638
|
+
end
|
639
|
+
|
640
|
+
class LoggingOptions
|
641
|
+
attr_accessor role_arn: ::String
|
642
|
+
attr_accessor level: ("ERROR")
|
643
|
+
attr_accessor enabled: bool
|
644
|
+
SENSITIVE: []
|
645
|
+
end
|
646
|
+
|
647
|
+
class MathActivity
|
648
|
+
attr_accessor name: ::String
|
649
|
+
attr_accessor attribute: ::String
|
650
|
+
attr_accessor math: ::String
|
651
|
+
attr_accessor next: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class Message
|
656
|
+
attr_accessor message_id: ::String
|
657
|
+
attr_accessor payload: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class OutputFileUriValue
|
662
|
+
attr_accessor file_name: ::String
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class ParquetConfiguration
|
667
|
+
attr_accessor schema_definition: Types::SchemaDefinition
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class Partition
|
672
|
+
attr_accessor attribute_name: ::String
|
673
|
+
SENSITIVE: []
|
674
|
+
end
|
675
|
+
|
676
|
+
class Pipeline
|
677
|
+
attr_accessor name: ::String
|
678
|
+
attr_accessor arn: ::String
|
679
|
+
attr_accessor activities: ::Array[Types::PipelineActivity]
|
680
|
+
attr_accessor reprocessing_summaries: ::Array[Types::ReprocessingSummary]
|
681
|
+
attr_accessor creation_time: ::Time
|
682
|
+
attr_accessor last_update_time: ::Time
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class PipelineActivity
|
687
|
+
attr_accessor channel: Types::ChannelActivity
|
688
|
+
attr_accessor lambda: Types::LambdaActivity
|
689
|
+
attr_accessor datastore: Types::DatastoreActivity
|
690
|
+
attr_accessor add_attributes: Types::AddAttributesActivity
|
691
|
+
attr_accessor remove_attributes: Types::RemoveAttributesActivity
|
692
|
+
attr_accessor select_attributes: Types::SelectAttributesActivity
|
693
|
+
attr_accessor filter: Types::FilterActivity
|
694
|
+
attr_accessor math: Types::MathActivity
|
695
|
+
attr_accessor device_registry_enrich: Types::DeviceRegistryEnrichActivity
|
696
|
+
attr_accessor device_shadow_enrich: Types::DeviceShadowEnrichActivity
|
697
|
+
SENSITIVE: []
|
698
|
+
end
|
699
|
+
|
700
|
+
class PipelineSummary
|
701
|
+
attr_accessor pipeline_name: ::String
|
702
|
+
attr_accessor reprocessing_summaries: ::Array[Types::ReprocessingSummary]
|
703
|
+
attr_accessor creation_time: ::Time
|
704
|
+
attr_accessor last_update_time: ::Time
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class PutLoggingOptionsRequest
|
709
|
+
attr_accessor logging_options: Types::LoggingOptions
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class QueryFilter
|
714
|
+
attr_accessor delta_time: Types::DeltaTime
|
715
|
+
SENSITIVE: []
|
716
|
+
end
|
717
|
+
|
718
|
+
class RemoveAttributesActivity
|
719
|
+
attr_accessor name: ::String
|
720
|
+
attr_accessor attributes: ::Array[::String]
|
721
|
+
attr_accessor next: ::String
|
722
|
+
SENSITIVE: []
|
723
|
+
end
|
724
|
+
|
725
|
+
class ReprocessingSummary
|
726
|
+
attr_accessor id: ::String
|
727
|
+
attr_accessor status: ("RUNNING" | "SUCCEEDED" | "CANCELLED" | "FAILED")
|
728
|
+
attr_accessor creation_time: ::Time
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class ResourceAlreadyExistsException
|
733
|
+
attr_accessor message: ::String
|
734
|
+
attr_accessor resource_id: ::String
|
735
|
+
attr_accessor resource_arn: ::String
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class ResourceConfiguration
|
740
|
+
attr_accessor compute_type: ("ACU_1" | "ACU_2")
|
741
|
+
attr_accessor volume_size_in_gb: ::Integer
|
742
|
+
SENSITIVE: []
|
743
|
+
end
|
744
|
+
|
745
|
+
class ResourceNotFoundException
|
746
|
+
attr_accessor message: ::String
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class RetentionPeriod
|
751
|
+
attr_accessor unlimited: bool
|
752
|
+
attr_accessor number_of_days: ::Integer
|
753
|
+
SENSITIVE: []
|
754
|
+
end
|
755
|
+
|
756
|
+
class RunPipelineActivityRequest
|
757
|
+
attr_accessor pipeline_activity: Types::PipelineActivity
|
758
|
+
attr_accessor payloads: ::Array[::String]
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class RunPipelineActivityResponse
|
763
|
+
attr_accessor payloads: ::Array[::String]
|
764
|
+
attr_accessor log_result: ::String
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class S3DestinationConfiguration
|
769
|
+
attr_accessor bucket: ::String
|
770
|
+
attr_accessor key: ::String
|
771
|
+
attr_accessor glue_configuration: Types::GlueConfiguration
|
772
|
+
attr_accessor role_arn: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class SampleChannelDataRequest
|
777
|
+
attr_accessor channel_name: ::String
|
778
|
+
attr_accessor max_messages: ::Integer
|
779
|
+
attr_accessor start_time: ::Time
|
780
|
+
attr_accessor end_time: ::Time
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class SampleChannelDataResponse
|
785
|
+
attr_accessor payloads: ::Array[::String]
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class Schedule
|
790
|
+
attr_accessor expression: ::String
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class SchemaDefinition
|
795
|
+
attr_accessor columns: ::Array[Types::Column]
|
796
|
+
SENSITIVE: []
|
797
|
+
end
|
798
|
+
|
799
|
+
class SelectAttributesActivity
|
800
|
+
attr_accessor name: ::String
|
801
|
+
attr_accessor attributes: ::Array[::String]
|
802
|
+
attr_accessor next: ::String
|
803
|
+
SENSITIVE: []
|
804
|
+
end
|
805
|
+
|
806
|
+
class ServiceManagedChannelS3Storage < Aws::EmptyStructure
|
807
|
+
end
|
808
|
+
|
809
|
+
class ServiceManagedChannelS3StorageSummary < Aws::EmptyStructure
|
810
|
+
end
|
811
|
+
|
812
|
+
class ServiceManagedDatastoreS3Storage < Aws::EmptyStructure
|
813
|
+
end
|
814
|
+
|
815
|
+
class ServiceManagedDatastoreS3StorageSummary < Aws::EmptyStructure
|
816
|
+
end
|
817
|
+
|
818
|
+
class ServiceUnavailableException
|
819
|
+
attr_accessor message: ::String
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class SqlQueryDatasetAction
|
824
|
+
attr_accessor sql_query: ::String
|
825
|
+
attr_accessor filters: ::Array[Types::QueryFilter]
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class StartPipelineReprocessingRequest
|
830
|
+
attr_accessor pipeline_name: ::String
|
831
|
+
attr_accessor start_time: ::Time
|
832
|
+
attr_accessor end_time: ::Time
|
833
|
+
attr_accessor channel_messages: Types::ChannelMessages
|
834
|
+
SENSITIVE: []
|
835
|
+
end
|
836
|
+
|
837
|
+
class StartPipelineReprocessingResponse
|
838
|
+
attr_accessor reprocessing_id: ::String
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class Tag
|
843
|
+
attr_accessor key: ::String
|
844
|
+
attr_accessor value: ::String
|
845
|
+
SENSITIVE: []
|
846
|
+
end
|
847
|
+
|
848
|
+
class TagResourceRequest
|
849
|
+
attr_accessor resource_arn: ::String
|
850
|
+
attr_accessor tags: ::Array[Types::Tag]
|
851
|
+
SENSITIVE: []
|
852
|
+
end
|
853
|
+
|
854
|
+
class TagResourceResponse < Aws::EmptyStructure
|
855
|
+
end
|
856
|
+
|
857
|
+
class ThrottlingException
|
858
|
+
attr_accessor message: ::String
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class TimestampPartition
|
863
|
+
attr_accessor attribute_name: ::String
|
864
|
+
attr_accessor timestamp_format: ::String
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class TriggeringDataset
|
869
|
+
attr_accessor name: ::String
|
870
|
+
SENSITIVE: []
|
871
|
+
end
|
872
|
+
|
873
|
+
class UntagResourceRequest
|
874
|
+
attr_accessor resource_arn: ::String
|
875
|
+
attr_accessor tag_keys: ::Array[::String]
|
876
|
+
SENSITIVE: []
|
877
|
+
end
|
878
|
+
|
879
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
880
|
+
end
|
881
|
+
|
882
|
+
class UpdateChannelRequest
|
883
|
+
attr_accessor channel_name: ::String
|
884
|
+
attr_accessor channel_storage: Types::ChannelStorage
|
885
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class UpdateDatasetRequest
|
890
|
+
attr_accessor dataset_name: ::String
|
891
|
+
attr_accessor actions: ::Array[Types::DatasetAction]
|
892
|
+
attr_accessor triggers: ::Array[Types::DatasetTrigger]
|
893
|
+
attr_accessor content_delivery_rules: ::Array[Types::DatasetContentDeliveryRule]
|
894
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
895
|
+
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
896
|
+
attr_accessor late_data_rules: ::Array[Types::LateDataRule]
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class UpdateDatastoreRequest
|
901
|
+
attr_accessor datastore_name: ::String
|
902
|
+
attr_accessor retention_period: Types::RetentionPeriod
|
903
|
+
attr_accessor datastore_storage: Types::DatastoreStorage
|
904
|
+
attr_accessor file_format_configuration: Types::FileFormatConfiguration
|
905
|
+
SENSITIVE: []
|
906
|
+
end
|
907
|
+
|
908
|
+
class UpdatePipelineRequest
|
909
|
+
attr_accessor pipeline_name: ::String
|
910
|
+
attr_accessor pipeline_activities: ::Array[Types::PipelineActivity]
|
911
|
+
SENSITIVE: []
|
912
|
+
end
|
913
|
+
|
914
|
+
class Variable
|
915
|
+
attr_accessor name: ::String
|
916
|
+
attr_accessor string_value: ::String
|
917
|
+
attr_accessor double_value: ::Float
|
918
|
+
attr_accessor dataset_content_version_value: Types::DatasetContentVersionValue
|
919
|
+
attr_accessor output_file_uri_value: Types::OutputFileUriValue
|
920
|
+
SENSITIVE: []
|
921
|
+
end
|
922
|
+
|
923
|
+
class VersioningConfiguration
|
924
|
+
attr_accessor unlimited: bool
|
925
|
+
attr_accessor max_versions: ::Integer
|
926
|
+
SENSITIVE: []
|
927
|
+
end
|
928
|
+
end
|
929
|
+
end
|