aws-sdk-greengrass 1.62.0 → 1.63.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-greengrass/client.rb +1 -1
- data/lib/aws-sdk-greengrass/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-greengrass.rb +1 -1
- data/sig/client.rbs +1562 -0
- data/sig/errors.rbs +24 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1561 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1561 @@
|
|
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::Greengrass
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AssociateRoleToGroupRequest
|
12
|
+
attr_accessor group_id: ::String
|
13
|
+
attr_accessor role_arn: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AssociateRoleToGroupResponse
|
18
|
+
attr_accessor associated_at: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class AssociateServiceRoleToAccountRequest
|
23
|
+
attr_accessor role_arn: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AssociateServiceRoleToAccountResponse
|
28
|
+
attr_accessor associated_at: ::String
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class BadRequestException
|
33
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
34
|
+
attr_accessor message: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class BulkDeployment
|
39
|
+
attr_accessor bulk_deployment_arn: ::String
|
40
|
+
attr_accessor bulk_deployment_id: ::String
|
41
|
+
attr_accessor created_at: ::String
|
42
|
+
SENSITIVE: []
|
43
|
+
end
|
44
|
+
|
45
|
+
class BulkDeploymentMetrics
|
46
|
+
attr_accessor invalid_input_records: ::Integer
|
47
|
+
attr_accessor records_processed: ::Integer
|
48
|
+
attr_accessor retry_attempts: ::Integer
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class BulkDeploymentResult
|
53
|
+
attr_accessor created_at: ::String
|
54
|
+
attr_accessor deployment_arn: ::String
|
55
|
+
attr_accessor deployment_id: ::String
|
56
|
+
attr_accessor deployment_status: ::String
|
57
|
+
attr_accessor deployment_type: ("NewDeployment" | "Redeployment" | "ResetDeployment" | "ForceResetDeployment")
|
58
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
59
|
+
attr_accessor error_message: ::String
|
60
|
+
attr_accessor group_arn: ::String
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class ConnectivityInfo
|
65
|
+
attr_accessor host_address: ::String
|
66
|
+
attr_accessor id: ::String
|
67
|
+
attr_accessor metadata: ::String
|
68
|
+
attr_accessor port_number: ::Integer
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class Connector
|
73
|
+
attr_accessor connector_arn: ::String
|
74
|
+
attr_accessor id: ::String
|
75
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class ConnectorDefinitionVersion
|
80
|
+
attr_accessor connectors: ::Array[Types::Connector]
|
81
|
+
SENSITIVE: []
|
82
|
+
end
|
83
|
+
|
84
|
+
class Core
|
85
|
+
attr_accessor certificate_arn: ::String
|
86
|
+
attr_accessor id: ::String
|
87
|
+
attr_accessor sync_shadow: bool
|
88
|
+
attr_accessor thing_arn: ::String
|
89
|
+
SENSITIVE: []
|
90
|
+
end
|
91
|
+
|
92
|
+
class CoreDefinitionVersion
|
93
|
+
attr_accessor cores: ::Array[Types::Core]
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateConnectorDefinitionRequest
|
98
|
+
attr_accessor amzn_client_token: ::String
|
99
|
+
attr_accessor initial_version: Types::ConnectorDefinitionVersion
|
100
|
+
attr_accessor name: ::String
|
101
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class CreateConnectorDefinitionResponse
|
106
|
+
attr_accessor arn: ::String
|
107
|
+
attr_accessor creation_timestamp: ::String
|
108
|
+
attr_accessor id: ::String
|
109
|
+
attr_accessor last_updated_timestamp: ::String
|
110
|
+
attr_accessor latest_version: ::String
|
111
|
+
attr_accessor latest_version_arn: ::String
|
112
|
+
attr_accessor name: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class CreateConnectorDefinitionVersionRequest
|
117
|
+
attr_accessor amzn_client_token: ::String
|
118
|
+
attr_accessor connector_definition_id: ::String
|
119
|
+
attr_accessor connectors: ::Array[Types::Connector]
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CreateConnectorDefinitionVersionResponse
|
124
|
+
attr_accessor arn: ::String
|
125
|
+
attr_accessor creation_timestamp: ::String
|
126
|
+
attr_accessor id: ::String
|
127
|
+
attr_accessor version: ::String
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
131
|
+
class CreateCoreDefinitionRequest
|
132
|
+
attr_accessor amzn_client_token: ::String
|
133
|
+
attr_accessor initial_version: Types::CoreDefinitionVersion
|
134
|
+
attr_accessor name: ::String
|
135
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CreateCoreDefinitionResponse
|
140
|
+
attr_accessor arn: ::String
|
141
|
+
attr_accessor creation_timestamp: ::String
|
142
|
+
attr_accessor id: ::String
|
143
|
+
attr_accessor last_updated_timestamp: ::String
|
144
|
+
attr_accessor latest_version: ::String
|
145
|
+
attr_accessor latest_version_arn: ::String
|
146
|
+
attr_accessor name: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class CreateCoreDefinitionVersionRequest
|
151
|
+
attr_accessor amzn_client_token: ::String
|
152
|
+
attr_accessor core_definition_id: ::String
|
153
|
+
attr_accessor cores: ::Array[Types::Core]
|
154
|
+
SENSITIVE: []
|
155
|
+
end
|
156
|
+
|
157
|
+
class CreateCoreDefinitionVersionResponse
|
158
|
+
attr_accessor arn: ::String
|
159
|
+
attr_accessor creation_timestamp: ::String
|
160
|
+
attr_accessor id: ::String
|
161
|
+
attr_accessor version: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class CreateDeploymentRequest
|
166
|
+
attr_accessor amzn_client_token: ::String
|
167
|
+
attr_accessor deployment_id: ::String
|
168
|
+
attr_accessor deployment_type: ("NewDeployment" | "Redeployment" | "ResetDeployment" | "ForceResetDeployment")
|
169
|
+
attr_accessor group_id: ::String
|
170
|
+
attr_accessor group_version_id: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class CreateDeploymentResponse
|
175
|
+
attr_accessor deployment_arn: ::String
|
176
|
+
attr_accessor deployment_id: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class CreateDeviceDefinitionRequest
|
181
|
+
attr_accessor amzn_client_token: ::String
|
182
|
+
attr_accessor initial_version: Types::DeviceDefinitionVersion
|
183
|
+
attr_accessor name: ::String
|
184
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class CreateDeviceDefinitionResponse
|
189
|
+
attr_accessor arn: ::String
|
190
|
+
attr_accessor creation_timestamp: ::String
|
191
|
+
attr_accessor id: ::String
|
192
|
+
attr_accessor last_updated_timestamp: ::String
|
193
|
+
attr_accessor latest_version: ::String
|
194
|
+
attr_accessor latest_version_arn: ::String
|
195
|
+
attr_accessor name: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class CreateDeviceDefinitionVersionRequest
|
200
|
+
attr_accessor amzn_client_token: ::String
|
201
|
+
attr_accessor device_definition_id: ::String
|
202
|
+
attr_accessor devices: ::Array[Types::Device]
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class CreateDeviceDefinitionVersionResponse
|
207
|
+
attr_accessor arn: ::String
|
208
|
+
attr_accessor creation_timestamp: ::String
|
209
|
+
attr_accessor id: ::String
|
210
|
+
attr_accessor version: ::String
|
211
|
+
SENSITIVE: []
|
212
|
+
end
|
213
|
+
|
214
|
+
class CreateFunctionDefinitionRequest
|
215
|
+
attr_accessor amzn_client_token: ::String
|
216
|
+
attr_accessor initial_version: Types::FunctionDefinitionVersion
|
217
|
+
attr_accessor name: ::String
|
218
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
219
|
+
SENSITIVE: []
|
220
|
+
end
|
221
|
+
|
222
|
+
class CreateFunctionDefinitionResponse
|
223
|
+
attr_accessor arn: ::String
|
224
|
+
attr_accessor creation_timestamp: ::String
|
225
|
+
attr_accessor id: ::String
|
226
|
+
attr_accessor last_updated_timestamp: ::String
|
227
|
+
attr_accessor latest_version: ::String
|
228
|
+
attr_accessor latest_version_arn: ::String
|
229
|
+
attr_accessor name: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class CreateFunctionDefinitionVersionRequest
|
234
|
+
attr_accessor amzn_client_token: ::String
|
235
|
+
attr_accessor default_config: Types::FunctionDefaultConfig
|
236
|
+
attr_accessor function_definition_id: ::String
|
237
|
+
attr_accessor functions: ::Array[Types::Function]
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class CreateFunctionDefinitionVersionResponse
|
242
|
+
attr_accessor arn: ::String
|
243
|
+
attr_accessor creation_timestamp: ::String
|
244
|
+
attr_accessor id: ::String
|
245
|
+
attr_accessor version: ::String
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class CreateGroupCertificateAuthorityRequest
|
250
|
+
attr_accessor amzn_client_token: ::String
|
251
|
+
attr_accessor group_id: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class CreateGroupCertificateAuthorityResponse
|
256
|
+
attr_accessor group_certificate_authority_arn: ::String
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class CreateGroupRequest
|
261
|
+
attr_accessor amzn_client_token: ::String
|
262
|
+
attr_accessor initial_version: Types::GroupVersion
|
263
|
+
attr_accessor name: ::String
|
264
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class CreateGroupResponse
|
269
|
+
attr_accessor arn: ::String
|
270
|
+
attr_accessor creation_timestamp: ::String
|
271
|
+
attr_accessor id: ::String
|
272
|
+
attr_accessor last_updated_timestamp: ::String
|
273
|
+
attr_accessor latest_version: ::String
|
274
|
+
attr_accessor latest_version_arn: ::String
|
275
|
+
attr_accessor name: ::String
|
276
|
+
SENSITIVE: []
|
277
|
+
end
|
278
|
+
|
279
|
+
class CreateGroupVersionRequest
|
280
|
+
attr_accessor amzn_client_token: ::String
|
281
|
+
attr_accessor connector_definition_version_arn: ::String
|
282
|
+
attr_accessor core_definition_version_arn: ::String
|
283
|
+
attr_accessor device_definition_version_arn: ::String
|
284
|
+
attr_accessor function_definition_version_arn: ::String
|
285
|
+
attr_accessor group_id: ::String
|
286
|
+
attr_accessor logger_definition_version_arn: ::String
|
287
|
+
attr_accessor resource_definition_version_arn: ::String
|
288
|
+
attr_accessor subscription_definition_version_arn: ::String
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class CreateGroupVersionResponse
|
293
|
+
attr_accessor arn: ::String
|
294
|
+
attr_accessor creation_timestamp: ::String
|
295
|
+
attr_accessor id: ::String
|
296
|
+
attr_accessor version: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class CreateLoggerDefinitionRequest
|
301
|
+
attr_accessor amzn_client_token: ::String
|
302
|
+
attr_accessor initial_version: Types::LoggerDefinitionVersion
|
303
|
+
attr_accessor name: ::String
|
304
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class CreateLoggerDefinitionResponse
|
309
|
+
attr_accessor arn: ::String
|
310
|
+
attr_accessor creation_timestamp: ::String
|
311
|
+
attr_accessor id: ::String
|
312
|
+
attr_accessor last_updated_timestamp: ::String
|
313
|
+
attr_accessor latest_version: ::String
|
314
|
+
attr_accessor latest_version_arn: ::String
|
315
|
+
attr_accessor name: ::String
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class CreateLoggerDefinitionVersionRequest
|
320
|
+
attr_accessor amzn_client_token: ::String
|
321
|
+
attr_accessor logger_definition_id: ::String
|
322
|
+
attr_accessor loggers: ::Array[Types::Logger]
|
323
|
+
SENSITIVE: []
|
324
|
+
end
|
325
|
+
|
326
|
+
class CreateLoggerDefinitionVersionResponse
|
327
|
+
attr_accessor arn: ::String
|
328
|
+
attr_accessor creation_timestamp: ::String
|
329
|
+
attr_accessor id: ::String
|
330
|
+
attr_accessor version: ::String
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class CreateResourceDefinitionRequest
|
335
|
+
attr_accessor amzn_client_token: ::String
|
336
|
+
attr_accessor initial_version: Types::ResourceDefinitionVersion
|
337
|
+
attr_accessor name: ::String
|
338
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
339
|
+
SENSITIVE: []
|
340
|
+
end
|
341
|
+
|
342
|
+
class CreateResourceDefinitionResponse
|
343
|
+
attr_accessor arn: ::String
|
344
|
+
attr_accessor creation_timestamp: ::String
|
345
|
+
attr_accessor id: ::String
|
346
|
+
attr_accessor last_updated_timestamp: ::String
|
347
|
+
attr_accessor latest_version: ::String
|
348
|
+
attr_accessor latest_version_arn: ::String
|
349
|
+
attr_accessor name: ::String
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class CreateResourceDefinitionVersionRequest
|
354
|
+
attr_accessor amzn_client_token: ::String
|
355
|
+
attr_accessor resource_definition_id: ::String
|
356
|
+
attr_accessor resources: ::Array[Types::Resource]
|
357
|
+
SENSITIVE: []
|
358
|
+
end
|
359
|
+
|
360
|
+
class CreateResourceDefinitionVersionResponse
|
361
|
+
attr_accessor arn: ::String
|
362
|
+
attr_accessor creation_timestamp: ::String
|
363
|
+
attr_accessor id: ::String
|
364
|
+
attr_accessor version: ::String
|
365
|
+
SENSITIVE: []
|
366
|
+
end
|
367
|
+
|
368
|
+
class CreateSoftwareUpdateJobRequest
|
369
|
+
attr_accessor amzn_client_token: ::String
|
370
|
+
attr_accessor s3_url_signer_role: ::String
|
371
|
+
attr_accessor software_to_update: ("core" | "ota_agent")
|
372
|
+
attr_accessor update_agent_log_level: ("NONE" | "TRACE" | "DEBUG" | "VERBOSE" | "INFO" | "WARN" | "ERROR" | "FATAL")
|
373
|
+
attr_accessor update_targets: ::Array[::String]
|
374
|
+
attr_accessor update_targets_architecture: ("armv6l" | "armv7l" | "x86_64" | "aarch64")
|
375
|
+
attr_accessor update_targets_operating_system: ("ubuntu" | "raspbian" | "amazon_linux" | "openwrt")
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class CreateSoftwareUpdateJobResponse
|
380
|
+
attr_accessor iot_job_arn: ::String
|
381
|
+
attr_accessor iot_job_id: ::String
|
382
|
+
attr_accessor platform_software_version: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class CreateSubscriptionDefinitionRequest
|
387
|
+
attr_accessor amzn_client_token: ::String
|
388
|
+
attr_accessor initial_version: Types::SubscriptionDefinitionVersion
|
389
|
+
attr_accessor name: ::String
|
390
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class CreateSubscriptionDefinitionResponse
|
395
|
+
attr_accessor arn: ::String
|
396
|
+
attr_accessor creation_timestamp: ::String
|
397
|
+
attr_accessor id: ::String
|
398
|
+
attr_accessor last_updated_timestamp: ::String
|
399
|
+
attr_accessor latest_version: ::String
|
400
|
+
attr_accessor latest_version_arn: ::String
|
401
|
+
attr_accessor name: ::String
|
402
|
+
SENSITIVE: []
|
403
|
+
end
|
404
|
+
|
405
|
+
class CreateSubscriptionDefinitionVersionRequest
|
406
|
+
attr_accessor amzn_client_token: ::String
|
407
|
+
attr_accessor subscription_definition_id: ::String
|
408
|
+
attr_accessor subscriptions: ::Array[Types::Subscription]
|
409
|
+
SENSITIVE: []
|
410
|
+
end
|
411
|
+
|
412
|
+
class CreateSubscriptionDefinitionVersionResponse
|
413
|
+
attr_accessor arn: ::String
|
414
|
+
attr_accessor creation_timestamp: ::String
|
415
|
+
attr_accessor id: ::String
|
416
|
+
attr_accessor version: ::String
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class DefinitionInformation
|
421
|
+
attr_accessor arn: ::String
|
422
|
+
attr_accessor creation_timestamp: ::String
|
423
|
+
attr_accessor id: ::String
|
424
|
+
attr_accessor last_updated_timestamp: ::String
|
425
|
+
attr_accessor latest_version: ::String
|
426
|
+
attr_accessor latest_version_arn: ::String
|
427
|
+
attr_accessor name: ::String
|
428
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
429
|
+
SENSITIVE: []
|
430
|
+
end
|
431
|
+
|
432
|
+
class DeleteConnectorDefinitionRequest
|
433
|
+
attr_accessor connector_definition_id: ::String
|
434
|
+
SENSITIVE: []
|
435
|
+
end
|
436
|
+
|
437
|
+
class DeleteConnectorDefinitionResponse < Aws::EmptyStructure
|
438
|
+
end
|
439
|
+
|
440
|
+
class DeleteCoreDefinitionRequest
|
441
|
+
attr_accessor core_definition_id: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class DeleteCoreDefinitionResponse < Aws::EmptyStructure
|
446
|
+
end
|
447
|
+
|
448
|
+
class DeleteDeviceDefinitionRequest
|
449
|
+
attr_accessor device_definition_id: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class DeleteDeviceDefinitionResponse < Aws::EmptyStructure
|
454
|
+
end
|
455
|
+
|
456
|
+
class DeleteFunctionDefinitionRequest
|
457
|
+
attr_accessor function_definition_id: ::String
|
458
|
+
SENSITIVE: []
|
459
|
+
end
|
460
|
+
|
461
|
+
class DeleteFunctionDefinitionResponse < Aws::EmptyStructure
|
462
|
+
end
|
463
|
+
|
464
|
+
class DeleteGroupRequest
|
465
|
+
attr_accessor group_id: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class DeleteGroupResponse < Aws::EmptyStructure
|
470
|
+
end
|
471
|
+
|
472
|
+
class DeleteLoggerDefinitionRequest
|
473
|
+
attr_accessor logger_definition_id: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class DeleteLoggerDefinitionResponse < Aws::EmptyStructure
|
478
|
+
end
|
479
|
+
|
480
|
+
class DeleteResourceDefinitionRequest
|
481
|
+
attr_accessor resource_definition_id: ::String
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class DeleteResourceDefinitionResponse < Aws::EmptyStructure
|
486
|
+
end
|
487
|
+
|
488
|
+
class DeleteSubscriptionDefinitionRequest
|
489
|
+
attr_accessor subscription_definition_id: ::String
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class DeleteSubscriptionDefinitionResponse < Aws::EmptyStructure
|
494
|
+
end
|
495
|
+
|
496
|
+
class Deployment
|
497
|
+
attr_accessor created_at: ::String
|
498
|
+
attr_accessor deployment_arn: ::String
|
499
|
+
attr_accessor deployment_id: ::String
|
500
|
+
attr_accessor deployment_type: ("NewDeployment" | "Redeployment" | "ResetDeployment" | "ForceResetDeployment")
|
501
|
+
attr_accessor group_arn: ::String
|
502
|
+
SENSITIVE: []
|
503
|
+
end
|
504
|
+
|
505
|
+
class Device
|
506
|
+
attr_accessor certificate_arn: ::String
|
507
|
+
attr_accessor id: ::String
|
508
|
+
attr_accessor sync_shadow: bool
|
509
|
+
attr_accessor thing_arn: ::String
|
510
|
+
SENSITIVE: []
|
511
|
+
end
|
512
|
+
|
513
|
+
class DeviceDefinitionVersion
|
514
|
+
attr_accessor devices: ::Array[Types::Device]
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class DisassociateRoleFromGroupRequest
|
519
|
+
attr_accessor group_id: ::String
|
520
|
+
SENSITIVE: []
|
521
|
+
end
|
522
|
+
|
523
|
+
class DisassociateRoleFromGroupResponse
|
524
|
+
attr_accessor disassociated_at: ::String
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class DisassociateServiceRoleFromAccountRequest < Aws::EmptyStructure
|
529
|
+
end
|
530
|
+
|
531
|
+
class DisassociateServiceRoleFromAccountResponse
|
532
|
+
attr_accessor disassociated_at: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class Empty < Aws::EmptyStructure
|
537
|
+
end
|
538
|
+
|
539
|
+
class ErrorDetail
|
540
|
+
attr_accessor detailed_error_code: ::String
|
541
|
+
attr_accessor detailed_error_message: ::String
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class Function
|
546
|
+
attr_accessor function_arn: ::String
|
547
|
+
attr_accessor function_configuration: Types::FunctionConfiguration
|
548
|
+
attr_accessor id: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class FunctionConfiguration
|
553
|
+
attr_accessor encoding_type: ("binary" | "json")
|
554
|
+
attr_accessor environment: Types::FunctionConfigurationEnvironment
|
555
|
+
attr_accessor exec_args: ::String
|
556
|
+
attr_accessor executable: ::String
|
557
|
+
attr_accessor memory_size: ::Integer
|
558
|
+
attr_accessor pinned: bool
|
559
|
+
attr_accessor timeout: ::Integer
|
560
|
+
attr_accessor function_runtime_override: ::String
|
561
|
+
SENSITIVE: []
|
562
|
+
end
|
563
|
+
|
564
|
+
class FunctionConfigurationEnvironment
|
565
|
+
attr_accessor access_sysfs: bool
|
566
|
+
attr_accessor execution: Types::FunctionExecutionConfig
|
567
|
+
attr_accessor resource_access_policies: ::Array[Types::ResourceAccessPolicy]
|
568
|
+
attr_accessor variables: ::Hash[::String, ::String]
|
569
|
+
SENSITIVE: []
|
570
|
+
end
|
571
|
+
|
572
|
+
class FunctionDefaultConfig
|
573
|
+
attr_accessor execution: Types::FunctionDefaultExecutionConfig
|
574
|
+
SENSITIVE: []
|
575
|
+
end
|
576
|
+
|
577
|
+
class FunctionDefaultExecutionConfig
|
578
|
+
attr_accessor isolation_mode: ("GreengrassContainer" | "NoContainer")
|
579
|
+
attr_accessor run_as: Types::FunctionRunAsConfig
|
580
|
+
SENSITIVE: []
|
581
|
+
end
|
582
|
+
|
583
|
+
class FunctionDefinitionVersion
|
584
|
+
attr_accessor default_config: Types::FunctionDefaultConfig
|
585
|
+
attr_accessor functions: ::Array[Types::Function]
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class FunctionExecutionConfig
|
590
|
+
attr_accessor isolation_mode: ("GreengrassContainer" | "NoContainer")
|
591
|
+
attr_accessor run_as: Types::FunctionRunAsConfig
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class FunctionRunAsConfig
|
596
|
+
attr_accessor gid: ::Integer
|
597
|
+
attr_accessor uid: ::Integer
|
598
|
+
SENSITIVE: []
|
599
|
+
end
|
600
|
+
|
601
|
+
class GeneralError
|
602
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
603
|
+
attr_accessor message: ::String
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class GetAssociatedRoleRequest
|
608
|
+
attr_accessor group_id: ::String
|
609
|
+
SENSITIVE: []
|
610
|
+
end
|
611
|
+
|
612
|
+
class GetAssociatedRoleResponse
|
613
|
+
attr_accessor associated_at: ::String
|
614
|
+
attr_accessor role_arn: ::String
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class GetBulkDeploymentStatusRequest
|
619
|
+
attr_accessor bulk_deployment_id: ::String
|
620
|
+
SENSITIVE: []
|
621
|
+
end
|
622
|
+
|
623
|
+
class GetBulkDeploymentStatusResponse
|
624
|
+
attr_accessor bulk_deployment_metrics: Types::BulkDeploymentMetrics
|
625
|
+
attr_accessor bulk_deployment_status: ("Initializing" | "Running" | "Completed" | "Stopping" | "Stopped" | "Failed")
|
626
|
+
attr_accessor created_at: ::String
|
627
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
628
|
+
attr_accessor error_message: ::String
|
629
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class GetConnectivityInfoRequest
|
634
|
+
attr_accessor thing_name: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class GetConnectivityInfoResponse
|
639
|
+
attr_accessor connectivity_info: ::Array[Types::ConnectivityInfo]
|
640
|
+
attr_accessor message: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class GetConnectorDefinitionRequest
|
645
|
+
attr_accessor connector_definition_id: ::String
|
646
|
+
SENSITIVE: []
|
647
|
+
end
|
648
|
+
|
649
|
+
class GetConnectorDefinitionResponse
|
650
|
+
attr_accessor arn: ::String
|
651
|
+
attr_accessor creation_timestamp: ::String
|
652
|
+
attr_accessor id: ::String
|
653
|
+
attr_accessor last_updated_timestamp: ::String
|
654
|
+
attr_accessor latest_version: ::String
|
655
|
+
attr_accessor latest_version_arn: ::String
|
656
|
+
attr_accessor name: ::String
|
657
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class GetConnectorDefinitionVersionRequest
|
662
|
+
attr_accessor connector_definition_id: ::String
|
663
|
+
attr_accessor connector_definition_version_id: ::String
|
664
|
+
attr_accessor next_token: ::String
|
665
|
+
SENSITIVE: []
|
666
|
+
end
|
667
|
+
|
668
|
+
class GetConnectorDefinitionVersionResponse
|
669
|
+
attr_accessor arn: ::String
|
670
|
+
attr_accessor creation_timestamp: ::String
|
671
|
+
attr_accessor definition: Types::ConnectorDefinitionVersion
|
672
|
+
attr_accessor id: ::String
|
673
|
+
attr_accessor next_token: ::String
|
674
|
+
attr_accessor version: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class GetCoreDefinitionRequest
|
679
|
+
attr_accessor core_definition_id: ::String
|
680
|
+
SENSITIVE: []
|
681
|
+
end
|
682
|
+
|
683
|
+
class GetCoreDefinitionResponse
|
684
|
+
attr_accessor arn: ::String
|
685
|
+
attr_accessor creation_timestamp: ::String
|
686
|
+
attr_accessor id: ::String
|
687
|
+
attr_accessor last_updated_timestamp: ::String
|
688
|
+
attr_accessor latest_version: ::String
|
689
|
+
attr_accessor latest_version_arn: ::String
|
690
|
+
attr_accessor name: ::String
|
691
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
692
|
+
SENSITIVE: []
|
693
|
+
end
|
694
|
+
|
695
|
+
class GetCoreDefinitionVersionRequest
|
696
|
+
attr_accessor core_definition_id: ::String
|
697
|
+
attr_accessor core_definition_version_id: ::String
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class GetCoreDefinitionVersionResponse
|
702
|
+
attr_accessor arn: ::String
|
703
|
+
attr_accessor creation_timestamp: ::String
|
704
|
+
attr_accessor definition: Types::CoreDefinitionVersion
|
705
|
+
attr_accessor id: ::String
|
706
|
+
attr_accessor next_token: ::String
|
707
|
+
attr_accessor version: ::String
|
708
|
+
SENSITIVE: []
|
709
|
+
end
|
710
|
+
|
711
|
+
class GetDeploymentStatusRequest
|
712
|
+
attr_accessor deployment_id: ::String
|
713
|
+
attr_accessor group_id: ::String
|
714
|
+
SENSITIVE: []
|
715
|
+
end
|
716
|
+
|
717
|
+
class GetDeploymentStatusResponse
|
718
|
+
attr_accessor deployment_status: ::String
|
719
|
+
attr_accessor deployment_type: ("NewDeployment" | "Redeployment" | "ResetDeployment" | "ForceResetDeployment")
|
720
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
721
|
+
attr_accessor error_message: ::String
|
722
|
+
attr_accessor updated_at: ::String
|
723
|
+
SENSITIVE: []
|
724
|
+
end
|
725
|
+
|
726
|
+
class GetDeviceDefinitionRequest
|
727
|
+
attr_accessor device_definition_id: ::String
|
728
|
+
SENSITIVE: []
|
729
|
+
end
|
730
|
+
|
731
|
+
class GetDeviceDefinitionResponse
|
732
|
+
attr_accessor arn: ::String
|
733
|
+
attr_accessor creation_timestamp: ::String
|
734
|
+
attr_accessor id: ::String
|
735
|
+
attr_accessor last_updated_timestamp: ::String
|
736
|
+
attr_accessor latest_version: ::String
|
737
|
+
attr_accessor latest_version_arn: ::String
|
738
|
+
attr_accessor name: ::String
|
739
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
740
|
+
SENSITIVE: []
|
741
|
+
end
|
742
|
+
|
743
|
+
class GetDeviceDefinitionVersionRequest
|
744
|
+
attr_accessor device_definition_id: ::String
|
745
|
+
attr_accessor device_definition_version_id: ::String
|
746
|
+
attr_accessor next_token: ::String
|
747
|
+
SENSITIVE: []
|
748
|
+
end
|
749
|
+
|
750
|
+
class GetDeviceDefinitionVersionResponse
|
751
|
+
attr_accessor arn: ::String
|
752
|
+
attr_accessor creation_timestamp: ::String
|
753
|
+
attr_accessor definition: Types::DeviceDefinitionVersion
|
754
|
+
attr_accessor id: ::String
|
755
|
+
attr_accessor next_token: ::String
|
756
|
+
attr_accessor version: ::String
|
757
|
+
SENSITIVE: []
|
758
|
+
end
|
759
|
+
|
760
|
+
class GetFunctionDefinitionRequest
|
761
|
+
attr_accessor function_definition_id: ::String
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class GetFunctionDefinitionResponse
|
766
|
+
attr_accessor arn: ::String
|
767
|
+
attr_accessor creation_timestamp: ::String
|
768
|
+
attr_accessor id: ::String
|
769
|
+
attr_accessor last_updated_timestamp: ::String
|
770
|
+
attr_accessor latest_version: ::String
|
771
|
+
attr_accessor latest_version_arn: ::String
|
772
|
+
attr_accessor name: ::String
|
773
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
774
|
+
SENSITIVE: []
|
775
|
+
end
|
776
|
+
|
777
|
+
class GetFunctionDefinitionVersionRequest
|
778
|
+
attr_accessor function_definition_id: ::String
|
779
|
+
attr_accessor function_definition_version_id: ::String
|
780
|
+
attr_accessor next_token: ::String
|
781
|
+
SENSITIVE: []
|
782
|
+
end
|
783
|
+
|
784
|
+
class GetFunctionDefinitionVersionResponse
|
785
|
+
attr_accessor arn: ::String
|
786
|
+
attr_accessor creation_timestamp: ::String
|
787
|
+
attr_accessor definition: Types::FunctionDefinitionVersion
|
788
|
+
attr_accessor id: ::String
|
789
|
+
attr_accessor next_token: ::String
|
790
|
+
attr_accessor version: ::String
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class GetGroupCertificateAuthorityRequest
|
795
|
+
attr_accessor certificate_authority_id: ::String
|
796
|
+
attr_accessor group_id: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class GetGroupCertificateAuthorityResponse
|
801
|
+
attr_accessor group_certificate_authority_arn: ::String
|
802
|
+
attr_accessor group_certificate_authority_id: ::String
|
803
|
+
attr_accessor pem_encoded_certificate: ::String
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
807
|
+
class GetGroupCertificateConfigurationRequest
|
808
|
+
attr_accessor group_id: ::String
|
809
|
+
SENSITIVE: []
|
810
|
+
end
|
811
|
+
|
812
|
+
class GetGroupCertificateConfigurationResponse
|
813
|
+
attr_accessor certificate_authority_expiry_in_milliseconds: ::String
|
814
|
+
attr_accessor certificate_expiry_in_milliseconds: ::String
|
815
|
+
attr_accessor group_id: ::String
|
816
|
+
SENSITIVE: []
|
817
|
+
end
|
818
|
+
|
819
|
+
class GetGroupRequest
|
820
|
+
attr_accessor group_id: ::String
|
821
|
+
SENSITIVE: []
|
822
|
+
end
|
823
|
+
|
824
|
+
class GetGroupResponse
|
825
|
+
attr_accessor arn: ::String
|
826
|
+
attr_accessor creation_timestamp: ::String
|
827
|
+
attr_accessor id: ::String
|
828
|
+
attr_accessor last_updated_timestamp: ::String
|
829
|
+
attr_accessor latest_version: ::String
|
830
|
+
attr_accessor latest_version_arn: ::String
|
831
|
+
attr_accessor name: ::String
|
832
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
|
836
|
+
class GetGroupVersionRequest
|
837
|
+
attr_accessor group_id: ::String
|
838
|
+
attr_accessor group_version_id: ::String
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class GetGroupVersionResponse
|
843
|
+
attr_accessor arn: ::String
|
844
|
+
attr_accessor creation_timestamp: ::String
|
845
|
+
attr_accessor definition: Types::GroupVersion
|
846
|
+
attr_accessor id: ::String
|
847
|
+
attr_accessor version: ::String
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class GetLoggerDefinitionRequest
|
852
|
+
attr_accessor logger_definition_id: ::String
|
853
|
+
SENSITIVE: []
|
854
|
+
end
|
855
|
+
|
856
|
+
class GetLoggerDefinitionResponse
|
857
|
+
attr_accessor arn: ::String
|
858
|
+
attr_accessor creation_timestamp: ::String
|
859
|
+
attr_accessor id: ::String
|
860
|
+
attr_accessor last_updated_timestamp: ::String
|
861
|
+
attr_accessor latest_version: ::String
|
862
|
+
attr_accessor latest_version_arn: ::String
|
863
|
+
attr_accessor name: ::String
|
864
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
865
|
+
SENSITIVE: []
|
866
|
+
end
|
867
|
+
|
868
|
+
class GetLoggerDefinitionVersionRequest
|
869
|
+
attr_accessor logger_definition_id: ::String
|
870
|
+
attr_accessor logger_definition_version_id: ::String
|
871
|
+
attr_accessor next_token: ::String
|
872
|
+
SENSITIVE: []
|
873
|
+
end
|
874
|
+
|
875
|
+
class GetLoggerDefinitionVersionResponse
|
876
|
+
attr_accessor arn: ::String
|
877
|
+
attr_accessor creation_timestamp: ::String
|
878
|
+
attr_accessor definition: Types::LoggerDefinitionVersion
|
879
|
+
attr_accessor id: ::String
|
880
|
+
attr_accessor version: ::String
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class GetResourceDefinitionRequest
|
885
|
+
attr_accessor resource_definition_id: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class GetResourceDefinitionResponse
|
890
|
+
attr_accessor arn: ::String
|
891
|
+
attr_accessor creation_timestamp: ::String
|
892
|
+
attr_accessor id: ::String
|
893
|
+
attr_accessor last_updated_timestamp: ::String
|
894
|
+
attr_accessor latest_version: ::String
|
895
|
+
attr_accessor latest_version_arn: ::String
|
896
|
+
attr_accessor name: ::String
|
897
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class GetResourceDefinitionVersionRequest
|
902
|
+
attr_accessor resource_definition_id: ::String
|
903
|
+
attr_accessor resource_definition_version_id: ::String
|
904
|
+
SENSITIVE: []
|
905
|
+
end
|
906
|
+
|
907
|
+
class GetResourceDefinitionVersionResponse
|
908
|
+
attr_accessor arn: ::String
|
909
|
+
attr_accessor creation_timestamp: ::String
|
910
|
+
attr_accessor definition: Types::ResourceDefinitionVersion
|
911
|
+
attr_accessor id: ::String
|
912
|
+
attr_accessor version: ::String
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class GetServiceRoleForAccountRequest < Aws::EmptyStructure
|
917
|
+
end
|
918
|
+
|
919
|
+
class GetServiceRoleForAccountResponse
|
920
|
+
attr_accessor associated_at: ::String
|
921
|
+
attr_accessor role_arn: ::String
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class GetSubscriptionDefinitionRequest
|
926
|
+
attr_accessor subscription_definition_id: ::String
|
927
|
+
SENSITIVE: []
|
928
|
+
end
|
929
|
+
|
930
|
+
class GetSubscriptionDefinitionResponse
|
931
|
+
attr_accessor arn: ::String
|
932
|
+
attr_accessor creation_timestamp: ::String
|
933
|
+
attr_accessor id: ::String
|
934
|
+
attr_accessor last_updated_timestamp: ::String
|
935
|
+
attr_accessor latest_version: ::String
|
936
|
+
attr_accessor latest_version_arn: ::String
|
937
|
+
attr_accessor name: ::String
|
938
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class GetSubscriptionDefinitionVersionRequest
|
943
|
+
attr_accessor next_token: ::String
|
944
|
+
attr_accessor subscription_definition_id: ::String
|
945
|
+
attr_accessor subscription_definition_version_id: ::String
|
946
|
+
SENSITIVE: []
|
947
|
+
end
|
948
|
+
|
949
|
+
class GetSubscriptionDefinitionVersionResponse
|
950
|
+
attr_accessor arn: ::String
|
951
|
+
attr_accessor creation_timestamp: ::String
|
952
|
+
attr_accessor definition: Types::SubscriptionDefinitionVersion
|
953
|
+
attr_accessor id: ::String
|
954
|
+
attr_accessor next_token: ::String
|
955
|
+
attr_accessor version: ::String
|
956
|
+
SENSITIVE: []
|
957
|
+
end
|
958
|
+
|
959
|
+
class GetThingRuntimeConfigurationRequest
|
960
|
+
attr_accessor thing_name: ::String
|
961
|
+
SENSITIVE: []
|
962
|
+
end
|
963
|
+
|
964
|
+
class GetThingRuntimeConfigurationResponse
|
965
|
+
attr_accessor runtime_configuration: Types::RuntimeConfiguration
|
966
|
+
SENSITIVE: []
|
967
|
+
end
|
968
|
+
|
969
|
+
class GroupCertificateAuthorityProperties
|
970
|
+
attr_accessor group_certificate_authority_arn: ::String
|
971
|
+
attr_accessor group_certificate_authority_id: ::String
|
972
|
+
SENSITIVE: []
|
973
|
+
end
|
974
|
+
|
975
|
+
class GroupCertificateConfiguration
|
976
|
+
attr_accessor certificate_authority_expiry_in_milliseconds: ::String
|
977
|
+
attr_accessor certificate_expiry_in_milliseconds: ::String
|
978
|
+
attr_accessor group_id: ::String
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class GroupInformation
|
983
|
+
attr_accessor arn: ::String
|
984
|
+
attr_accessor creation_timestamp: ::String
|
985
|
+
attr_accessor id: ::String
|
986
|
+
attr_accessor last_updated_timestamp: ::String
|
987
|
+
attr_accessor latest_version: ::String
|
988
|
+
attr_accessor latest_version_arn: ::String
|
989
|
+
attr_accessor name: ::String
|
990
|
+
SENSITIVE: []
|
991
|
+
end
|
992
|
+
|
993
|
+
class GroupOwnerSetting
|
994
|
+
attr_accessor auto_add_group_owner: bool
|
995
|
+
attr_accessor group_owner: ::String
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class GroupVersion
|
1000
|
+
attr_accessor connector_definition_version_arn: ::String
|
1001
|
+
attr_accessor core_definition_version_arn: ::String
|
1002
|
+
attr_accessor device_definition_version_arn: ::String
|
1003
|
+
attr_accessor function_definition_version_arn: ::String
|
1004
|
+
attr_accessor logger_definition_version_arn: ::String
|
1005
|
+
attr_accessor resource_definition_version_arn: ::String
|
1006
|
+
attr_accessor subscription_definition_version_arn: ::String
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class InternalServerErrorException
|
1011
|
+
attr_accessor error_details: ::Array[Types::ErrorDetail]
|
1012
|
+
attr_accessor message: ::String
|
1013
|
+
SENSITIVE: []
|
1014
|
+
end
|
1015
|
+
|
1016
|
+
class ListBulkDeploymentDetailedReportsRequest
|
1017
|
+
attr_accessor bulk_deployment_id: ::String
|
1018
|
+
attr_accessor max_results: ::String
|
1019
|
+
attr_accessor next_token: ::String
|
1020
|
+
SENSITIVE: []
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class ListBulkDeploymentDetailedReportsResponse
|
1024
|
+
attr_accessor deployments: ::Array[Types::BulkDeploymentResult]
|
1025
|
+
attr_accessor next_token: ::String
|
1026
|
+
SENSITIVE: []
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
class ListBulkDeploymentsRequest
|
1030
|
+
attr_accessor max_results: ::String
|
1031
|
+
attr_accessor next_token: ::String
|
1032
|
+
SENSITIVE: []
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class ListBulkDeploymentsResponse
|
1036
|
+
attr_accessor bulk_deployments: ::Array[Types::BulkDeployment]
|
1037
|
+
attr_accessor next_token: ::String
|
1038
|
+
SENSITIVE: []
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
class ListConnectorDefinitionVersionsRequest
|
1042
|
+
attr_accessor connector_definition_id: ::String
|
1043
|
+
attr_accessor max_results: ::String
|
1044
|
+
attr_accessor next_token: ::String
|
1045
|
+
SENSITIVE: []
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class ListConnectorDefinitionVersionsResponse
|
1049
|
+
attr_accessor next_token: ::String
|
1050
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1051
|
+
SENSITIVE: []
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
class ListConnectorDefinitionsRequest
|
1055
|
+
attr_accessor max_results: ::String
|
1056
|
+
attr_accessor next_token: ::String
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class ListConnectorDefinitionsResponse
|
1061
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1062
|
+
attr_accessor next_token: ::String
|
1063
|
+
SENSITIVE: []
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class ListCoreDefinitionVersionsRequest
|
1067
|
+
attr_accessor core_definition_id: ::String
|
1068
|
+
attr_accessor max_results: ::String
|
1069
|
+
attr_accessor next_token: ::String
|
1070
|
+
SENSITIVE: []
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class ListCoreDefinitionVersionsResponse
|
1074
|
+
attr_accessor next_token: ::String
|
1075
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1076
|
+
SENSITIVE: []
|
1077
|
+
end
|
1078
|
+
|
1079
|
+
class ListCoreDefinitionsRequest
|
1080
|
+
attr_accessor max_results: ::String
|
1081
|
+
attr_accessor next_token: ::String
|
1082
|
+
SENSITIVE: []
|
1083
|
+
end
|
1084
|
+
|
1085
|
+
class ListCoreDefinitionsResponse
|
1086
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1087
|
+
attr_accessor next_token: ::String
|
1088
|
+
SENSITIVE: []
|
1089
|
+
end
|
1090
|
+
|
1091
|
+
class ListDefinitionsResponse
|
1092
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1093
|
+
attr_accessor next_token: ::String
|
1094
|
+
SENSITIVE: []
|
1095
|
+
end
|
1096
|
+
|
1097
|
+
class ListDeploymentsRequest
|
1098
|
+
attr_accessor group_id: ::String
|
1099
|
+
attr_accessor max_results: ::String
|
1100
|
+
attr_accessor next_token: ::String
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class ListDeploymentsResponse
|
1105
|
+
attr_accessor deployments: ::Array[Types::Deployment]
|
1106
|
+
attr_accessor next_token: ::String
|
1107
|
+
SENSITIVE: []
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
class ListDeviceDefinitionVersionsRequest
|
1111
|
+
attr_accessor device_definition_id: ::String
|
1112
|
+
attr_accessor max_results: ::String
|
1113
|
+
attr_accessor next_token: ::String
|
1114
|
+
SENSITIVE: []
|
1115
|
+
end
|
1116
|
+
|
1117
|
+
class ListDeviceDefinitionVersionsResponse
|
1118
|
+
attr_accessor next_token: ::String
|
1119
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1120
|
+
SENSITIVE: []
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
class ListDeviceDefinitionsRequest
|
1124
|
+
attr_accessor max_results: ::String
|
1125
|
+
attr_accessor next_token: ::String
|
1126
|
+
SENSITIVE: []
|
1127
|
+
end
|
1128
|
+
|
1129
|
+
class ListDeviceDefinitionsResponse
|
1130
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1131
|
+
attr_accessor next_token: ::String
|
1132
|
+
SENSITIVE: []
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
class ListFunctionDefinitionVersionsRequest
|
1136
|
+
attr_accessor function_definition_id: ::String
|
1137
|
+
attr_accessor max_results: ::String
|
1138
|
+
attr_accessor next_token: ::String
|
1139
|
+
SENSITIVE: []
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
class ListFunctionDefinitionVersionsResponse
|
1143
|
+
attr_accessor next_token: ::String
|
1144
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class ListFunctionDefinitionsRequest
|
1149
|
+
attr_accessor max_results: ::String
|
1150
|
+
attr_accessor next_token: ::String
|
1151
|
+
SENSITIVE: []
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class ListFunctionDefinitionsResponse
|
1155
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1156
|
+
attr_accessor next_token: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class ListGroupCertificateAuthoritiesRequest
|
1161
|
+
attr_accessor group_id: ::String
|
1162
|
+
SENSITIVE: []
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
class ListGroupCertificateAuthoritiesResponse
|
1166
|
+
attr_accessor group_certificate_authorities: ::Array[Types::GroupCertificateAuthorityProperties]
|
1167
|
+
SENSITIVE: []
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class ListGroupVersionsRequest
|
1171
|
+
attr_accessor group_id: ::String
|
1172
|
+
attr_accessor max_results: ::String
|
1173
|
+
attr_accessor next_token: ::String
|
1174
|
+
SENSITIVE: []
|
1175
|
+
end
|
1176
|
+
|
1177
|
+
class ListGroupVersionsResponse
|
1178
|
+
attr_accessor next_token: ::String
|
1179
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1180
|
+
SENSITIVE: []
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
class ListGroupsRequest
|
1184
|
+
attr_accessor max_results: ::String
|
1185
|
+
attr_accessor next_token: ::String
|
1186
|
+
SENSITIVE: []
|
1187
|
+
end
|
1188
|
+
|
1189
|
+
class ListGroupsResponse
|
1190
|
+
attr_accessor groups: ::Array[Types::GroupInformation]
|
1191
|
+
attr_accessor next_token: ::String
|
1192
|
+
SENSITIVE: []
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
class ListLoggerDefinitionVersionsRequest
|
1196
|
+
attr_accessor logger_definition_id: ::String
|
1197
|
+
attr_accessor max_results: ::String
|
1198
|
+
attr_accessor next_token: ::String
|
1199
|
+
SENSITIVE: []
|
1200
|
+
end
|
1201
|
+
|
1202
|
+
class ListLoggerDefinitionVersionsResponse
|
1203
|
+
attr_accessor next_token: ::String
|
1204
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1205
|
+
SENSITIVE: []
|
1206
|
+
end
|
1207
|
+
|
1208
|
+
class ListLoggerDefinitionsRequest
|
1209
|
+
attr_accessor max_results: ::String
|
1210
|
+
attr_accessor next_token: ::String
|
1211
|
+
SENSITIVE: []
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
class ListLoggerDefinitionsResponse
|
1215
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1216
|
+
attr_accessor next_token: ::String
|
1217
|
+
SENSITIVE: []
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
class ListResourceDefinitionVersionsRequest
|
1221
|
+
attr_accessor max_results: ::String
|
1222
|
+
attr_accessor next_token: ::String
|
1223
|
+
attr_accessor resource_definition_id: ::String
|
1224
|
+
SENSITIVE: []
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class ListResourceDefinitionVersionsResponse
|
1228
|
+
attr_accessor next_token: ::String
|
1229
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1230
|
+
SENSITIVE: []
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
class ListResourceDefinitionsRequest
|
1234
|
+
attr_accessor max_results: ::String
|
1235
|
+
attr_accessor next_token: ::String
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class ListResourceDefinitionsResponse
|
1240
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1241
|
+
attr_accessor next_token: ::String
|
1242
|
+
SENSITIVE: []
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
class ListSubscriptionDefinitionVersionsRequest
|
1246
|
+
attr_accessor max_results: ::String
|
1247
|
+
attr_accessor next_token: ::String
|
1248
|
+
attr_accessor subscription_definition_id: ::String
|
1249
|
+
SENSITIVE: []
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
class ListSubscriptionDefinitionVersionsResponse
|
1253
|
+
attr_accessor next_token: ::String
|
1254
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1255
|
+
SENSITIVE: []
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
class ListSubscriptionDefinitionsRequest
|
1259
|
+
attr_accessor max_results: ::String
|
1260
|
+
attr_accessor next_token: ::String
|
1261
|
+
SENSITIVE: []
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
class ListSubscriptionDefinitionsResponse
|
1265
|
+
attr_accessor definitions: ::Array[Types::DefinitionInformation]
|
1266
|
+
attr_accessor next_token: ::String
|
1267
|
+
SENSITIVE: []
|
1268
|
+
end
|
1269
|
+
|
1270
|
+
class ListTagsForResourceRequest
|
1271
|
+
attr_accessor resource_arn: ::String
|
1272
|
+
SENSITIVE: []
|
1273
|
+
end
|
1274
|
+
|
1275
|
+
class ListTagsForResourceResponse
|
1276
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1277
|
+
SENSITIVE: []
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
class ListVersionsResponse
|
1281
|
+
attr_accessor next_token: ::String
|
1282
|
+
attr_accessor versions: ::Array[Types::VersionInformation]
|
1283
|
+
SENSITIVE: []
|
1284
|
+
end
|
1285
|
+
|
1286
|
+
class LocalDeviceResourceData
|
1287
|
+
attr_accessor group_owner_setting: Types::GroupOwnerSetting
|
1288
|
+
attr_accessor source_path: ::String
|
1289
|
+
SENSITIVE: []
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
class LocalVolumeResourceData
|
1293
|
+
attr_accessor destination_path: ::String
|
1294
|
+
attr_accessor group_owner_setting: Types::GroupOwnerSetting
|
1295
|
+
attr_accessor source_path: ::String
|
1296
|
+
SENSITIVE: []
|
1297
|
+
end
|
1298
|
+
|
1299
|
+
class Logger
|
1300
|
+
attr_accessor component: ("GreengrassSystem" | "Lambda")
|
1301
|
+
attr_accessor id: ::String
|
1302
|
+
attr_accessor level: ("DEBUG" | "INFO" | "WARN" | "ERROR" | "FATAL")
|
1303
|
+
attr_accessor space: ::Integer
|
1304
|
+
attr_accessor type: ("FileSystem" | "AWSCloudWatch")
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class LoggerDefinitionVersion
|
1309
|
+
attr_accessor loggers: ::Array[Types::Logger]
|
1310
|
+
SENSITIVE: []
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
class ResetDeploymentsRequest
|
1314
|
+
attr_accessor amzn_client_token: ::String
|
1315
|
+
attr_accessor force: bool
|
1316
|
+
attr_accessor group_id: ::String
|
1317
|
+
SENSITIVE: []
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
class ResetDeploymentsResponse
|
1321
|
+
attr_accessor deployment_arn: ::String
|
1322
|
+
attr_accessor deployment_id: ::String
|
1323
|
+
SENSITIVE: []
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
class Resource
|
1327
|
+
attr_accessor id: ::String
|
1328
|
+
attr_accessor name: ::String
|
1329
|
+
attr_accessor resource_data_container: Types::ResourceDataContainer
|
1330
|
+
SENSITIVE: []
|
1331
|
+
end
|
1332
|
+
|
1333
|
+
class ResourceAccessPolicy
|
1334
|
+
attr_accessor permission: ("ro" | "rw")
|
1335
|
+
attr_accessor resource_id: ::String
|
1336
|
+
SENSITIVE: []
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
class ResourceDataContainer
|
1340
|
+
attr_accessor local_device_resource_data: Types::LocalDeviceResourceData
|
1341
|
+
attr_accessor local_volume_resource_data: Types::LocalVolumeResourceData
|
1342
|
+
attr_accessor s3_machine_learning_model_resource_data: Types::S3MachineLearningModelResourceData
|
1343
|
+
attr_accessor sage_maker_machine_learning_model_resource_data: Types::SageMakerMachineLearningModelResourceData
|
1344
|
+
attr_accessor secrets_manager_secret_resource_data: Types::SecretsManagerSecretResourceData
|
1345
|
+
SENSITIVE: []
|
1346
|
+
end
|
1347
|
+
|
1348
|
+
class ResourceDefinitionVersion
|
1349
|
+
attr_accessor resources: ::Array[Types::Resource]
|
1350
|
+
SENSITIVE: []
|
1351
|
+
end
|
1352
|
+
|
1353
|
+
class ResourceDownloadOwnerSetting
|
1354
|
+
attr_accessor group_owner: ::String
|
1355
|
+
attr_accessor group_permission: ("ro" | "rw")
|
1356
|
+
SENSITIVE: []
|
1357
|
+
end
|
1358
|
+
|
1359
|
+
class RuntimeConfiguration
|
1360
|
+
attr_accessor telemetry_configuration: Types::TelemetryConfiguration
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class RuntimeConfigurationUpdate
|
1365
|
+
attr_accessor telemetry_configuration: Types::TelemetryConfigurationUpdate
|
1366
|
+
SENSITIVE: []
|
1367
|
+
end
|
1368
|
+
|
1369
|
+
class S3MachineLearningModelResourceData
|
1370
|
+
attr_accessor destination_path: ::String
|
1371
|
+
attr_accessor owner_setting: Types::ResourceDownloadOwnerSetting
|
1372
|
+
attr_accessor s3_uri: ::String
|
1373
|
+
SENSITIVE: []
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
class SageMakerMachineLearningModelResourceData
|
1377
|
+
attr_accessor destination_path: ::String
|
1378
|
+
attr_accessor owner_setting: Types::ResourceDownloadOwnerSetting
|
1379
|
+
attr_accessor sage_maker_job_arn: ::String
|
1380
|
+
SENSITIVE: []
|
1381
|
+
end
|
1382
|
+
|
1383
|
+
class SecretsManagerSecretResourceData
|
1384
|
+
attr_accessor arn: ::String
|
1385
|
+
attr_accessor additional_staging_labels_to_download: ::Array[::String]
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class StartBulkDeploymentRequest
|
1390
|
+
attr_accessor amzn_client_token: ::String
|
1391
|
+
attr_accessor execution_role_arn: ::String
|
1392
|
+
attr_accessor input_file_uri: ::String
|
1393
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1394
|
+
SENSITIVE: []
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
class StartBulkDeploymentResponse
|
1398
|
+
attr_accessor bulk_deployment_arn: ::String
|
1399
|
+
attr_accessor bulk_deployment_id: ::String
|
1400
|
+
SENSITIVE: []
|
1401
|
+
end
|
1402
|
+
|
1403
|
+
class StopBulkDeploymentRequest
|
1404
|
+
attr_accessor bulk_deployment_id: ::String
|
1405
|
+
SENSITIVE: []
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
class StopBulkDeploymentResponse < Aws::EmptyStructure
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
class Subscription
|
1412
|
+
attr_accessor id: ::String
|
1413
|
+
attr_accessor source: ::String
|
1414
|
+
attr_accessor subject: ::String
|
1415
|
+
attr_accessor target: ::String
|
1416
|
+
SENSITIVE: []
|
1417
|
+
end
|
1418
|
+
|
1419
|
+
class SubscriptionDefinitionVersion
|
1420
|
+
attr_accessor subscriptions: ::Array[Types::Subscription]
|
1421
|
+
SENSITIVE: []
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
class TagResourceRequest
|
1425
|
+
attr_accessor resource_arn: ::String
|
1426
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1427
|
+
SENSITIVE: []
|
1428
|
+
end
|
1429
|
+
|
1430
|
+
class TelemetryConfiguration
|
1431
|
+
attr_accessor configuration_sync_status: ("InSync" | "OutOfSync")
|
1432
|
+
attr_accessor telemetry: ("On" | "Off")
|
1433
|
+
SENSITIVE: []
|
1434
|
+
end
|
1435
|
+
|
1436
|
+
class TelemetryConfigurationUpdate
|
1437
|
+
attr_accessor telemetry: ("On" | "Off")
|
1438
|
+
SENSITIVE: []
|
1439
|
+
end
|
1440
|
+
|
1441
|
+
class UntagResourceRequest
|
1442
|
+
attr_accessor resource_arn: ::String
|
1443
|
+
attr_accessor tag_keys: ::Array[::String]
|
1444
|
+
SENSITIVE: []
|
1445
|
+
end
|
1446
|
+
|
1447
|
+
class UpdateConnectivityInfoRequest
|
1448
|
+
attr_accessor connectivity_info: ::Array[Types::ConnectivityInfo]
|
1449
|
+
attr_accessor thing_name: ::String
|
1450
|
+
SENSITIVE: []
|
1451
|
+
end
|
1452
|
+
|
1453
|
+
class UpdateConnectivityInfoResponse
|
1454
|
+
attr_accessor message: ::String
|
1455
|
+
attr_accessor version: ::String
|
1456
|
+
SENSITIVE: []
|
1457
|
+
end
|
1458
|
+
|
1459
|
+
class UpdateConnectorDefinitionRequest
|
1460
|
+
attr_accessor connector_definition_id: ::String
|
1461
|
+
attr_accessor name: ::String
|
1462
|
+
SENSITIVE: []
|
1463
|
+
end
|
1464
|
+
|
1465
|
+
class UpdateConnectorDefinitionResponse < Aws::EmptyStructure
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class UpdateCoreDefinitionRequest
|
1469
|
+
attr_accessor core_definition_id: ::String
|
1470
|
+
attr_accessor name: ::String
|
1471
|
+
SENSITIVE: []
|
1472
|
+
end
|
1473
|
+
|
1474
|
+
class UpdateCoreDefinitionResponse < Aws::EmptyStructure
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
class UpdateDeviceDefinitionRequest
|
1478
|
+
attr_accessor device_definition_id: ::String
|
1479
|
+
attr_accessor name: ::String
|
1480
|
+
SENSITIVE: []
|
1481
|
+
end
|
1482
|
+
|
1483
|
+
class UpdateDeviceDefinitionResponse < Aws::EmptyStructure
|
1484
|
+
end
|
1485
|
+
|
1486
|
+
class UpdateFunctionDefinitionRequest
|
1487
|
+
attr_accessor function_definition_id: ::String
|
1488
|
+
attr_accessor name: ::String
|
1489
|
+
SENSITIVE: []
|
1490
|
+
end
|
1491
|
+
|
1492
|
+
class UpdateFunctionDefinitionResponse < Aws::EmptyStructure
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
class UpdateGroupCertificateConfigurationRequest
|
1496
|
+
attr_accessor certificate_expiry_in_milliseconds: ::String
|
1497
|
+
attr_accessor group_id: ::String
|
1498
|
+
SENSITIVE: []
|
1499
|
+
end
|
1500
|
+
|
1501
|
+
class UpdateGroupCertificateConfigurationResponse
|
1502
|
+
attr_accessor certificate_authority_expiry_in_milliseconds: ::String
|
1503
|
+
attr_accessor certificate_expiry_in_milliseconds: ::String
|
1504
|
+
attr_accessor group_id: ::String
|
1505
|
+
SENSITIVE: []
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
class UpdateGroupRequest
|
1509
|
+
attr_accessor group_id: ::String
|
1510
|
+
attr_accessor name: ::String
|
1511
|
+
SENSITIVE: []
|
1512
|
+
end
|
1513
|
+
|
1514
|
+
class UpdateGroupResponse < Aws::EmptyStructure
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
class UpdateLoggerDefinitionRequest
|
1518
|
+
attr_accessor logger_definition_id: ::String
|
1519
|
+
attr_accessor name: ::String
|
1520
|
+
SENSITIVE: []
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
class UpdateLoggerDefinitionResponse < Aws::EmptyStructure
|
1524
|
+
end
|
1525
|
+
|
1526
|
+
class UpdateResourceDefinitionRequest
|
1527
|
+
attr_accessor name: ::String
|
1528
|
+
attr_accessor resource_definition_id: ::String
|
1529
|
+
SENSITIVE: []
|
1530
|
+
end
|
1531
|
+
|
1532
|
+
class UpdateResourceDefinitionResponse < Aws::EmptyStructure
|
1533
|
+
end
|
1534
|
+
|
1535
|
+
class UpdateSubscriptionDefinitionRequest
|
1536
|
+
attr_accessor name: ::String
|
1537
|
+
attr_accessor subscription_definition_id: ::String
|
1538
|
+
SENSITIVE: []
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
class UpdateSubscriptionDefinitionResponse < Aws::EmptyStructure
|
1542
|
+
end
|
1543
|
+
|
1544
|
+
class UpdateThingRuntimeConfigurationRequest
|
1545
|
+
attr_accessor telemetry_configuration: Types::TelemetryConfigurationUpdate
|
1546
|
+
attr_accessor thing_name: ::String
|
1547
|
+
SENSITIVE: []
|
1548
|
+
end
|
1549
|
+
|
1550
|
+
class UpdateThingRuntimeConfigurationResponse < Aws::EmptyStructure
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
class VersionInformation
|
1554
|
+
attr_accessor arn: ::String
|
1555
|
+
attr_accessor creation_timestamp: ::String
|
1556
|
+
attr_accessor id: ::String
|
1557
|
+
attr_accessor version: ::String
|
1558
|
+
SENSITIVE: []
|
1559
|
+
end
|
1560
|
+
end
|
1561
|
+
end
|