aws-sdk-iottwinmaker 1.6.0 → 1.7.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-iottwinmaker/client.rb +727 -466
- data/lib/aws-sdk-iottwinmaker/client_api.rb +337 -118
- data/lib/aws-sdk-iottwinmaker/endpoints.rb +42 -0
- data/lib/aws-sdk-iottwinmaker/errors.rb +20 -0
- data/lib/aws-sdk-iottwinmaker/plugins/endpoints.rb +6 -0
- data/lib/aws-sdk-iottwinmaker/types.rb +1518 -965
- data/lib/aws-sdk-iottwinmaker.rb +1 -1
- metadata +2 -2
@@ -23,11 +23,6 @@ module Aws::IoTTwinMaker
|
|
23
23
|
|
24
24
|
# An error returned by the `BatchPutProperty` action.
|
25
25
|
#
|
26
|
-
# @!attribute [rw] entry
|
27
|
-
# An object that contains information about errors returned by the
|
28
|
-
# `BatchPutProperty` action.
|
29
|
-
# @return [Types::PropertyValueEntry]
|
30
|
-
#
|
31
26
|
# @!attribute [rw] error_code
|
32
27
|
# The error code.
|
33
28
|
# @return [String]
|
@@ -36,10 +31,15 @@ module Aws::IoTTwinMaker
|
|
36
31
|
# The error message.
|
37
32
|
# @return [String]
|
38
33
|
#
|
34
|
+
# @!attribute [rw] entry
|
35
|
+
# An object that contains information about errors returned by the
|
36
|
+
# `BatchPutProperty` action.
|
37
|
+
# @return [Types::PropertyValueEntry]
|
38
|
+
#
|
39
39
|
class BatchPutPropertyError < Struct.new(
|
40
|
-
:entry,
|
41
40
|
:error_code,
|
42
|
-
:error_message
|
41
|
+
:error_message,
|
42
|
+
:entry)
|
43
43
|
SENSITIVE = []
|
44
44
|
include Aws::Structure
|
45
45
|
end
|
@@ -62,61 +62,61 @@ module Aws::IoTTwinMaker
|
|
62
62
|
# data as a hash:
|
63
63
|
#
|
64
64
|
# {
|
65
|
+
# workspace_id: "Id", # required
|
65
66
|
# entries: [ # required
|
66
67
|
# {
|
67
68
|
# entity_property_reference: { # required
|
68
69
|
# component_name: "Name",
|
69
|
-
# entity_id: "EntityId",
|
70
70
|
# external_id_property: {
|
71
71
|
# "String" => "String",
|
72
72
|
# },
|
73
|
+
# entity_id: "EntityId",
|
73
74
|
# property_name: "Name", # required
|
74
75
|
# },
|
75
76
|
# property_values: [
|
76
77
|
# {
|
77
|
-
# time: "Time",
|
78
78
|
# timestamp: Time.now,
|
79
79
|
# value: { # required
|
80
80
|
# boolean_value: false,
|
81
81
|
# double_value: 1.0,
|
82
|
-
# expression: "Expression",
|
83
82
|
# integer_value: 1,
|
83
|
+
# long_value: 1,
|
84
|
+
# string_value: "String",
|
84
85
|
# list_value: [
|
85
86
|
# {
|
86
87
|
# # recursive DataValue
|
87
88
|
# },
|
88
89
|
# ],
|
89
|
-
# long_value: 1,
|
90
90
|
# map_value: {
|
91
91
|
# "String" => {
|
92
92
|
# # recursive DataValue
|
93
93
|
# },
|
94
94
|
# },
|
95
95
|
# relationship_value: {
|
96
|
-
# target_component_name: "Name",
|
97
96
|
# target_entity_id: "EntityId",
|
97
|
+
# target_component_name: "Name",
|
98
98
|
# },
|
99
|
-
#
|
99
|
+
# expression: "Expression",
|
100
100
|
# },
|
101
|
+
# time: "Time",
|
101
102
|
# },
|
102
103
|
# ],
|
103
104
|
# },
|
104
105
|
# ],
|
105
|
-
# workspace_id: "Id", # required
|
106
106
|
# }
|
107
107
|
#
|
108
|
+
# @!attribute [rw] workspace_id
|
109
|
+
# The ID of the workspace that contains the properties to set.
|
110
|
+
# @return [String]
|
111
|
+
#
|
108
112
|
# @!attribute [rw] entries
|
109
113
|
# An object that maps strings to the property value entries to set.
|
110
114
|
# Each string in the mapping must be unique to this object.
|
111
115
|
# @return [Array<Types::PropertyValueEntry>]
|
112
116
|
#
|
113
|
-
# @!attribute [rw] workspace_id
|
114
|
-
# The ID of the workspace that contains the properties to set.
|
115
|
-
# @return [String]
|
116
|
-
#
|
117
117
|
class BatchPutPropertyValuesRequest < Struct.new(
|
118
|
-
:
|
119
|
-
:
|
118
|
+
:workspace_id,
|
119
|
+
:entries)
|
120
120
|
SENSITIVE = []
|
121
121
|
include Aws::Structure
|
122
122
|
end
|
@@ -131,6 +131,92 @@ module Aws::IoTTwinMaker
|
|
131
131
|
include Aws::Structure
|
132
132
|
end
|
133
133
|
|
134
|
+
# Information about pricing bundle.
|
135
|
+
#
|
136
|
+
# @!attribute [rw] bundle_names
|
137
|
+
# The bundle names.
|
138
|
+
# @return [Array<String>]
|
139
|
+
#
|
140
|
+
# @!attribute [rw] pricing_tier
|
141
|
+
# The pricing tier.
|
142
|
+
# @return [String]
|
143
|
+
#
|
144
|
+
class BundleInformation < Struct.new(
|
145
|
+
:bundle_names,
|
146
|
+
:pricing_tier)
|
147
|
+
SENSITIVE = []
|
148
|
+
include Aws::Structure
|
149
|
+
end
|
150
|
+
|
151
|
+
# A description of the column in the query results.
|
152
|
+
#
|
153
|
+
# @!attribute [rw] name
|
154
|
+
# The name of the column description.
|
155
|
+
# @return [String]
|
156
|
+
#
|
157
|
+
# @!attribute [rw] type
|
158
|
+
# The type of the column description.
|
159
|
+
# @return [String]
|
160
|
+
#
|
161
|
+
class ColumnDescription < Struct.new(
|
162
|
+
:name,
|
163
|
+
:type)
|
164
|
+
SENSITIVE = []
|
165
|
+
include Aws::Structure
|
166
|
+
end
|
167
|
+
|
168
|
+
# @note When making an API call, you may pass ComponentPropertyGroupRequest
|
169
|
+
# data as a hash:
|
170
|
+
#
|
171
|
+
# {
|
172
|
+
# group_type: "TABULAR", # accepts TABULAR
|
173
|
+
# property_names: ["Name"],
|
174
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
175
|
+
# }
|
176
|
+
#
|
177
|
+
# @!attribute [rw] group_type
|
178
|
+
# The group type.
|
179
|
+
# @return [String]
|
180
|
+
#
|
181
|
+
# @!attribute [rw] property_names
|
182
|
+
# The property names.
|
183
|
+
# @return [Array<String>]
|
184
|
+
#
|
185
|
+
# @!attribute [rw] update_type
|
186
|
+
# The update type.
|
187
|
+
# @return [String]
|
188
|
+
#
|
189
|
+
class ComponentPropertyGroupRequest < Struct.new(
|
190
|
+
:group_type,
|
191
|
+
:property_names,
|
192
|
+
:update_type)
|
193
|
+
SENSITIVE = []
|
194
|
+
include Aws::Structure
|
195
|
+
end
|
196
|
+
|
197
|
+
# The component property group response.
|
198
|
+
#
|
199
|
+
# @!attribute [rw] group_type
|
200
|
+
# The group type.
|
201
|
+
# @return [String]
|
202
|
+
#
|
203
|
+
# @!attribute [rw] property_names
|
204
|
+
# The names of properties
|
205
|
+
# @return [Array<String>]
|
206
|
+
#
|
207
|
+
# @!attribute [rw] is_inherited
|
208
|
+
# A Boolean value that specifies whether the property group is
|
209
|
+
# inherited from a parent entity
|
210
|
+
# @return [Boolean]
|
211
|
+
#
|
212
|
+
class ComponentPropertyGroupResponse < Struct.new(
|
213
|
+
:group_type,
|
214
|
+
:property_names,
|
215
|
+
:is_inherited)
|
216
|
+
SENSITIVE = []
|
217
|
+
include Aws::Structure
|
218
|
+
end
|
219
|
+
|
134
220
|
# An object that sets information about a component type create or
|
135
221
|
# update request.
|
136
222
|
#
|
@@ -138,119 +224,131 @@ module Aws::IoTTwinMaker
|
|
138
224
|
# data as a hash:
|
139
225
|
#
|
140
226
|
# {
|
141
|
-
# component_type_id: "ComponentTypeId",
|
142
227
|
# description: "Description",
|
228
|
+
# component_type_id: "ComponentTypeId",
|
143
229
|
# properties: {
|
144
230
|
# "Name" => {
|
145
231
|
# definition: {
|
146
|
-
# configuration: {
|
147
|
-
# "Name" => "Value",
|
148
|
-
# },
|
149
232
|
# data_type: {
|
233
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
234
|
+
# nested_type: {
|
235
|
+
# # recursive DataType
|
236
|
+
# },
|
150
237
|
# allowed_values: [
|
151
238
|
# {
|
152
239
|
# boolean_value: false,
|
153
240
|
# double_value: 1.0,
|
154
|
-
# expression: "Expression",
|
155
241
|
# integer_value: 1,
|
242
|
+
# long_value: 1,
|
243
|
+
# string_value: "String",
|
156
244
|
# list_value: {
|
157
245
|
# # recursive DataValueList
|
158
246
|
# },
|
159
|
-
# long_value: 1,
|
160
247
|
# map_value: {
|
161
248
|
# "String" => {
|
162
249
|
# # recursive DataValue
|
163
250
|
# },
|
164
251
|
# },
|
165
252
|
# relationship_value: {
|
166
|
-
# target_component_name: "Name",
|
167
253
|
# target_entity_id: "EntityId",
|
254
|
+
# target_component_name: "Name",
|
168
255
|
# },
|
169
|
-
#
|
256
|
+
# expression: "Expression",
|
170
257
|
# },
|
171
258
|
# ],
|
172
|
-
#
|
173
|
-
# # recursive DataType
|
174
|
-
# },
|
259
|
+
# unit_of_measure: "String",
|
175
260
|
# relationship: {
|
176
|
-
# relationship_type: "String",
|
177
261
|
# target_component_type_id: "ComponentTypeId",
|
262
|
+
# relationship_type: "String",
|
178
263
|
# },
|
179
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
180
|
-
# unit_of_measure: "String",
|
181
264
|
# },
|
265
|
+
# is_required_in_entity: false,
|
266
|
+
# is_external_id: false,
|
267
|
+
# is_stored_externally: false,
|
268
|
+
# is_time_series: false,
|
182
269
|
# default_value: {
|
183
270
|
# boolean_value: false,
|
184
271
|
# double_value: 1.0,
|
185
|
-
# expression: "Expression",
|
186
272
|
# integer_value: 1,
|
273
|
+
# long_value: 1,
|
274
|
+
# string_value: "String",
|
187
275
|
# list_value: [
|
188
276
|
# {
|
189
277
|
# # recursive DataValue
|
190
278
|
# },
|
191
279
|
# ],
|
192
|
-
# long_value: 1,
|
193
280
|
# map_value: {
|
194
281
|
# "String" => {
|
195
282
|
# # recursive DataValue
|
196
283
|
# },
|
197
284
|
# },
|
198
285
|
# relationship_value: {
|
199
|
-
# target_component_name: "Name",
|
200
286
|
# target_entity_id: "EntityId",
|
287
|
+
# target_component_name: "Name",
|
201
288
|
# },
|
202
|
-
#
|
289
|
+
# expression: "Expression",
|
290
|
+
# },
|
291
|
+
# configuration: {
|
292
|
+
# "Name" => "Value",
|
203
293
|
# },
|
204
|
-
# is_external_id: false,
|
205
|
-
# is_required_in_entity: false,
|
206
|
-
# is_stored_externally: false,
|
207
|
-
# is_time_series: false,
|
208
294
|
# },
|
209
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
210
295
|
# value: {
|
211
296
|
# boolean_value: false,
|
212
297
|
# double_value: 1.0,
|
213
|
-
# expression: "Expression",
|
214
298
|
# integer_value: 1,
|
299
|
+
# long_value: 1,
|
300
|
+
# string_value: "String",
|
215
301
|
# list_value: [
|
216
302
|
# {
|
217
303
|
# # recursive DataValue
|
218
304
|
# },
|
219
305
|
# ],
|
220
|
-
# long_value: 1,
|
221
306
|
# map_value: {
|
222
307
|
# "String" => {
|
223
308
|
# # recursive DataValue
|
224
309
|
# },
|
225
310
|
# },
|
226
311
|
# relationship_value: {
|
227
|
-
# target_component_name: "Name",
|
228
312
|
# target_entity_id: "EntityId",
|
313
|
+
# target_component_name: "Name",
|
229
314
|
# },
|
230
|
-
#
|
315
|
+
# expression: "Expression",
|
231
316
|
# },
|
317
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
318
|
+
# },
|
319
|
+
# },
|
320
|
+
# property_groups: {
|
321
|
+
# "Name" => {
|
322
|
+
# group_type: "TABULAR", # accepts TABULAR
|
323
|
+
# property_names: ["Name"],
|
324
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
232
325
|
# },
|
233
326
|
# },
|
234
327
|
# }
|
235
328
|
#
|
236
|
-
# @!attribute [rw] component_type_id
|
237
|
-
# The ID of the component type.
|
238
|
-
# @return [String]
|
239
|
-
#
|
240
329
|
# @!attribute [rw] description
|
241
330
|
# The description of the component request.
|
242
331
|
# @return [String]
|
243
332
|
#
|
333
|
+
# @!attribute [rw] component_type_id
|
334
|
+
# The ID of the component type.
|
335
|
+
# @return [String]
|
336
|
+
#
|
244
337
|
# @!attribute [rw] properties
|
245
338
|
# An object that maps strings to the properties to set in the
|
246
339
|
# component type. Each string in the mapping must be unique to this
|
247
340
|
# object.
|
248
341
|
# @return [Hash<String,Types::PropertyRequest>]
|
249
342
|
#
|
343
|
+
# @!attribute [rw] property_groups
|
344
|
+
# The property groups.
|
345
|
+
# @return [Hash<String,Types::ComponentPropertyGroupRequest>]
|
346
|
+
#
|
250
347
|
class ComponentRequest < Struct.new(
|
251
|
-
:component_type_id,
|
252
348
|
:description,
|
253
|
-
:
|
349
|
+
:component_type_id,
|
350
|
+
:properties,
|
351
|
+
:property_groups)
|
254
352
|
SENSITIVE = []
|
255
353
|
include Aws::Structure
|
256
354
|
end
|
@@ -262,35 +360,40 @@ module Aws::IoTTwinMaker
|
|
262
360
|
# The name of the component.
|
263
361
|
# @return [String]
|
264
362
|
#
|
363
|
+
# @!attribute [rw] description
|
364
|
+
# The description of the component type.
|
365
|
+
# @return [String]
|
366
|
+
#
|
265
367
|
# @!attribute [rw] component_type_id
|
266
368
|
# The ID of the component type.
|
267
369
|
# @return [String]
|
268
370
|
#
|
371
|
+
# @!attribute [rw] status
|
372
|
+
# The status of the component type.
|
373
|
+
# @return [Types::Status]
|
374
|
+
#
|
269
375
|
# @!attribute [rw] defined_in
|
270
376
|
# The name of the property definition set in the request.
|
271
377
|
# @return [String]
|
272
378
|
#
|
273
|
-
# @!attribute [rw] description
|
274
|
-
# The description of the component type.
|
275
|
-
# @return [String]
|
276
|
-
#
|
277
379
|
# @!attribute [rw] properties
|
278
380
|
# An object that maps strings to the properties to set in the
|
279
381
|
# component type. Each string in the mapping must be unique to this
|
280
382
|
# object.
|
281
383
|
# @return [Hash<String,Types::PropertyResponse>]
|
282
384
|
#
|
283
|
-
# @!attribute [rw]
|
284
|
-
# The
|
285
|
-
# @return [Types::
|
385
|
+
# @!attribute [rw] property_groups
|
386
|
+
# The property groups.
|
387
|
+
# @return [Hash<String,Types::ComponentPropertyGroupResponse>]
|
286
388
|
#
|
287
389
|
class ComponentResponse < Struct.new(
|
288
390
|
:component_name,
|
391
|
+
:description,
|
289
392
|
:component_type_id,
|
393
|
+
:status,
|
290
394
|
:defined_in,
|
291
|
-
:description,
|
292
395
|
:properties,
|
293
|
-
:
|
396
|
+
:property_groups)
|
294
397
|
SENSITIVE = []
|
295
398
|
include Aws::Structure
|
296
399
|
end
|
@@ -309,6 +412,10 @@ module Aws::IoTTwinMaker
|
|
309
412
|
# The date and time when the component type was created.
|
310
413
|
# @return [Time]
|
311
414
|
#
|
415
|
+
# @!attribute [rw] update_date_time
|
416
|
+
# The date and time when the component type was last updated.
|
417
|
+
# @return [Time]
|
418
|
+
#
|
312
419
|
# @!attribute [rw] description
|
313
420
|
# The description of the component type.
|
314
421
|
# @return [String]
|
@@ -317,17 +424,13 @@ module Aws::IoTTwinMaker
|
|
317
424
|
# The current status of the component type.
|
318
425
|
# @return [Types::Status]
|
319
426
|
#
|
320
|
-
# @!attribute [rw] update_date_time
|
321
|
-
# The date and time when the component type was last updated.
|
322
|
-
# @return [Time]
|
323
|
-
#
|
324
427
|
class ComponentTypeSummary < Struct.new(
|
325
428
|
:arn,
|
326
429
|
:component_type_id,
|
327
430
|
:creation_date_time,
|
431
|
+
:update_date_time,
|
328
432
|
:description,
|
329
|
-
:status
|
330
|
-
:update_date_time)
|
433
|
+
:status)
|
331
434
|
SENSITIVE = []
|
332
435
|
include Aws::Structure
|
333
436
|
end
|
@@ -338,125 +441,137 @@ module Aws::IoTTwinMaker
|
|
338
441
|
# data as a hash:
|
339
442
|
#
|
340
443
|
# {
|
341
|
-
#
|
444
|
+
# update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
342
445
|
# description: "Description",
|
446
|
+
# component_type_id: "ComponentTypeId",
|
343
447
|
# property_updates: {
|
344
448
|
# "Name" => {
|
345
449
|
# definition: {
|
346
|
-
# configuration: {
|
347
|
-
# "Name" => "Value",
|
348
|
-
# },
|
349
450
|
# data_type: {
|
451
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
452
|
+
# nested_type: {
|
453
|
+
# # recursive DataType
|
454
|
+
# },
|
350
455
|
# allowed_values: [
|
351
456
|
# {
|
352
457
|
# boolean_value: false,
|
353
458
|
# double_value: 1.0,
|
354
|
-
# expression: "Expression",
|
355
459
|
# integer_value: 1,
|
460
|
+
# long_value: 1,
|
461
|
+
# string_value: "String",
|
356
462
|
# list_value: {
|
357
463
|
# # recursive DataValueList
|
358
464
|
# },
|
359
|
-
# long_value: 1,
|
360
465
|
# map_value: {
|
361
466
|
# "String" => {
|
362
467
|
# # recursive DataValue
|
363
468
|
# },
|
364
469
|
# },
|
365
470
|
# relationship_value: {
|
366
|
-
# target_component_name: "Name",
|
367
471
|
# target_entity_id: "EntityId",
|
472
|
+
# target_component_name: "Name",
|
368
473
|
# },
|
369
|
-
#
|
474
|
+
# expression: "Expression",
|
370
475
|
# },
|
371
476
|
# ],
|
372
|
-
#
|
373
|
-
# # recursive DataType
|
374
|
-
# },
|
477
|
+
# unit_of_measure: "String",
|
375
478
|
# relationship: {
|
376
|
-
# relationship_type: "String",
|
377
479
|
# target_component_type_id: "ComponentTypeId",
|
480
|
+
# relationship_type: "String",
|
378
481
|
# },
|
379
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
380
|
-
# unit_of_measure: "String",
|
381
482
|
# },
|
483
|
+
# is_required_in_entity: false,
|
484
|
+
# is_external_id: false,
|
485
|
+
# is_stored_externally: false,
|
486
|
+
# is_time_series: false,
|
382
487
|
# default_value: {
|
383
488
|
# boolean_value: false,
|
384
489
|
# double_value: 1.0,
|
385
|
-
# expression: "Expression",
|
386
490
|
# integer_value: 1,
|
491
|
+
# long_value: 1,
|
492
|
+
# string_value: "String",
|
387
493
|
# list_value: [
|
388
494
|
# {
|
389
495
|
# # recursive DataValue
|
390
496
|
# },
|
391
497
|
# ],
|
392
|
-
# long_value: 1,
|
393
498
|
# map_value: {
|
394
499
|
# "String" => {
|
395
500
|
# # recursive DataValue
|
396
501
|
# },
|
397
502
|
# },
|
398
503
|
# relationship_value: {
|
399
|
-
# target_component_name: "Name",
|
400
504
|
# target_entity_id: "EntityId",
|
505
|
+
# target_component_name: "Name",
|
401
506
|
# },
|
402
|
-
#
|
507
|
+
# expression: "Expression",
|
508
|
+
# },
|
509
|
+
# configuration: {
|
510
|
+
# "Name" => "Value",
|
403
511
|
# },
|
404
|
-
# is_external_id: false,
|
405
|
-
# is_required_in_entity: false,
|
406
|
-
# is_stored_externally: false,
|
407
|
-
# is_time_series: false,
|
408
512
|
# },
|
409
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
410
513
|
# value: {
|
411
514
|
# boolean_value: false,
|
412
515
|
# double_value: 1.0,
|
413
|
-
# expression: "Expression",
|
414
516
|
# integer_value: 1,
|
517
|
+
# long_value: 1,
|
518
|
+
# string_value: "String",
|
415
519
|
# list_value: [
|
416
520
|
# {
|
417
521
|
# # recursive DataValue
|
418
522
|
# },
|
419
523
|
# ],
|
420
|
-
# long_value: 1,
|
421
524
|
# map_value: {
|
422
525
|
# "String" => {
|
423
526
|
# # recursive DataValue
|
424
527
|
# },
|
425
528
|
# },
|
426
529
|
# relationship_value: {
|
427
|
-
# target_component_name: "Name",
|
428
530
|
# target_entity_id: "EntityId",
|
531
|
+
# target_component_name: "Name",
|
429
532
|
# },
|
430
|
-
#
|
533
|
+
# expression: "Expression",
|
431
534
|
# },
|
535
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
536
|
+
# },
|
537
|
+
# },
|
538
|
+
# property_group_updates: {
|
539
|
+
# "Name" => {
|
540
|
+
# group_type: "TABULAR", # accepts TABULAR
|
541
|
+
# property_names: ["Name"],
|
542
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
432
543
|
# },
|
433
544
|
# },
|
434
|
-
# update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
435
545
|
# }
|
436
546
|
#
|
437
|
-
# @!attribute [rw]
|
438
|
-
# The
|
547
|
+
# @!attribute [rw] update_type
|
548
|
+
# The update type of the component update request.
|
439
549
|
# @return [String]
|
440
550
|
#
|
441
551
|
# @!attribute [rw] description
|
442
552
|
# The description of the component type.
|
443
553
|
# @return [String]
|
444
554
|
#
|
555
|
+
# @!attribute [rw] component_type_id
|
556
|
+
# The ID of the component type.
|
557
|
+
# @return [String]
|
558
|
+
#
|
445
559
|
# @!attribute [rw] property_updates
|
446
560
|
# An object that maps strings to the properties to set in the
|
447
561
|
# component type update. Each string in the mapping must be unique to
|
448
562
|
# this object.
|
449
563
|
# @return [Hash<String,Types::PropertyRequest>]
|
450
564
|
#
|
451
|
-
# @!attribute [rw]
|
452
|
-
# The
|
453
|
-
# @return [String]
|
565
|
+
# @!attribute [rw] property_group_updates
|
566
|
+
# The property group updates.
|
567
|
+
# @return [Hash<String,Types::ComponentPropertyGroupRequest>]
|
454
568
|
#
|
455
569
|
class ComponentUpdateRequest < Struct.new(
|
456
|
-
:
|
570
|
+
:update_type,
|
457
571
|
:description,
|
572
|
+
:component_type_id,
|
458
573
|
:property_updates,
|
459
|
-
:
|
574
|
+
:property_group_updates)
|
460
575
|
SENSITIVE = []
|
461
576
|
include Aws::Structure
|
462
577
|
end
|
@@ -498,94 +613,109 @@ module Aws::IoTTwinMaker
|
|
498
613
|
# data as a hash:
|
499
614
|
#
|
500
615
|
# {
|
616
|
+
# workspace_id: "Id", # required
|
617
|
+
# is_singleton: false,
|
501
618
|
# component_type_id: "ComponentTypeId", # required
|
502
619
|
# description: "Description",
|
503
|
-
# extends_from: ["ComponentTypeId"],
|
504
|
-
# functions: {
|
505
|
-
# "Name" => {
|
506
|
-
# implemented_by: {
|
507
|
-
# is_native: false,
|
508
|
-
# lambda: {
|
509
|
-
# arn: "LambdaArn", # required
|
510
|
-
# },
|
511
|
-
# },
|
512
|
-
# required_properties: ["Name"],
|
513
|
-
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
514
|
-
# },
|
515
|
-
# },
|
516
|
-
# is_singleton: false,
|
517
620
|
# property_definitions: {
|
518
621
|
# "Name" => {
|
519
|
-
# configuration: {
|
520
|
-
# "Name" => "Value",
|
521
|
-
# },
|
522
622
|
# data_type: {
|
623
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
624
|
+
# nested_type: {
|
625
|
+
# # recursive DataType
|
626
|
+
# },
|
523
627
|
# allowed_values: [
|
524
628
|
# {
|
525
629
|
# boolean_value: false,
|
526
630
|
# double_value: 1.0,
|
527
|
-
# expression: "Expression",
|
528
631
|
# integer_value: 1,
|
632
|
+
# long_value: 1,
|
633
|
+
# string_value: "String",
|
529
634
|
# list_value: {
|
530
635
|
# # recursive DataValueList
|
531
636
|
# },
|
532
|
-
# long_value: 1,
|
533
637
|
# map_value: {
|
534
638
|
# "String" => {
|
535
639
|
# # recursive DataValue
|
536
640
|
# },
|
537
641
|
# },
|
538
642
|
# relationship_value: {
|
539
|
-
# target_component_name: "Name",
|
540
643
|
# target_entity_id: "EntityId",
|
644
|
+
# target_component_name: "Name",
|
541
645
|
# },
|
542
|
-
#
|
646
|
+
# expression: "Expression",
|
543
647
|
# },
|
544
648
|
# ],
|
545
|
-
#
|
546
|
-
# # recursive DataType
|
547
|
-
# },
|
649
|
+
# unit_of_measure: "String",
|
548
650
|
# relationship: {
|
549
|
-
# relationship_type: "String",
|
550
651
|
# target_component_type_id: "ComponentTypeId",
|
652
|
+
# relationship_type: "String",
|
551
653
|
# },
|
552
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
553
|
-
# unit_of_measure: "String",
|
554
654
|
# },
|
655
|
+
# is_required_in_entity: false,
|
656
|
+
# is_external_id: false,
|
657
|
+
# is_stored_externally: false,
|
658
|
+
# is_time_series: false,
|
555
659
|
# default_value: {
|
556
660
|
# boolean_value: false,
|
557
661
|
# double_value: 1.0,
|
558
|
-
# expression: "Expression",
|
559
662
|
# integer_value: 1,
|
663
|
+
# long_value: 1,
|
664
|
+
# string_value: "String",
|
560
665
|
# list_value: [
|
561
666
|
# {
|
562
667
|
# # recursive DataValue
|
563
668
|
# },
|
564
669
|
# ],
|
565
|
-
# long_value: 1,
|
566
670
|
# map_value: {
|
567
671
|
# "String" => {
|
568
672
|
# # recursive DataValue
|
569
673
|
# },
|
570
674
|
# },
|
571
675
|
# relationship_value: {
|
572
|
-
# target_component_name: "Name",
|
573
676
|
# target_entity_id: "EntityId",
|
677
|
+
# target_component_name: "Name",
|
574
678
|
# },
|
575
|
-
#
|
679
|
+
# expression: "Expression",
|
680
|
+
# },
|
681
|
+
# configuration: {
|
682
|
+
# "Name" => "Value",
|
683
|
+
# },
|
684
|
+
# },
|
685
|
+
# },
|
686
|
+
# extends_from: ["ComponentTypeId"],
|
687
|
+
# functions: {
|
688
|
+
# "Name" => {
|
689
|
+
# required_properties: ["Name"],
|
690
|
+
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
691
|
+
# implemented_by: {
|
692
|
+
# lambda: {
|
693
|
+
# arn: "LambdaArn", # required
|
694
|
+
# },
|
695
|
+
# is_native: false,
|
576
696
|
# },
|
577
|
-
# is_external_id: false,
|
578
|
-
# is_required_in_entity: false,
|
579
|
-
# is_stored_externally: false,
|
580
|
-
# is_time_series: false,
|
581
697
|
# },
|
582
698
|
# },
|
583
699
|
# tags: {
|
584
700
|
# "TagKey" => "TagValue",
|
585
701
|
# },
|
586
|
-
#
|
702
|
+
# property_groups: {
|
703
|
+
# "Name" => {
|
704
|
+
# group_type: "TABULAR", # accepts TABULAR
|
705
|
+
# property_names: ["Name"],
|
706
|
+
# },
|
707
|
+
# },
|
587
708
|
# }
|
588
709
|
#
|
710
|
+
# @!attribute [rw] workspace_id
|
711
|
+
# The ID of the workspace that contains the component type.
|
712
|
+
# @return [String]
|
713
|
+
#
|
714
|
+
# @!attribute [rw] is_singleton
|
715
|
+
# A Boolean value that specifies whether an entity can have more than
|
716
|
+
# one component of this type.
|
717
|
+
# @return [Boolean]
|
718
|
+
#
|
589
719
|
# @!attribute [rw] component_type_id
|
590
720
|
# The ID of the component type.
|
591
721
|
# @return [String]
|
@@ -594,6 +724,12 @@ module Aws::IoTTwinMaker
|
|
594
724
|
# The description of the component type.
|
595
725
|
# @return [String]
|
596
726
|
#
|
727
|
+
# @!attribute [rw] property_definitions
|
728
|
+
# An object that maps strings to the property definitions in the
|
729
|
+
# component type. Each string in the mapping must be unique to this
|
730
|
+
# object.
|
731
|
+
# @return [Hash<String,Types::PropertyDefinitionRequest>]
|
732
|
+
#
|
597
733
|
# @!attribute [rw] extends_from
|
598
734
|
# Specifies the parent component type to extend.
|
599
735
|
# @return [Array<String>]
|
@@ -603,34 +739,23 @@ module Aws::IoTTwinMaker
|
|
603
739
|
# Each string in the mapping must be unique to this object.
|
604
740
|
# @return [Hash<String,Types::FunctionRequest>]
|
605
741
|
#
|
606
|
-
# @!attribute [rw] is_singleton
|
607
|
-
# A Boolean value that specifies whether an entity can have more than
|
608
|
-
# one component of this type.
|
609
|
-
# @return [Boolean]
|
610
|
-
#
|
611
|
-
# @!attribute [rw] property_definitions
|
612
|
-
# An object that maps strings to the property definitions in the
|
613
|
-
# component type. Each string in the mapping must be unique to this
|
614
|
-
# object.
|
615
|
-
# @return [Hash<String,Types::PropertyDefinitionRequest>]
|
616
|
-
#
|
617
742
|
# @!attribute [rw] tags
|
618
743
|
# Metadata that you can use to manage the component type.
|
619
744
|
# @return [Hash<String,String>]
|
620
745
|
#
|
621
|
-
# @!attribute [rw]
|
622
|
-
#
|
623
|
-
# @return [String]
|
746
|
+
# @!attribute [rw] property_groups
|
747
|
+
# @return [Hash<String,Types::PropertyGroupRequest>]
|
624
748
|
#
|
625
749
|
class CreateComponentTypeRequest < Struct.new(
|
750
|
+
:workspace_id,
|
751
|
+
:is_singleton,
|
626
752
|
:component_type_id,
|
627
753
|
:description,
|
754
|
+
:property_definitions,
|
628
755
|
:extends_from,
|
629
756
|
:functions,
|
630
|
-
:is_singleton,
|
631
|
-
:property_definitions,
|
632
757
|
:tags,
|
633
|
-
:
|
758
|
+
:property_groups)
|
634
759
|
SENSITIVE = []
|
635
760
|
include Aws::Structure
|
636
761
|
end
|
@@ -659,120 +784,122 @@ module Aws::IoTTwinMaker
|
|
659
784
|
# data as a hash:
|
660
785
|
#
|
661
786
|
# {
|
787
|
+
# workspace_id: "Id", # required
|
788
|
+
# entity_id: "EntityId",
|
789
|
+
# entity_name: "EntityName", # required
|
790
|
+
# description: "Description",
|
662
791
|
# components: {
|
663
792
|
# "Name" => {
|
664
|
-
# component_type_id: "ComponentTypeId",
|
665
793
|
# description: "Description",
|
794
|
+
# component_type_id: "ComponentTypeId",
|
666
795
|
# properties: {
|
667
796
|
# "Name" => {
|
668
797
|
# definition: {
|
669
|
-
# configuration: {
|
670
|
-
# "Name" => "Value",
|
671
|
-
# },
|
672
798
|
# data_type: {
|
799
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
800
|
+
# nested_type: {
|
801
|
+
# # recursive DataType
|
802
|
+
# },
|
673
803
|
# allowed_values: [
|
674
804
|
# {
|
675
805
|
# boolean_value: false,
|
676
806
|
# double_value: 1.0,
|
677
|
-
# expression: "Expression",
|
678
807
|
# integer_value: 1,
|
808
|
+
# long_value: 1,
|
809
|
+
# string_value: "String",
|
679
810
|
# list_value: {
|
680
811
|
# # recursive DataValueList
|
681
812
|
# },
|
682
|
-
# long_value: 1,
|
683
813
|
# map_value: {
|
684
814
|
# "String" => {
|
685
815
|
# # recursive DataValue
|
686
816
|
# },
|
687
817
|
# },
|
688
818
|
# relationship_value: {
|
689
|
-
# target_component_name: "Name",
|
690
819
|
# target_entity_id: "EntityId",
|
820
|
+
# target_component_name: "Name",
|
691
821
|
# },
|
692
|
-
#
|
822
|
+
# expression: "Expression",
|
693
823
|
# },
|
694
824
|
# ],
|
695
|
-
#
|
696
|
-
# # recursive DataType
|
697
|
-
# },
|
825
|
+
# unit_of_measure: "String",
|
698
826
|
# relationship: {
|
699
|
-
# relationship_type: "String",
|
700
827
|
# target_component_type_id: "ComponentTypeId",
|
828
|
+
# relationship_type: "String",
|
701
829
|
# },
|
702
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
703
|
-
# unit_of_measure: "String",
|
704
830
|
# },
|
831
|
+
# is_required_in_entity: false,
|
832
|
+
# is_external_id: false,
|
833
|
+
# is_stored_externally: false,
|
834
|
+
# is_time_series: false,
|
705
835
|
# default_value: {
|
706
836
|
# boolean_value: false,
|
707
837
|
# double_value: 1.0,
|
708
|
-
# expression: "Expression",
|
709
838
|
# integer_value: 1,
|
839
|
+
# long_value: 1,
|
840
|
+
# string_value: "String",
|
710
841
|
# list_value: [
|
711
842
|
# {
|
712
843
|
# # recursive DataValue
|
713
844
|
# },
|
714
845
|
# ],
|
715
|
-
# long_value: 1,
|
716
846
|
# map_value: {
|
717
847
|
# "String" => {
|
718
848
|
# # recursive DataValue
|
719
849
|
# },
|
720
850
|
# },
|
721
851
|
# relationship_value: {
|
722
|
-
# target_component_name: "Name",
|
723
852
|
# target_entity_id: "EntityId",
|
853
|
+
# target_component_name: "Name",
|
724
854
|
# },
|
725
|
-
#
|
855
|
+
# expression: "Expression",
|
856
|
+
# },
|
857
|
+
# configuration: {
|
858
|
+
# "Name" => "Value",
|
726
859
|
# },
|
727
|
-
# is_external_id: false,
|
728
|
-
# is_required_in_entity: false,
|
729
|
-
# is_stored_externally: false,
|
730
|
-
# is_time_series: false,
|
731
860
|
# },
|
732
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
733
861
|
# value: {
|
734
862
|
# boolean_value: false,
|
735
863
|
# double_value: 1.0,
|
736
|
-
# expression: "Expression",
|
737
864
|
# integer_value: 1,
|
865
|
+
# long_value: 1,
|
866
|
+
# string_value: "String",
|
738
867
|
# list_value: [
|
739
868
|
# {
|
740
869
|
# # recursive DataValue
|
741
870
|
# },
|
742
871
|
# ],
|
743
|
-
# long_value: 1,
|
744
872
|
# map_value: {
|
745
873
|
# "String" => {
|
746
874
|
# # recursive DataValue
|
747
875
|
# },
|
748
876
|
# },
|
749
877
|
# relationship_value: {
|
750
|
-
# target_component_name: "Name",
|
751
878
|
# target_entity_id: "EntityId",
|
879
|
+
# target_component_name: "Name",
|
752
880
|
# },
|
753
|
-
#
|
881
|
+
# expression: "Expression",
|
754
882
|
# },
|
883
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
884
|
+
# },
|
885
|
+
# },
|
886
|
+
# property_groups: {
|
887
|
+
# "Name" => {
|
888
|
+
# group_type: "TABULAR", # accepts TABULAR
|
889
|
+
# property_names: ["Name"],
|
890
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
755
891
|
# },
|
756
892
|
# },
|
757
893
|
# },
|
758
894
|
# },
|
759
|
-
# description: "Description",
|
760
|
-
# entity_id: "EntityId",
|
761
|
-
# entity_name: "EntityName", # required
|
762
895
|
# parent_entity_id: "ParentEntityId",
|
763
896
|
# tags: {
|
764
897
|
# "TagKey" => "TagValue",
|
765
898
|
# },
|
766
|
-
# workspace_id: "Id", # required
|
767
899
|
# }
|
768
900
|
#
|
769
|
-
# @!attribute [rw]
|
770
|
-
#
|
771
|
-
# string in the mapping must be unique to this object.
|
772
|
-
# @return [Hash<String,Types::ComponentRequest>]
|
773
|
-
#
|
774
|
-
# @!attribute [rw] description
|
775
|
-
# The description of the entity.
|
901
|
+
# @!attribute [rw] workspace_id
|
902
|
+
# The ID of the workspace that contains the entity.
|
776
903
|
# @return [String]
|
777
904
|
#
|
778
905
|
# @!attribute [rw] entity_id
|
@@ -783,6 +910,15 @@ module Aws::IoTTwinMaker
|
|
783
910
|
# The name of the entity.
|
784
911
|
# @return [String]
|
785
912
|
#
|
913
|
+
# @!attribute [rw] description
|
914
|
+
# The description of the entity.
|
915
|
+
# @return [String]
|
916
|
+
#
|
917
|
+
# @!attribute [rw] components
|
918
|
+
# An object that maps strings to the components in the entity. Each
|
919
|
+
# string in the mapping must be unique to this object.
|
920
|
+
# @return [Hash<String,Types::ComponentRequest>]
|
921
|
+
#
|
786
922
|
# @!attribute [rw] parent_entity_id
|
787
923
|
# The ID of the entity's parent entity.
|
788
924
|
# @return [String]
|
@@ -791,22 +927,22 @@ module Aws::IoTTwinMaker
|
|
791
927
|
# Metadata that you can use to manage the entity.
|
792
928
|
# @return [Hash<String,String>]
|
793
929
|
#
|
794
|
-
# @!attribute [rw] workspace_id
|
795
|
-
# The ID of the workspace that contains the entity.
|
796
|
-
# @return [String]
|
797
|
-
#
|
798
930
|
class CreateEntityRequest < Struct.new(
|
799
|
-
:
|
800
|
-
:description,
|
931
|
+
:workspace_id,
|
801
932
|
:entity_id,
|
802
933
|
:entity_name,
|
934
|
+
:description,
|
935
|
+
:components,
|
803
936
|
:parent_entity_id,
|
804
|
-
:tags
|
805
|
-
:workspace_id)
|
937
|
+
:tags)
|
806
938
|
SENSITIVE = []
|
807
939
|
include Aws::Structure
|
808
940
|
end
|
809
941
|
|
942
|
+
# @!attribute [rw] entity_id
|
943
|
+
# The ID of the entity.
|
944
|
+
# @return [String]
|
945
|
+
#
|
810
946
|
# @!attribute [rw] arn
|
811
947
|
# The ARN of the entity.
|
812
948
|
# @return [String]
|
@@ -815,18 +951,14 @@ module Aws::IoTTwinMaker
|
|
815
951
|
# The date and time when the entity was created.
|
816
952
|
# @return [Time]
|
817
953
|
#
|
818
|
-
# @!attribute [rw] entity_id
|
819
|
-
# The ID of the entity.
|
820
|
-
# @return [String]
|
821
|
-
#
|
822
954
|
# @!attribute [rw] state
|
823
955
|
# The current state of the entity.
|
824
956
|
# @return [String]
|
825
957
|
#
|
826
958
|
class CreateEntityResponse < Struct.new(
|
959
|
+
:entity_id,
|
827
960
|
:arn,
|
828
961
|
:creation_date_time,
|
829
|
-
:entity_id,
|
830
962
|
:state)
|
831
963
|
SENSITIVE = []
|
832
964
|
include Aws::Structure
|
@@ -836,19 +968,23 @@ module Aws::IoTTwinMaker
|
|
836
968
|
# data as a hash:
|
837
969
|
#
|
838
970
|
# {
|
839
|
-
#
|
971
|
+
# workspace_id: "Id", # required
|
972
|
+
# scene_id: "Id", # required
|
840
973
|
# content_location: "S3Url", # required
|
841
974
|
# description: "Description",
|
842
|
-
#
|
975
|
+
# capabilities: ["SceneCapability"],
|
843
976
|
# tags: {
|
844
977
|
# "TagKey" => "TagValue",
|
845
978
|
# },
|
846
|
-
# workspace_id: "Id", # required
|
847
979
|
# }
|
848
980
|
#
|
849
|
-
# @!attribute [rw]
|
850
|
-
#
|
851
|
-
# @return [
|
981
|
+
# @!attribute [rw] workspace_id
|
982
|
+
# The ID of the workspace that contains the scene.
|
983
|
+
# @return [String]
|
984
|
+
#
|
985
|
+
# @!attribute [rw] scene_id
|
986
|
+
# The ID of the scene.
|
987
|
+
# @return [String]
|
852
988
|
#
|
853
989
|
# @!attribute [rw] content_location
|
854
990
|
# The relative path that specifies the location of the content
|
@@ -859,25 +995,21 @@ module Aws::IoTTwinMaker
|
|
859
995
|
# The description for this scene.
|
860
996
|
# @return [String]
|
861
997
|
#
|
862
|
-
# @!attribute [rw]
|
863
|
-
#
|
864
|
-
# @return [String]
|
998
|
+
# @!attribute [rw] capabilities
|
999
|
+
# A list of capabilities that the scene uses to render itself.
|
1000
|
+
# @return [Array<String>]
|
865
1001
|
#
|
866
1002
|
# @!attribute [rw] tags
|
867
1003
|
# Metadata that you can use to manage the scene.
|
868
1004
|
# @return [Hash<String,String>]
|
869
1005
|
#
|
870
|
-
# @!attribute [rw] workspace_id
|
871
|
-
# The ID of the workspace that contains the scene.
|
872
|
-
# @return [String]
|
873
|
-
#
|
874
1006
|
class CreateSceneRequest < Struct.new(
|
875
|
-
:
|
1007
|
+
:workspace_id,
|
1008
|
+
:scene_id,
|
876
1009
|
:content_location,
|
877
1010
|
:description,
|
878
|
-
:
|
879
|
-
:tags
|
880
|
-
:workspace_id)
|
1011
|
+
:capabilities,
|
1012
|
+
:tags)
|
881
1013
|
SENSITIVE = []
|
882
1014
|
include Aws::Structure
|
883
1015
|
end
|
@@ -901,21 +1033,21 @@ module Aws::IoTTwinMaker
|
|
901
1033
|
# data as a hash:
|
902
1034
|
#
|
903
1035
|
# {
|
1036
|
+
# workspace_id: "Id", # required
|
904
1037
|
# description: "Description",
|
905
|
-
# role: "RoleArn", # required
|
906
1038
|
# s3_location: "S3Location", # required
|
1039
|
+
# role: "RoleArn", # required
|
907
1040
|
# tags: {
|
908
1041
|
# "TagKey" => "TagValue",
|
909
1042
|
# },
|
910
|
-
# workspace_id: "Id", # required
|
911
1043
|
# }
|
912
1044
|
#
|
913
|
-
# @!attribute [rw]
|
914
|
-
# The
|
915
|
-
# @return [String]
|
1045
|
+
# @!attribute [rw] workspace_id
|
1046
|
+
# The ID of the workspace.
|
1047
|
+
# @return [String]
|
916
1048
|
#
|
917
|
-
# @!attribute [rw]
|
918
|
-
# The
|
1049
|
+
# @!attribute [rw] description
|
1050
|
+
# The description of the workspace.
|
919
1051
|
# @return [String]
|
920
1052
|
#
|
921
1053
|
# @!attribute [rw] s3_location
|
@@ -923,20 +1055,20 @@ module Aws::IoTTwinMaker
|
|
923
1055
|
# workspace are stored.
|
924
1056
|
# @return [String]
|
925
1057
|
#
|
1058
|
+
# @!attribute [rw] role
|
1059
|
+
# The ARN of the execution role associated with the workspace.
|
1060
|
+
# @return [String]
|
1061
|
+
#
|
926
1062
|
# @!attribute [rw] tags
|
927
1063
|
# Metadata that you can use to manage the workspace
|
928
1064
|
# @return [Hash<String,String>]
|
929
1065
|
#
|
930
|
-
# @!attribute [rw] workspace_id
|
931
|
-
# The ID of the workspace.
|
932
|
-
# @return [String]
|
933
|
-
#
|
934
1066
|
class CreateWorkspaceRequest < Struct.new(
|
1067
|
+
:workspace_id,
|
935
1068
|
:description,
|
936
|
-
:role,
|
937
1069
|
:s3_location,
|
938
|
-
:
|
939
|
-
:
|
1070
|
+
:role,
|
1071
|
+
:tags)
|
940
1072
|
SENSITIVE = []
|
941
1073
|
include Aws::Structure
|
942
1074
|
end
|
@@ -962,24 +1094,24 @@ module Aws::IoTTwinMaker
|
|
962
1094
|
# data as a hash:
|
963
1095
|
#
|
964
1096
|
# {
|
965
|
-
# is_native: false,
|
966
1097
|
# lambda: {
|
967
1098
|
# arn: "LambdaArn", # required
|
968
1099
|
# },
|
1100
|
+
# is_native: false,
|
969
1101
|
# }
|
970
1102
|
#
|
1103
|
+
# @!attribute [rw] lambda
|
1104
|
+
# The Lambda function associated with this data connector.
|
1105
|
+
# @return [Types::LambdaFunction]
|
1106
|
+
#
|
971
1107
|
# @!attribute [rw] is_native
|
972
1108
|
# A Boolean value that specifies whether the data connector is native
|
973
1109
|
# to IoT TwinMaker.
|
974
1110
|
# @return [Boolean]
|
975
1111
|
#
|
976
|
-
# @!attribute [rw] lambda
|
977
|
-
# The Lambda function associated with this data connector.
|
978
|
-
# @return [Types::LambdaFunction]
|
979
|
-
#
|
980
1112
|
class DataConnector < Struct.new(
|
981
|
-
:
|
982
|
-
:
|
1113
|
+
:lambda,
|
1114
|
+
:is_native)
|
983
1115
|
SENSITIVE = []
|
984
1116
|
include Aws::Structure
|
985
1117
|
end
|
@@ -990,95 +1122,95 @@ module Aws::IoTTwinMaker
|
|
990
1122
|
# data as a hash:
|
991
1123
|
#
|
992
1124
|
# {
|
993
|
-
#
|
994
|
-
# {
|
995
|
-
# boolean_value: false,
|
996
|
-
# double_value: 1.0,
|
997
|
-
# expression: "Expression",
|
998
|
-
# integer_value: 1,
|
999
|
-
# list_value: {
|
1000
|
-
# # recursive DataValueList
|
1001
|
-
# },
|
1002
|
-
# long_value: 1,
|
1003
|
-
# map_value: {
|
1004
|
-
# "String" => {
|
1005
|
-
# # recursive DataValue
|
1006
|
-
# },
|
1007
|
-
# },
|
1008
|
-
# relationship_value: {
|
1009
|
-
# target_component_name: "Name",
|
1010
|
-
# target_entity_id: "EntityId",
|
1011
|
-
# },
|
1012
|
-
# string_value: "String",
|
1013
|
-
# },
|
1014
|
-
# ],
|
1125
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
1015
1126
|
# nested_type: {
|
1127
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
1128
|
+
# nested_type: {
|
1129
|
+
# # recursive DataType
|
1130
|
+
# },
|
1016
1131
|
# allowed_values: [
|
1017
1132
|
# {
|
1018
1133
|
# boolean_value: false,
|
1019
1134
|
# double_value: 1.0,
|
1020
|
-
# expression: "Expression",
|
1021
1135
|
# integer_value: 1,
|
1136
|
+
# long_value: 1,
|
1137
|
+
# string_value: "String",
|
1022
1138
|
# list_value: {
|
1023
1139
|
# # recursive DataValueList
|
1024
1140
|
# },
|
1025
|
-
# long_value: 1,
|
1026
1141
|
# map_value: {
|
1027
1142
|
# "String" => {
|
1028
1143
|
# # recursive DataValue
|
1029
1144
|
# },
|
1030
1145
|
# },
|
1031
1146
|
# relationship_value: {
|
1032
|
-
# target_component_name: "Name",
|
1033
1147
|
# target_entity_id: "EntityId",
|
1148
|
+
# target_component_name: "Name",
|
1034
1149
|
# },
|
1035
|
-
#
|
1150
|
+
# expression: "Expression",
|
1036
1151
|
# },
|
1037
1152
|
# ],
|
1038
|
-
#
|
1039
|
-
# # recursive DataType
|
1040
|
-
# },
|
1153
|
+
# unit_of_measure: "String",
|
1041
1154
|
# relationship: {
|
1042
|
-
# relationship_type: "String",
|
1043
1155
|
# target_component_type_id: "ComponentTypeId",
|
1156
|
+
# relationship_type: "String",
|
1044
1157
|
# },
|
1045
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
1046
|
-
# unit_of_measure: "String",
|
1047
1158
|
# },
|
1159
|
+
# allowed_values: [
|
1160
|
+
# {
|
1161
|
+
# boolean_value: false,
|
1162
|
+
# double_value: 1.0,
|
1163
|
+
# integer_value: 1,
|
1164
|
+
# long_value: 1,
|
1165
|
+
# string_value: "String",
|
1166
|
+
# list_value: {
|
1167
|
+
# # recursive DataValueList
|
1168
|
+
# },
|
1169
|
+
# map_value: {
|
1170
|
+
# "String" => {
|
1171
|
+
# # recursive DataValue
|
1172
|
+
# },
|
1173
|
+
# },
|
1174
|
+
# relationship_value: {
|
1175
|
+
# target_entity_id: "EntityId",
|
1176
|
+
# target_component_name: "Name",
|
1177
|
+
# },
|
1178
|
+
# expression: "Expression",
|
1179
|
+
# },
|
1180
|
+
# ],
|
1181
|
+
# unit_of_measure: "String",
|
1048
1182
|
# relationship: {
|
1049
|
-
# relationship_type: "String",
|
1050
1183
|
# target_component_type_id: "ComponentTypeId",
|
1184
|
+
# relationship_type: "String",
|
1051
1185
|
# },
|
1052
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
1053
|
-
# unit_of_measure: "String",
|
1054
1186
|
# }
|
1055
1187
|
#
|
1056
|
-
# @!attribute [rw]
|
1057
|
-
# The
|
1058
|
-
# @return [
|
1188
|
+
# @!attribute [rw] type
|
1189
|
+
# The underlying type of the data type.
|
1190
|
+
# @return [String]
|
1059
1191
|
#
|
1060
1192
|
# @!attribute [rw] nested_type
|
1061
1193
|
# The nested type in the data type.
|
1062
1194
|
# @return [Types::DataType]
|
1063
1195
|
#
|
1064
|
-
# @!attribute [rw]
|
1065
|
-
#
|
1066
|
-
# @return [Types::
|
1067
|
-
#
|
1068
|
-
# @!attribute [rw] type
|
1069
|
-
# The underlying type of the data type.
|
1070
|
-
# @return [String]
|
1196
|
+
# @!attribute [rw] allowed_values
|
1197
|
+
# The allowed values for this data type.
|
1198
|
+
# @return [Array<Types::DataValue>]
|
1071
1199
|
#
|
1072
1200
|
# @!attribute [rw] unit_of_measure
|
1073
1201
|
# The unit of measure used in this data type.
|
1074
1202
|
# @return [String]
|
1075
1203
|
#
|
1204
|
+
# @!attribute [rw] relationship
|
1205
|
+
# A relationship that associates a component with another component.
|
1206
|
+
# @return [Types::Relationship]
|
1207
|
+
#
|
1076
1208
|
class DataType < Struct.new(
|
1077
|
-
:allowed_values,
|
1078
|
-
:nested_type,
|
1079
|
-
:relationship,
|
1080
1209
|
:type,
|
1081
|
-
:
|
1210
|
+
:nested_type,
|
1211
|
+
:allowed_values,
|
1212
|
+
:unit_of_measure,
|
1213
|
+
:relationship)
|
1082
1214
|
SENSITIVE = []
|
1083
1215
|
include Aws::Structure
|
1084
1216
|
end
|
@@ -1091,58 +1223,58 @@ module Aws::IoTTwinMaker
|
|
1091
1223
|
# {
|
1092
1224
|
# boolean_value: false,
|
1093
1225
|
# double_value: 1.0,
|
1094
|
-
# expression: "Expression",
|
1095
1226
|
# integer_value: 1,
|
1227
|
+
# long_value: 1,
|
1228
|
+
# string_value: "String",
|
1096
1229
|
# list_value: [
|
1097
1230
|
# {
|
1098
1231
|
# boolean_value: false,
|
1099
1232
|
# double_value: 1.0,
|
1100
|
-
# expression: "Expression",
|
1101
1233
|
# integer_value: 1,
|
1234
|
+
# long_value: 1,
|
1235
|
+
# string_value: "String",
|
1102
1236
|
# list_value: {
|
1103
1237
|
# # recursive DataValueList
|
1104
1238
|
# },
|
1105
|
-
# long_value: 1,
|
1106
1239
|
# map_value: {
|
1107
1240
|
# "String" => {
|
1108
1241
|
# # recursive DataValue
|
1109
1242
|
# },
|
1110
1243
|
# },
|
1111
1244
|
# relationship_value: {
|
1112
|
-
# target_component_name: "Name",
|
1113
1245
|
# target_entity_id: "EntityId",
|
1246
|
+
# target_component_name: "Name",
|
1114
1247
|
# },
|
1115
|
-
#
|
1248
|
+
# expression: "Expression",
|
1116
1249
|
# },
|
1117
1250
|
# ],
|
1118
|
-
# long_value: 1,
|
1119
1251
|
# map_value: {
|
1120
1252
|
# "String" => {
|
1121
1253
|
# boolean_value: false,
|
1122
1254
|
# double_value: 1.0,
|
1123
|
-
# expression: "Expression",
|
1124
1255
|
# integer_value: 1,
|
1256
|
+
# long_value: 1,
|
1257
|
+
# string_value: "String",
|
1125
1258
|
# list_value: [
|
1126
1259
|
# {
|
1127
1260
|
# # recursive DataValue
|
1128
1261
|
# },
|
1129
1262
|
# ],
|
1130
|
-
# long_value: 1,
|
1131
1263
|
# map_value: {
|
1132
1264
|
# # recursive DataValueMap
|
1133
1265
|
# },
|
1134
1266
|
# relationship_value: {
|
1135
|
-
# target_component_name: "Name",
|
1136
1267
|
# target_entity_id: "EntityId",
|
1268
|
+
# target_component_name: "Name",
|
1137
1269
|
# },
|
1138
|
-
#
|
1270
|
+
# expression: "Expression",
|
1139
1271
|
# },
|
1140
1272
|
# },
|
1141
1273
|
# relationship_value: {
|
1142
|
-
# target_component_name: "Name",
|
1143
1274
|
# target_entity_id: "EntityId",
|
1275
|
+
# target_component_name: "Name",
|
1144
1276
|
# },
|
1145
|
-
#
|
1277
|
+
# expression: "Expression",
|
1146
1278
|
# }
|
1147
1279
|
#
|
1148
1280
|
# @!attribute [rw] boolean_value
|
@@ -1153,22 +1285,22 @@ module Aws::IoTTwinMaker
|
|
1153
1285
|
# A double value.
|
1154
1286
|
# @return [Float]
|
1155
1287
|
#
|
1156
|
-
# @!attribute [rw] expression
|
1157
|
-
# An expression that produces the value.
|
1158
|
-
# @return [String]
|
1159
|
-
#
|
1160
1288
|
# @!attribute [rw] integer_value
|
1161
1289
|
# An integer value.
|
1162
1290
|
# @return [Integer]
|
1163
1291
|
#
|
1164
|
-
# @!attribute [rw] list_value
|
1165
|
-
# A list of multiple values.
|
1166
|
-
# @return [Array<Types::DataValue>]
|
1167
|
-
#
|
1168
1292
|
# @!attribute [rw] long_value
|
1169
1293
|
# A long value.
|
1170
1294
|
# @return [Integer]
|
1171
1295
|
#
|
1296
|
+
# @!attribute [rw] string_value
|
1297
|
+
# A string value.
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1300
|
+
# @!attribute [rw] list_value
|
1301
|
+
# A list of multiple values.
|
1302
|
+
# @return [Array<Types::DataValue>]
|
1303
|
+
#
|
1172
1304
|
# @!attribute [rw] map_value
|
1173
1305
|
# An object that maps strings to multiple `DataValue` objects.
|
1174
1306
|
# @return [Hash<String,Types::DataValue>]
|
@@ -1177,20 +1309,20 @@ module Aws::IoTTwinMaker
|
|
1177
1309
|
# A value that relates a component to another component.
|
1178
1310
|
# @return [Types::RelationshipValue]
|
1179
1311
|
#
|
1180
|
-
# @!attribute [rw]
|
1181
|
-
#
|
1312
|
+
# @!attribute [rw] expression
|
1313
|
+
# An expression that produces the value.
|
1182
1314
|
# @return [String]
|
1183
1315
|
#
|
1184
1316
|
class DataValue < Struct.new(
|
1185
1317
|
:boolean_value,
|
1186
1318
|
:double_value,
|
1187
|
-
:expression,
|
1188
1319
|
:integer_value,
|
1189
|
-
:list_value,
|
1190
1320
|
:long_value,
|
1321
|
+
:string_value,
|
1322
|
+
:list_value,
|
1191
1323
|
:map_value,
|
1192
1324
|
:relationship_value,
|
1193
|
-
:
|
1325
|
+
:expression)
|
1194
1326
|
SENSITIVE = []
|
1195
1327
|
include Aws::Structure
|
1196
1328
|
end
|
@@ -1199,21 +1331,21 @@ module Aws::IoTTwinMaker
|
|
1199
1331
|
# data as a hash:
|
1200
1332
|
#
|
1201
1333
|
# {
|
1202
|
-
# component_type_id: "ComponentTypeId", # required
|
1203
1334
|
# workspace_id: "Id", # required
|
1335
|
+
# component_type_id: "ComponentTypeId", # required
|
1204
1336
|
# }
|
1205
1337
|
#
|
1206
|
-
# @!attribute [rw] component_type_id
|
1207
|
-
# The ID of the component type to delete.
|
1208
|
-
# @return [String]
|
1209
|
-
#
|
1210
1338
|
# @!attribute [rw] workspace_id
|
1211
1339
|
# The ID of the workspace that contains the component type.
|
1212
1340
|
# @return [String]
|
1213
1341
|
#
|
1342
|
+
# @!attribute [rw] component_type_id
|
1343
|
+
# The ID of the component type to delete.
|
1344
|
+
# @return [String]
|
1345
|
+
#
|
1214
1346
|
class DeleteComponentTypeRequest < Struct.new(
|
1215
|
-
:
|
1216
|
-
:
|
1347
|
+
:workspace_id,
|
1348
|
+
:component_type_id)
|
1217
1349
|
SENSITIVE = []
|
1218
1350
|
include Aws::Structure
|
1219
1351
|
end
|
@@ -1232,11 +1364,15 @@ module Aws::IoTTwinMaker
|
|
1232
1364
|
# data as a hash:
|
1233
1365
|
#
|
1234
1366
|
# {
|
1367
|
+
# workspace_id: "Id", # required
|
1235
1368
|
# entity_id: "EntityId", # required
|
1236
1369
|
# is_recursive: false,
|
1237
|
-
# workspace_id: "Id", # required
|
1238
1370
|
# }
|
1239
1371
|
#
|
1372
|
+
# @!attribute [rw] workspace_id
|
1373
|
+
# The ID of the workspace that contains the entity to delete.
|
1374
|
+
# @return [String]
|
1375
|
+
#
|
1240
1376
|
# @!attribute [rw] entity_id
|
1241
1377
|
# The ID of the entity to delete.
|
1242
1378
|
# @return [String]
|
@@ -1246,14 +1382,10 @@ module Aws::IoTTwinMaker
|
|
1246
1382
|
# entities.
|
1247
1383
|
# @return [Boolean]
|
1248
1384
|
#
|
1249
|
-
# @!attribute [rw] workspace_id
|
1250
|
-
# The ID of the workspace that contains the entity to delete.
|
1251
|
-
# @return [String]
|
1252
|
-
#
|
1253
1385
|
class DeleteEntityRequest < Struct.new(
|
1386
|
+
:workspace_id,
|
1254
1387
|
:entity_id,
|
1255
|
-
:is_recursive
|
1256
|
-
:workspace_id)
|
1388
|
+
:is_recursive)
|
1257
1389
|
SENSITIVE = []
|
1258
1390
|
include Aws::Structure
|
1259
1391
|
end
|
@@ -1272,21 +1404,21 @@ module Aws::IoTTwinMaker
|
|
1272
1404
|
# data as a hash:
|
1273
1405
|
#
|
1274
1406
|
# {
|
1275
|
-
# scene_id: "Id", # required
|
1276
1407
|
# workspace_id: "Id", # required
|
1408
|
+
# scene_id: "Id", # required
|
1277
1409
|
# }
|
1278
1410
|
#
|
1279
|
-
# @!attribute [rw] scene_id
|
1280
|
-
# The ID of the scene to delete.
|
1281
|
-
# @return [String]
|
1282
|
-
#
|
1283
1411
|
# @!attribute [rw] workspace_id
|
1284
1412
|
# The ID of the workspace.
|
1285
1413
|
# @return [String]
|
1286
1414
|
#
|
1415
|
+
# @!attribute [rw] scene_id
|
1416
|
+
# The ID of the scene to delete.
|
1417
|
+
# @return [String]
|
1418
|
+
#
|
1287
1419
|
class DeleteSceneRequest < Struct.new(
|
1288
|
-
:
|
1289
|
-
:
|
1420
|
+
:workspace_id,
|
1421
|
+
:scene_id)
|
1290
1422
|
SENSITIVE = []
|
1291
1423
|
include Aws::Structure
|
1292
1424
|
end
|
@@ -1319,10 +1451,10 @@ module Aws::IoTTwinMaker
|
|
1319
1451
|
#
|
1320
1452
|
# {
|
1321
1453
|
# component_name: "Name",
|
1322
|
-
# entity_id: "EntityId",
|
1323
1454
|
# external_id_property: {
|
1324
1455
|
# "String" => "String",
|
1325
1456
|
# },
|
1457
|
+
# entity_id: "EntityId",
|
1326
1458
|
# property_name: "Name", # required
|
1327
1459
|
# }
|
1328
1460
|
#
|
@@ -1330,23 +1462,23 @@ module Aws::IoTTwinMaker
|
|
1330
1462
|
# The name of the component.
|
1331
1463
|
# @return [String]
|
1332
1464
|
#
|
1333
|
-
# @!attribute [rw] entity_id
|
1334
|
-
# The ID of the entity.
|
1335
|
-
# @return [String]
|
1336
|
-
#
|
1337
1465
|
# @!attribute [rw] external_id_property
|
1338
1466
|
# A mapping of external IDs to property names. External IDs uniquely
|
1339
1467
|
# identify properties from external data stores.
|
1340
1468
|
# @return [Hash<String,String>]
|
1341
1469
|
#
|
1470
|
+
# @!attribute [rw] entity_id
|
1471
|
+
# The ID of the entity.
|
1472
|
+
# @return [String]
|
1473
|
+
#
|
1342
1474
|
# @!attribute [rw] property_name
|
1343
1475
|
# The name of the property.
|
1344
1476
|
# @return [String]
|
1345
1477
|
#
|
1346
1478
|
class EntityPropertyReference < Struct.new(
|
1347
1479
|
:component_name,
|
1348
|
-
:entity_id,
|
1349
1480
|
:external_id_property,
|
1481
|
+
:entity_id,
|
1350
1482
|
:property_name)
|
1351
1483
|
SENSITIVE = []
|
1352
1484
|
include Aws::Structure
|
@@ -1354,18 +1486,6 @@ module Aws::IoTTwinMaker
|
|
1354
1486
|
|
1355
1487
|
# An object that contains information about an entity.
|
1356
1488
|
#
|
1357
|
-
# @!attribute [rw] arn
|
1358
|
-
# The ARN of the entity.
|
1359
|
-
# @return [String]
|
1360
|
-
#
|
1361
|
-
# @!attribute [rw] creation_date_time
|
1362
|
-
# The date and time when the entity was created.
|
1363
|
-
# @return [Time]
|
1364
|
-
#
|
1365
|
-
# @!attribute [rw] description
|
1366
|
-
# The description of the entity.
|
1367
|
-
# @return [String]
|
1368
|
-
#
|
1369
1489
|
# @!attribute [rw] entity_id
|
1370
1490
|
# The ID of the entity.
|
1371
1491
|
# @return [String]
|
@@ -1374,10 +1494,9 @@ module Aws::IoTTwinMaker
|
|
1374
1494
|
# The name of the entity.
|
1375
1495
|
# @return [String]
|
1376
1496
|
#
|
1377
|
-
# @!attribute [rw]
|
1378
|
-
#
|
1379
|
-
#
|
1380
|
-
# @return [Boolean]
|
1497
|
+
# @!attribute [rw] arn
|
1498
|
+
# The ARN of the entity.
|
1499
|
+
# @return [String]
|
1381
1500
|
#
|
1382
1501
|
# @!attribute [rw] parent_entity_id
|
1383
1502
|
# The ID of the parent entity.
|
@@ -1387,21 +1506,34 @@ module Aws::IoTTwinMaker
|
|
1387
1506
|
# The current status of the entity.
|
1388
1507
|
# @return [Types::Status]
|
1389
1508
|
#
|
1509
|
+
# @!attribute [rw] description
|
1510
|
+
# The description of the entity.
|
1511
|
+
# @return [String]
|
1512
|
+
#
|
1513
|
+
# @!attribute [rw] has_child_entities
|
1514
|
+
# A Boolean value that specifies whether the entity has child entities
|
1515
|
+
# or not.
|
1516
|
+
# @return [Boolean]
|
1517
|
+
#
|
1518
|
+
# @!attribute [rw] creation_date_time
|
1519
|
+
# The date and time when the entity was created.
|
1520
|
+
# @return [Time]
|
1521
|
+
#
|
1390
1522
|
# @!attribute [rw] update_date_time
|
1391
1523
|
# The last date and time when the entity was updated.
|
1392
1524
|
# @return [Time]
|
1393
1525
|
#
|
1394
1526
|
class EntitySummary < Struct.new(
|
1395
|
-
:arn,
|
1396
|
-
:creation_date_time,
|
1397
|
-
:description,
|
1398
1527
|
:entity_id,
|
1399
1528
|
:entity_name,
|
1400
|
-
:
|
1529
|
+
:arn,
|
1401
1530
|
:parent_entity_id,
|
1402
1531
|
:status,
|
1403
|
-
:
|
1404
|
-
|
1532
|
+
:description,
|
1533
|
+
:has_child_entities,
|
1534
|
+
:creation_date_time,
|
1535
|
+
:update_date_time)
|
1536
|
+
SENSITIVE = []
|
1405
1537
|
include Aws::Structure
|
1406
1538
|
end
|
1407
1539
|
|
@@ -1422,26 +1554,80 @@ module Aws::IoTTwinMaker
|
|
1422
1554
|
include Aws::Structure
|
1423
1555
|
end
|
1424
1556
|
|
1557
|
+
# @note When making an API call, you may pass ExecuteQueryRequest
|
1558
|
+
# data as a hash:
|
1559
|
+
#
|
1560
|
+
# {
|
1561
|
+
# workspace_id: "Id", # required
|
1562
|
+
# query_statement: "QueryStatement", # required
|
1563
|
+
# max_results: 1,
|
1564
|
+
# next_token: "NextToken",
|
1565
|
+
# }
|
1566
|
+
#
|
1567
|
+
# @!attribute [rw] workspace_id
|
1568
|
+
# The ID of the workspace.
|
1569
|
+
# @return [String]
|
1570
|
+
#
|
1571
|
+
# @!attribute [rw] query_statement
|
1572
|
+
# The query statement.
|
1573
|
+
# @return [String]
|
1574
|
+
#
|
1575
|
+
# @!attribute [rw] max_results
|
1576
|
+
# The maximum number of results to return at one time. The default is
|
1577
|
+
# 25.
|
1578
|
+
#
|
1579
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
1580
|
+
# @return [Integer]
|
1581
|
+
#
|
1582
|
+
# @!attribute [rw] next_token
|
1583
|
+
# The string that specifies the next page of results.
|
1584
|
+
# @return [String]
|
1585
|
+
#
|
1586
|
+
class ExecuteQueryRequest < Struct.new(
|
1587
|
+
:workspace_id,
|
1588
|
+
:query_statement,
|
1589
|
+
:max_results,
|
1590
|
+
:next_token)
|
1591
|
+
SENSITIVE = []
|
1592
|
+
include Aws::Structure
|
1593
|
+
end
|
1594
|
+
|
1595
|
+
# @!attribute [rw] column_descriptions
|
1596
|
+
# A list of ColumnDescription objects.
|
1597
|
+
# @return [Array<Types::ColumnDescription>]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] rows
|
1600
|
+
# Represents a single row in the query results.
|
1601
|
+
# @return [Array<Types::Row>]
|
1602
|
+
#
|
1603
|
+
# @!attribute [rw] next_token
|
1604
|
+
# The string that specifies the next page of results.
|
1605
|
+
# @return [String]
|
1606
|
+
#
|
1607
|
+
class ExecuteQueryResponse < Struct.new(
|
1608
|
+
:column_descriptions,
|
1609
|
+
:rows,
|
1610
|
+
:next_token)
|
1611
|
+
SENSITIVE = []
|
1612
|
+
include Aws::Structure
|
1613
|
+
end
|
1614
|
+
|
1425
1615
|
# The function request body.
|
1426
1616
|
#
|
1427
1617
|
# @note When making an API call, you may pass FunctionRequest
|
1428
1618
|
# data as a hash:
|
1429
1619
|
#
|
1430
1620
|
# {
|
1621
|
+
# required_properties: ["Name"],
|
1622
|
+
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
1431
1623
|
# implemented_by: {
|
1432
|
-
# is_native: false,
|
1433
1624
|
# lambda: {
|
1434
1625
|
# arn: "LambdaArn", # required
|
1435
1626
|
# },
|
1627
|
+
# is_native: false,
|
1436
1628
|
# },
|
1437
|
-
# required_properties: ["Name"],
|
1438
|
-
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
1439
1629
|
# }
|
1440
1630
|
#
|
1441
|
-
# @!attribute [rw] implemented_by
|
1442
|
-
# The data connector.
|
1443
|
-
# @return [Types::DataConnector]
|
1444
|
-
#
|
1445
1631
|
# @!attribute [rw] required_properties
|
1446
1632
|
# The required properties of the function.
|
1447
1633
|
# @return [Array<String>]
|
@@ -1450,24 +1636,20 @@ module Aws::IoTTwinMaker
|
|
1450
1636
|
# The scope of the function.
|
1451
1637
|
# @return [String]
|
1452
1638
|
#
|
1639
|
+
# @!attribute [rw] implemented_by
|
1640
|
+
# The data connector.
|
1641
|
+
# @return [Types::DataConnector]
|
1642
|
+
#
|
1453
1643
|
class FunctionRequest < Struct.new(
|
1454
|
-
:implemented_by,
|
1455
1644
|
:required_properties,
|
1456
|
-
:scope
|
1645
|
+
:scope,
|
1646
|
+
:implemented_by)
|
1457
1647
|
SENSITIVE = []
|
1458
1648
|
include Aws::Structure
|
1459
1649
|
end
|
1460
1650
|
|
1461
1651
|
# The function response.
|
1462
1652
|
#
|
1463
|
-
# @!attribute [rw] implemented_by
|
1464
|
-
# The data connector.
|
1465
|
-
# @return [Types::DataConnector]
|
1466
|
-
#
|
1467
|
-
# @!attribute [rw] is_inherited
|
1468
|
-
# Indicates whether this function is inherited.
|
1469
|
-
# @return [Boolean]
|
1470
|
-
#
|
1471
1653
|
# @!attribute [rw] required_properties
|
1472
1654
|
# The required properties of the function.
|
1473
1655
|
# @return [Array<String>]
|
@@ -1476,11 +1658,19 @@ module Aws::IoTTwinMaker
|
|
1476
1658
|
# The scope of the function.
|
1477
1659
|
# @return [String]
|
1478
1660
|
#
|
1661
|
+
# @!attribute [rw] implemented_by
|
1662
|
+
# The data connector.
|
1663
|
+
# @return [Types::DataConnector]
|
1664
|
+
#
|
1665
|
+
# @!attribute [rw] is_inherited
|
1666
|
+
# Indicates whether this function is inherited.
|
1667
|
+
# @return [Boolean]
|
1668
|
+
#
|
1479
1669
|
class FunctionResponse < Struct.new(
|
1480
|
-
:implemented_by,
|
1481
|
-
:is_inherited,
|
1482
1670
|
:required_properties,
|
1483
|
-
:scope
|
1671
|
+
:scope,
|
1672
|
+
:implemented_by,
|
1673
|
+
:is_inherited)
|
1484
1674
|
SENSITIVE = []
|
1485
1675
|
include Aws::Structure
|
1486
1676
|
end
|
@@ -1489,41 +1679,48 @@ module Aws::IoTTwinMaker
|
|
1489
1679
|
# data as a hash:
|
1490
1680
|
#
|
1491
1681
|
# {
|
1492
|
-
# component_type_id: "ComponentTypeId", # required
|
1493
1682
|
# workspace_id: "Id", # required
|
1683
|
+
# component_type_id: "ComponentTypeId", # required
|
1494
1684
|
# }
|
1495
1685
|
#
|
1496
|
-
# @!attribute [rw] component_type_id
|
1497
|
-
# The ID of the component type.
|
1498
|
-
# @return [String]
|
1499
|
-
#
|
1500
1686
|
# @!attribute [rw] workspace_id
|
1501
1687
|
# The ID of the workspace that contains the component type.
|
1502
1688
|
# @return [String]
|
1503
1689
|
#
|
1690
|
+
# @!attribute [rw] component_type_id
|
1691
|
+
# The ID of the component type.
|
1692
|
+
# @return [String]
|
1693
|
+
#
|
1504
1694
|
class GetComponentTypeRequest < Struct.new(
|
1505
|
-
:
|
1506
|
-
:
|
1695
|
+
:workspace_id,
|
1696
|
+
:component_type_id)
|
1507
1697
|
SENSITIVE = []
|
1508
1698
|
include Aws::Structure
|
1509
1699
|
end
|
1510
1700
|
|
1511
|
-
# @!attribute [rw]
|
1512
|
-
# The
|
1701
|
+
# @!attribute [rw] workspace_id
|
1702
|
+
# The ID of the workspace that contains the component type.
|
1513
1703
|
# @return [String]
|
1514
1704
|
#
|
1705
|
+
# @!attribute [rw] is_singleton
|
1706
|
+
# A Boolean value that specifies whether an entity can have more than
|
1707
|
+
# one component of this type.
|
1708
|
+
# @return [Boolean]
|
1709
|
+
#
|
1515
1710
|
# @!attribute [rw] component_type_id
|
1516
1711
|
# The ID of the component type.
|
1517
1712
|
# @return [String]
|
1518
1713
|
#
|
1519
|
-
# @!attribute [rw] creation_date_time
|
1520
|
-
# The date and time when the component type was created.
|
1521
|
-
# @return [Time]
|
1522
|
-
#
|
1523
1714
|
# @!attribute [rw] description
|
1524
1715
|
# The description of the component type.
|
1525
1716
|
# @return [String]
|
1526
1717
|
#
|
1718
|
+
# @!attribute [rw] property_definitions
|
1719
|
+
# An object that maps strings to the property definitions in the
|
1720
|
+
# component type. Each string in the mapping must be unique to this
|
1721
|
+
# object.
|
1722
|
+
# @return [Hash<String,Types::PropertyDefinitionResponse>]
|
1723
|
+
#
|
1527
1724
|
# @!attribute [rw] extends_from
|
1528
1725
|
# The name of the parent component type that this component type
|
1529
1726
|
# extends.
|
@@ -1534,6 +1731,18 @@ module Aws::IoTTwinMaker
|
|
1534
1731
|
# Each string in the mapping must be unique to this object.
|
1535
1732
|
# @return [Hash<String,Types::FunctionResponse>]
|
1536
1733
|
#
|
1734
|
+
# @!attribute [rw] creation_date_time
|
1735
|
+
# The date and time when the component type was created.
|
1736
|
+
# @return [Time]
|
1737
|
+
#
|
1738
|
+
# @!attribute [rw] update_date_time
|
1739
|
+
# The date and time when the component was last updated.
|
1740
|
+
# @return [Time]
|
1741
|
+
#
|
1742
|
+
# @!attribute [rw] arn
|
1743
|
+
# The ARN of the component type.
|
1744
|
+
# @return [String]
|
1745
|
+
#
|
1537
1746
|
# @!attribute [rw] is_abstract
|
1538
1747
|
# A Boolean value that specifies whether the component type is
|
1539
1748
|
# abstract.
|
@@ -1544,43 +1753,32 @@ module Aws::IoTTwinMaker
|
|
1544
1753
|
# schema initializer and that the schema initializer has run.
|
1545
1754
|
# @return [Boolean]
|
1546
1755
|
#
|
1547
|
-
# @!attribute [rw] is_singleton
|
1548
|
-
# A Boolean value that specifies whether an entity can have more than
|
1549
|
-
# one component of this type.
|
1550
|
-
# @return [Boolean]
|
1551
|
-
#
|
1552
|
-
# @!attribute [rw] property_definitions
|
1553
|
-
# An object that maps strings to the property definitions in the
|
1554
|
-
# component type. Each string in the mapping must be unique to this
|
1555
|
-
# object.
|
1556
|
-
# @return [Hash<String,Types::PropertyDefinitionResponse>]
|
1557
|
-
#
|
1558
1756
|
# @!attribute [rw] status
|
1559
1757
|
# The current status of the component type.
|
1560
1758
|
# @return [Types::Status]
|
1561
1759
|
#
|
1562
|
-
# @!attribute [rw]
|
1563
|
-
# The
|
1564
|
-
#
|
1760
|
+
# @!attribute [rw] property_groups
|
1761
|
+
# The maximum number of results to return at one time. The default is
|
1762
|
+
# 25.
|
1565
1763
|
#
|
1566
|
-
#
|
1567
|
-
#
|
1568
|
-
# @return [String]
|
1764
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
1765
|
+
# @return [Hash<String,Types::PropertyGroupResponse>]
|
1569
1766
|
#
|
1570
1767
|
class GetComponentTypeResponse < Struct.new(
|
1571
|
-
:
|
1768
|
+
:workspace_id,
|
1769
|
+
:is_singleton,
|
1572
1770
|
:component_type_id,
|
1573
|
-
:creation_date_time,
|
1574
1771
|
:description,
|
1772
|
+
:property_definitions,
|
1575
1773
|
:extends_from,
|
1576
1774
|
:functions,
|
1775
|
+
:creation_date_time,
|
1776
|
+
:update_date_time,
|
1777
|
+
:arn,
|
1577
1778
|
:is_abstract,
|
1578
1779
|
:is_schema_initialized,
|
1579
|
-
:is_singleton,
|
1580
|
-
:property_definitions,
|
1581
1780
|
:status,
|
1582
|
-
:
|
1583
|
-
:workspace_id)
|
1781
|
+
:property_groups)
|
1584
1782
|
SENSITIVE = []
|
1585
1783
|
include Aws::Structure
|
1586
1784
|
end
|
@@ -1589,48 +1787,56 @@ module Aws::IoTTwinMaker
|
|
1589
1787
|
# data as a hash:
|
1590
1788
|
#
|
1591
1789
|
# {
|
1592
|
-
# entity_id: "EntityId", # required
|
1593
1790
|
# workspace_id: "Id", # required
|
1791
|
+
# entity_id: "EntityId", # required
|
1594
1792
|
# }
|
1595
1793
|
#
|
1596
|
-
# @!attribute [rw] entity_id
|
1597
|
-
# The ID of the entity.
|
1598
|
-
# @return [String]
|
1599
|
-
#
|
1600
1794
|
# @!attribute [rw] workspace_id
|
1601
1795
|
# The ID of the workspace.
|
1602
1796
|
# @return [String]
|
1603
1797
|
#
|
1798
|
+
# @!attribute [rw] entity_id
|
1799
|
+
# The ID of the entity.
|
1800
|
+
# @return [String]
|
1801
|
+
#
|
1604
1802
|
class GetEntityRequest < Struct.new(
|
1605
|
-
:
|
1606
|
-
:
|
1803
|
+
:workspace_id,
|
1804
|
+
:entity_id)
|
1607
1805
|
SENSITIVE = []
|
1608
1806
|
include Aws::Structure
|
1609
1807
|
end
|
1610
1808
|
|
1809
|
+
# @!attribute [rw] entity_id
|
1810
|
+
# The ID of the entity.
|
1811
|
+
# @return [String]
|
1812
|
+
#
|
1813
|
+
# @!attribute [rw] entity_name
|
1814
|
+
# The name of the entity.
|
1815
|
+
# @return [String]
|
1816
|
+
#
|
1611
1817
|
# @!attribute [rw] arn
|
1612
1818
|
# The ARN of the entity.
|
1613
1819
|
# @return [String]
|
1614
1820
|
#
|
1615
|
-
# @!attribute [rw]
|
1616
|
-
#
|
1617
|
-
#
|
1618
|
-
# @return [Hash<String,Types::ComponentResponse>]
|
1821
|
+
# @!attribute [rw] status
|
1822
|
+
# The current status of the entity.
|
1823
|
+
# @return [Types::Status]
|
1619
1824
|
#
|
1620
|
-
# @!attribute [rw]
|
1621
|
-
# The
|
1622
|
-
# @return [
|
1825
|
+
# @!attribute [rw] workspace_id
|
1826
|
+
# The ID of the workspace.
|
1827
|
+
# @return [String]
|
1623
1828
|
#
|
1624
1829
|
# @!attribute [rw] description
|
1625
1830
|
# The description of the entity.
|
1626
1831
|
# @return [String]
|
1627
1832
|
#
|
1628
|
-
# @!attribute [rw]
|
1629
|
-
#
|
1630
|
-
#
|
1833
|
+
# @!attribute [rw] components
|
1834
|
+
# An object that maps strings to the components in the entity. Each
|
1835
|
+
# string in the mapping must be unique to this object.
|
1836
|
+
# @return [Hash<String,Types::ComponentResponse>]
|
1631
1837
|
#
|
1632
|
-
# @!attribute [rw]
|
1633
|
-
# The
|
1838
|
+
# @!attribute [rw] parent_entity_id
|
1839
|
+
# The ID of the parent entity for this entity.
|
1634
1840
|
# @return [String]
|
1635
1841
|
#
|
1636
1842
|
# @!attribute [rw] has_child_entities
|
@@ -1638,34 +1844,45 @@ module Aws::IoTTwinMaker
|
|
1638
1844
|
# child entities.
|
1639
1845
|
# @return [Boolean]
|
1640
1846
|
#
|
1641
|
-
# @!attribute [rw]
|
1642
|
-
# The
|
1643
|
-
# @return [
|
1644
|
-
#
|
1645
|
-
# @!attribute [rw] status
|
1646
|
-
# The current status of the entity.
|
1647
|
-
# @return [Types::Status]
|
1847
|
+
# @!attribute [rw] creation_date_time
|
1848
|
+
# The date and time when the entity was created.
|
1849
|
+
# @return [Time]
|
1648
1850
|
#
|
1649
1851
|
# @!attribute [rw] update_date_time
|
1650
1852
|
# The date and time when the entity was last updated.
|
1651
1853
|
# @return [Time]
|
1652
1854
|
#
|
1653
|
-
# @!attribute [rw] workspace_id
|
1654
|
-
# The ID of the workspace.
|
1655
|
-
# @return [String]
|
1656
|
-
#
|
1657
1855
|
class GetEntityResponse < Struct.new(
|
1658
|
-
:arn,
|
1659
|
-
:components,
|
1660
|
-
:creation_date_time,
|
1661
|
-
:description,
|
1662
1856
|
:entity_id,
|
1663
1857
|
:entity_name,
|
1664
|
-
:
|
1665
|
-
:parent_entity_id,
|
1858
|
+
:arn,
|
1666
1859
|
:status,
|
1667
|
-
:
|
1668
|
-
:
|
1860
|
+
:workspace_id,
|
1861
|
+
:description,
|
1862
|
+
:components,
|
1863
|
+
:parent_entity_id,
|
1864
|
+
:has_child_entities,
|
1865
|
+
:creation_date_time,
|
1866
|
+
:update_date_time)
|
1867
|
+
SENSITIVE = []
|
1868
|
+
include Aws::Structure
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
# @api private
|
1872
|
+
#
|
1873
|
+
class GetPricingPlanRequest < Aws::EmptyStructure; end
|
1874
|
+
|
1875
|
+
# @!attribute [rw] current_pricing_plan
|
1876
|
+
# The chosen pricing plan for the current billing cycle.
|
1877
|
+
# @return [Types::PricingPlan]
|
1878
|
+
#
|
1879
|
+
# @!attribute [rw] pending_pricing_plan
|
1880
|
+
# The pending pricing plan.
|
1881
|
+
# @return [Types::PricingPlan]
|
1882
|
+
#
|
1883
|
+
class GetPricingPlanResponse < Struct.new(
|
1884
|
+
:current_pricing_plan,
|
1885
|
+
:pending_pricing_plan)
|
1669
1886
|
SENSITIVE = []
|
1670
1887
|
include Aws::Structure
|
1671
1888
|
end
|
@@ -1674,52 +1891,60 @@ module Aws::IoTTwinMaker
|
|
1674
1891
|
# data as a hash:
|
1675
1892
|
#
|
1676
1893
|
# {
|
1894
|
+
# workspace_id: "Id", # required
|
1895
|
+
# entity_id: "EntityId",
|
1677
1896
|
# component_name: "Name",
|
1678
1897
|
# component_type_id: "ComponentTypeId",
|
1679
|
-
#
|
1680
|
-
# end_time: "Time",
|
1681
|
-
# entity_id: "EntityId",
|
1682
|
-
# interpolation: {
|
1683
|
-
# interpolation_type: "LINEAR", # accepts LINEAR
|
1684
|
-
# interval_in_seconds: 1,
|
1685
|
-
# },
|
1686
|
-
# max_results: 1,
|
1687
|
-
# next_token: "NextToken",
|
1688
|
-
# order_by_time: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1898
|
+
# selected_properties: ["String"], # required
|
1689
1899
|
# property_filters: [
|
1690
1900
|
# {
|
1691
|
-
# operator: "String",
|
1692
1901
|
# property_name: "String",
|
1902
|
+
# operator: "String",
|
1693
1903
|
# value: {
|
1694
1904
|
# boolean_value: false,
|
1695
1905
|
# double_value: 1.0,
|
1696
|
-
# expression: "Expression",
|
1697
1906
|
# integer_value: 1,
|
1907
|
+
# long_value: 1,
|
1908
|
+
# string_value: "String",
|
1698
1909
|
# list_value: [
|
1699
1910
|
# {
|
1700
1911
|
# # recursive DataValue
|
1701
1912
|
# },
|
1702
1913
|
# ],
|
1703
|
-
# long_value: 1,
|
1704
1914
|
# map_value: {
|
1705
1915
|
# "String" => {
|
1706
1916
|
# # recursive DataValue
|
1707
1917
|
# },
|
1708
1918
|
# },
|
1709
1919
|
# relationship_value: {
|
1710
|
-
# target_component_name: "Name",
|
1711
1920
|
# target_entity_id: "EntityId",
|
1921
|
+
# target_component_name: "Name",
|
1712
1922
|
# },
|
1713
|
-
#
|
1923
|
+
# expression: "Expression",
|
1714
1924
|
# },
|
1715
1925
|
# },
|
1716
1926
|
# ],
|
1717
|
-
# selected_properties: ["String"], # required
|
1718
1927
|
# start_date_time: Time.now,
|
1928
|
+
# end_date_time: Time.now,
|
1929
|
+
# interpolation: {
|
1930
|
+
# interpolation_type: "LINEAR", # accepts LINEAR
|
1931
|
+
# interval_in_seconds: 1,
|
1932
|
+
# },
|
1933
|
+
# next_token: "NextToken",
|
1934
|
+
# max_results: 1,
|
1935
|
+
# order_by_time: "ASCENDING", # accepts ASCENDING, DESCENDING
|
1719
1936
|
# start_time: "Time",
|
1720
|
-
#
|
1937
|
+
# end_time: "Time",
|
1721
1938
|
# }
|
1722
1939
|
#
|
1940
|
+
# @!attribute [rw] workspace_id
|
1941
|
+
# The ID of the workspace.
|
1942
|
+
# @return [String]
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] entity_id
|
1945
|
+
# The ID of the entity.
|
1946
|
+
# @return [String]
|
1947
|
+
#
|
1723
1948
|
# @!attribute [rw] component_name
|
1724
1949
|
# The name of the component.
|
1725
1950
|
# @return [String]
|
@@ -1728,54 +1953,42 @@ module Aws::IoTTwinMaker
|
|
1728
1953
|
# The ID of the component type.
|
1729
1954
|
# @return [String]
|
1730
1955
|
#
|
1731
|
-
# @!attribute [rw]
|
1732
|
-
#
|
1733
|
-
# @return [
|
1734
|
-
#
|
1735
|
-
# @!attribute [rw] end_time
|
1736
|
-
# The ISO8601 DateTime of the latest property value to return.
|
1737
|
-
#
|
1738
|
-
# For more information about the ISO8601 DateTime format, see the data
|
1739
|
-
# type [PropertyValue][1].
|
1740
|
-
#
|
1956
|
+
# @!attribute [rw] selected_properties
|
1957
|
+
# A list of properties whose value histories the request retrieves.
|
1958
|
+
# @return [Array<String>]
|
1741
1959
|
#
|
1960
|
+
# @!attribute [rw] property_filters
|
1961
|
+
# A list of objects that filter the property value history request.
|
1962
|
+
# @return [Array<Types::PropertyFilter>]
|
1742
1963
|
#
|
1743
|
-
#
|
1744
|
-
#
|
1964
|
+
# @!attribute [rw] start_date_time
|
1965
|
+
# The date and time of the earliest property value to return.
|
1966
|
+
# @return [Time]
|
1745
1967
|
#
|
1746
|
-
# @!attribute [rw]
|
1747
|
-
# The
|
1748
|
-
# @return [
|
1968
|
+
# @!attribute [rw] end_date_time
|
1969
|
+
# The date and time of the latest property value to return.
|
1970
|
+
# @return [Time]
|
1749
1971
|
#
|
1750
1972
|
# @!attribute [rw] interpolation
|
1751
1973
|
# An object that specifies the interpolation type and the interval
|
1752
1974
|
# over which to interpolate data.
|
1753
1975
|
# @return [Types::InterpolationParameters]
|
1754
1976
|
#
|
1755
|
-
# @!attribute [rw] max_results
|
1756
|
-
# The maximum number of results to return.
|
1757
|
-
# @return [Integer]
|
1758
|
-
#
|
1759
1977
|
# @!attribute [rw] next_token
|
1760
1978
|
# The string that specifies the next page of results.
|
1761
1979
|
# @return [String]
|
1762
1980
|
#
|
1981
|
+
# @!attribute [rw] max_results
|
1982
|
+
# The maximum number of results to return at one time. The default is
|
1983
|
+
# 25.
|
1984
|
+
#
|
1985
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
1986
|
+
# @return [Integer]
|
1987
|
+
#
|
1763
1988
|
# @!attribute [rw] order_by_time
|
1764
1989
|
# The time direction to use in the result order.
|
1765
1990
|
# @return [String]
|
1766
1991
|
#
|
1767
|
-
# @!attribute [rw] property_filters
|
1768
|
-
# A list of objects that filter the property value history request.
|
1769
|
-
# @return [Array<Types::PropertyFilter>]
|
1770
|
-
#
|
1771
|
-
# @!attribute [rw] selected_properties
|
1772
|
-
# A list of properties whose value histories the request retrieves.
|
1773
|
-
# @return [Array<String>]
|
1774
|
-
#
|
1775
|
-
# @!attribute [rw] start_date_time
|
1776
|
-
# The date and time of the earliest property value to return.
|
1777
|
-
# @return [Time]
|
1778
|
-
#
|
1779
1992
|
# @!attribute [rw] start_time
|
1780
1993
|
# The ISO8601 DateTime of the earliest property value to return.
|
1781
1994
|
#
|
@@ -1784,45 +1997,52 @@ module Aws::IoTTwinMaker
|
|
1784
1997
|
#
|
1785
1998
|
#
|
1786
1999
|
#
|
1787
|
-
# [1]: https://docs.aws.amazon.com/
|
2000
|
+
# [1]: https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html
|
1788
2001
|
# @return [String]
|
1789
2002
|
#
|
1790
|
-
# @!attribute [rw]
|
1791
|
-
# The
|
2003
|
+
# @!attribute [rw] end_time
|
2004
|
+
# The ISO8601 DateTime of the latest property value to return.
|
2005
|
+
#
|
2006
|
+
# For more information about the ISO8601 DateTime format, see the data
|
2007
|
+
# type [PropertyValue][1].
|
2008
|
+
#
|
2009
|
+
#
|
2010
|
+
#
|
2011
|
+
# [1]: https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html
|
1792
2012
|
# @return [String]
|
1793
2013
|
#
|
1794
2014
|
class GetPropertyValueHistoryRequest < Struct.new(
|
2015
|
+
:workspace_id,
|
2016
|
+
:entity_id,
|
1795
2017
|
:component_name,
|
1796
2018
|
:component_type_id,
|
2019
|
+
:selected_properties,
|
2020
|
+
:property_filters,
|
2021
|
+
:start_date_time,
|
1797
2022
|
:end_date_time,
|
1798
|
-
:end_time,
|
1799
|
-
:entity_id,
|
1800
2023
|
:interpolation,
|
1801
|
-
:max_results,
|
1802
2024
|
:next_token,
|
2025
|
+
:max_results,
|
1803
2026
|
:order_by_time,
|
1804
|
-
:property_filters,
|
1805
|
-
:selected_properties,
|
1806
|
-
:start_date_time,
|
1807
2027
|
:start_time,
|
1808
|
-
:
|
2028
|
+
:end_time)
|
1809
2029
|
SENSITIVE = []
|
1810
2030
|
include Aws::Structure
|
1811
2031
|
end
|
1812
2032
|
|
1813
|
-
# @!attribute [rw] next_token
|
1814
|
-
# The string that specifies the next page of results.
|
1815
|
-
# @return [String]
|
1816
|
-
#
|
1817
2033
|
# @!attribute [rw] property_values
|
1818
2034
|
# An object that maps strings to the property definitions in the
|
1819
2035
|
# component type. Each string in the mapping must be unique to this
|
1820
2036
|
# object.
|
1821
2037
|
# @return [Array<Types::PropertyValueHistory>]
|
1822
2038
|
#
|
2039
|
+
# @!attribute [rw] next_token
|
2040
|
+
# The string that specifies the next page of results.
|
2041
|
+
# @return [String]
|
2042
|
+
#
|
1823
2043
|
class GetPropertyValueHistoryResponse < Struct.new(
|
1824
|
-
:
|
1825
|
-
:
|
2044
|
+
:property_values,
|
2045
|
+
:next_token)
|
1826
2046
|
SENSITIVE = []
|
1827
2047
|
include Aws::Structure
|
1828
2048
|
end
|
@@ -1836,6 +2056,45 @@ module Aws::IoTTwinMaker
|
|
1836
2056
|
# entity_id: "EntityId",
|
1837
2057
|
# selected_properties: ["String"], # required
|
1838
2058
|
# workspace_id: "Id", # required
|
2059
|
+
# max_results: 1,
|
2060
|
+
# next_token: "NextToken",
|
2061
|
+
# property_group_name: "Name",
|
2062
|
+
# tabular_conditions: {
|
2063
|
+
# order_by: [
|
2064
|
+
# {
|
2065
|
+
# order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2066
|
+
# property_name: "String", # required
|
2067
|
+
# },
|
2068
|
+
# ],
|
2069
|
+
# property_filters: [
|
2070
|
+
# {
|
2071
|
+
# property_name: "String",
|
2072
|
+
# operator: "String",
|
2073
|
+
# value: {
|
2074
|
+
# boolean_value: false,
|
2075
|
+
# double_value: 1.0,
|
2076
|
+
# integer_value: 1,
|
2077
|
+
# long_value: 1,
|
2078
|
+
# string_value: "String",
|
2079
|
+
# list_value: [
|
2080
|
+
# {
|
2081
|
+
# # recursive DataValue
|
2082
|
+
# },
|
2083
|
+
# ],
|
2084
|
+
# map_value: {
|
2085
|
+
# "String" => {
|
2086
|
+
# # recursive DataValue
|
2087
|
+
# },
|
2088
|
+
# },
|
2089
|
+
# relationship_value: {
|
2090
|
+
# target_entity_id: "EntityId",
|
2091
|
+
# target_component_name: "Name",
|
2092
|
+
# },
|
2093
|
+
# expression: "Expression",
|
2094
|
+
# },
|
2095
|
+
# },
|
2096
|
+
# ],
|
2097
|
+
# },
|
1839
2098
|
# }
|
1840
2099
|
#
|
1841
2100
|
# @!attribute [rw] component_name
|
@@ -1860,12 +2119,35 @@ module Aws::IoTTwinMaker
|
|
1860
2119
|
# The ID of the workspace whose values the operation returns.
|
1861
2120
|
# @return [String]
|
1862
2121
|
#
|
2122
|
+
# @!attribute [rw] max_results
|
2123
|
+
# The maximum number of results to return at one time. The default is
|
2124
|
+
# 25.
|
2125
|
+
#
|
2126
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
2127
|
+
# @return [Integer]
|
2128
|
+
#
|
2129
|
+
# @!attribute [rw] next_token
|
2130
|
+
# The string that specifies the next page of results.
|
2131
|
+
# @return [String]
|
2132
|
+
#
|
2133
|
+
# @!attribute [rw] property_group_name
|
2134
|
+
# The property group name.
|
2135
|
+
# @return [String]
|
2136
|
+
#
|
2137
|
+
# @!attribute [rw] tabular_conditions
|
2138
|
+
# The tabular conditions.
|
2139
|
+
# @return [Types::TabularConditions]
|
2140
|
+
#
|
1863
2141
|
class GetPropertyValueRequest < Struct.new(
|
1864
2142
|
:component_name,
|
1865
2143
|
:component_type_id,
|
1866
2144
|
:entity_id,
|
1867
2145
|
:selected_properties,
|
1868
|
-
:workspace_id
|
2146
|
+
:workspace_id,
|
2147
|
+
:max_results,
|
2148
|
+
:next_token,
|
2149
|
+
:property_group_name,
|
2150
|
+
:tabular_conditions)
|
1869
2151
|
SENSITIVE = []
|
1870
2152
|
include Aws::Structure
|
1871
2153
|
end
|
@@ -1876,8 +2158,18 @@ module Aws::IoTTwinMaker
|
|
1876
2158
|
# this object.
|
1877
2159
|
# @return [Hash<String,Types::PropertyLatestValue>]
|
1878
2160
|
#
|
2161
|
+
# @!attribute [rw] next_token
|
2162
|
+
# The string that specifies the next page of results.
|
2163
|
+
# @return [String]
|
2164
|
+
#
|
2165
|
+
# @!attribute [rw] tabular_property_values
|
2166
|
+
# A table of property values.
|
2167
|
+
# @return [Array<Array<Hash<String,Types::DataValue>>>]
|
2168
|
+
#
|
1879
2169
|
class GetPropertyValueResponse < Struct.new(
|
1880
|
-
:property_values
|
2170
|
+
:property_values,
|
2171
|
+
:next_token,
|
2172
|
+
:tabular_property_values)
|
1881
2173
|
SENSITIVE = []
|
1882
2174
|
include Aws::Structure
|
1883
2175
|
end
|
@@ -1886,67 +2178,67 @@ module Aws::IoTTwinMaker
|
|
1886
2178
|
# data as a hash:
|
1887
2179
|
#
|
1888
2180
|
# {
|
1889
|
-
# scene_id: "Id", # required
|
1890
2181
|
# workspace_id: "Id", # required
|
2182
|
+
# scene_id: "Id", # required
|
1891
2183
|
# }
|
1892
2184
|
#
|
1893
|
-
# @!attribute [rw] scene_id
|
1894
|
-
# The ID of the scene.
|
1895
|
-
# @return [String]
|
1896
|
-
#
|
1897
2185
|
# @!attribute [rw] workspace_id
|
1898
2186
|
# The ID of the workspace that contains the scene.
|
1899
2187
|
# @return [String]
|
1900
2188
|
#
|
2189
|
+
# @!attribute [rw] scene_id
|
2190
|
+
# The ID of the scene.
|
2191
|
+
# @return [String]
|
2192
|
+
#
|
1901
2193
|
class GetSceneRequest < Struct.new(
|
1902
|
-
:
|
1903
|
-
:
|
2194
|
+
:workspace_id,
|
2195
|
+
:scene_id)
|
1904
2196
|
SENSITIVE = []
|
1905
2197
|
include Aws::Structure
|
1906
2198
|
end
|
1907
2199
|
|
1908
|
-
# @!attribute [rw]
|
1909
|
-
# The
|
2200
|
+
# @!attribute [rw] workspace_id
|
2201
|
+
# The ID of the workspace that contains the scene.
|
1910
2202
|
# @return [String]
|
1911
2203
|
#
|
1912
|
-
# @!attribute [rw]
|
1913
|
-
#
|
1914
|
-
# @return [
|
2204
|
+
# @!attribute [rw] scene_id
|
2205
|
+
# The ID of the scene.
|
2206
|
+
# @return [String]
|
1915
2207
|
#
|
1916
2208
|
# @!attribute [rw] content_location
|
1917
2209
|
# The relative path that specifies the location of the content
|
1918
2210
|
# definition file.
|
1919
2211
|
# @return [String]
|
1920
2212
|
#
|
2213
|
+
# @!attribute [rw] arn
|
2214
|
+
# The ARN of the scene.
|
2215
|
+
# @return [String]
|
2216
|
+
#
|
1921
2217
|
# @!attribute [rw] creation_date_time
|
1922
2218
|
# The date and time when the scene was created.
|
1923
2219
|
# @return [Time]
|
1924
2220
|
#
|
1925
|
-
# @!attribute [rw] description
|
1926
|
-
# The description of the scene.
|
1927
|
-
# @return [String]
|
1928
|
-
#
|
1929
|
-
# @!attribute [rw] scene_id
|
1930
|
-
# The ID of the scene.
|
1931
|
-
# @return [String]
|
1932
|
-
#
|
1933
2221
|
# @!attribute [rw] update_date_time
|
1934
2222
|
# The date and time when the scene was last updated.
|
1935
2223
|
# @return [Time]
|
1936
2224
|
#
|
1937
|
-
# @!attribute [rw]
|
1938
|
-
# The
|
2225
|
+
# @!attribute [rw] description
|
2226
|
+
# The description of the scene.
|
1939
2227
|
# @return [String]
|
1940
2228
|
#
|
2229
|
+
# @!attribute [rw] capabilities
|
2230
|
+
# A list of capabilities that the scene uses to render.
|
2231
|
+
# @return [Array<String>]
|
2232
|
+
#
|
1941
2233
|
class GetSceneResponse < Struct.new(
|
1942
|
-
:
|
1943
|
-
:
|
2234
|
+
:workspace_id,
|
2235
|
+
:scene_id,
|
1944
2236
|
:content_location,
|
2237
|
+
:arn,
|
1945
2238
|
:creation_date_time,
|
1946
|
-
:description,
|
1947
|
-
:scene_id,
|
1948
2239
|
:update_date_time,
|
1949
|
-
:
|
2240
|
+
:description,
|
2241
|
+
:capabilities)
|
1950
2242
|
SENSITIVE = []
|
1951
2243
|
include Aws::Structure
|
1952
2244
|
end
|
@@ -1968,43 +2260,43 @@ module Aws::IoTTwinMaker
|
|
1968
2260
|
include Aws::Structure
|
1969
2261
|
end
|
1970
2262
|
|
2263
|
+
# @!attribute [rw] workspace_id
|
2264
|
+
# The ID of the workspace.
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
1971
2267
|
# @!attribute [rw] arn
|
1972
2268
|
# The ARN of the workspace.
|
1973
2269
|
# @return [String]
|
1974
2270
|
#
|
1975
|
-
# @!attribute [rw] creation_date_time
|
1976
|
-
# The date and time when the workspace was created.
|
1977
|
-
# @return [Time]
|
1978
|
-
#
|
1979
2271
|
# @!attribute [rw] description
|
1980
2272
|
# The description of the workspace.
|
1981
2273
|
# @return [String]
|
1982
2274
|
#
|
1983
|
-
# @!attribute [rw] role
|
1984
|
-
# The ARN of the execution role associated with the workspace.
|
1985
|
-
# @return [String]
|
1986
|
-
#
|
1987
2275
|
# @!attribute [rw] s3_location
|
1988
2276
|
# The ARN of the S3 bucket where resources associated with the
|
1989
2277
|
# workspace are stored.
|
1990
2278
|
# @return [String]
|
1991
2279
|
#
|
2280
|
+
# @!attribute [rw] role
|
2281
|
+
# The ARN of the execution role associated with the workspace.
|
2282
|
+
# @return [String]
|
2283
|
+
#
|
2284
|
+
# @!attribute [rw] creation_date_time
|
2285
|
+
# The date and time when the workspace was created.
|
2286
|
+
# @return [Time]
|
2287
|
+
#
|
1992
2288
|
# @!attribute [rw] update_date_time
|
1993
2289
|
# The date and time when the workspace was last updated.
|
1994
2290
|
# @return [Time]
|
1995
2291
|
#
|
1996
|
-
# @!attribute [rw] workspace_id
|
1997
|
-
# The ID of the workspace.
|
1998
|
-
# @return [String]
|
1999
|
-
#
|
2000
2292
|
class GetWorkspaceResponse < Struct.new(
|
2293
|
+
:workspace_id,
|
2001
2294
|
:arn,
|
2002
|
-
:creation_date_time,
|
2003
2295
|
:description,
|
2004
|
-
:role,
|
2005
2296
|
:s3_location,
|
2006
|
-
:
|
2007
|
-
:
|
2297
|
+
:role,
|
2298
|
+
:creation_date_time,
|
2299
|
+
:update_date_time)
|
2008
2300
|
SENSITIVE = []
|
2009
2301
|
include Aws::Structure
|
2010
2302
|
end
|
@@ -2076,27 +2368,27 @@ module Aws::IoTTwinMaker
|
|
2076
2368
|
# The component type that the component types in the list extend.
|
2077
2369
|
# @return [String]
|
2078
2370
|
#
|
2371
|
+
# @!attribute [rw] namespace
|
2372
|
+
# The namespace to which the component types in the list belong.
|
2373
|
+
# @return [String]
|
2374
|
+
#
|
2079
2375
|
# @!attribute [rw] is_abstract
|
2080
2376
|
# A Boolean value that specifies whether the component types in the
|
2081
2377
|
# list are abstract.
|
2082
2378
|
# @return [Boolean]
|
2083
2379
|
#
|
2084
|
-
# @!attribute [rw] namespace
|
2085
|
-
# The namespace to which the component types in the list belong.
|
2086
|
-
# @return [String]
|
2087
|
-
#
|
2088
2380
|
class ListComponentTypesFilter < Struct.new(
|
2089
2381
|
:extends_from,
|
2090
|
-
:is_abstract,
|
2091
2382
|
:namespace,
|
2383
|
+
:is_abstract,
|
2092
2384
|
:unknown)
|
2093
2385
|
SENSITIVE = []
|
2094
2386
|
include Aws::Structure
|
2095
2387
|
include Aws::Structure::Union
|
2096
2388
|
|
2097
2389
|
class ExtendsFrom < ListComponentTypesFilter; end
|
2098
|
-
class IsAbstract < ListComponentTypesFilter; end
|
2099
2390
|
class Namespace < ListComponentTypesFilter; end
|
2391
|
+
class IsAbstract < ListComponentTypesFilter; end
|
2100
2392
|
class Unknown < ListComponentTypesFilter; end
|
2101
2393
|
end
|
2102
2394
|
|
@@ -2104,65 +2396,68 @@ module Aws::IoTTwinMaker
|
|
2104
2396
|
# data as a hash:
|
2105
2397
|
#
|
2106
2398
|
# {
|
2399
|
+
# workspace_id: "Id", # required
|
2107
2400
|
# filters: [
|
2108
2401
|
# {
|
2109
2402
|
# extends_from: "ComponentTypeId",
|
2110
|
-
# is_abstract: false,
|
2111
2403
|
# namespace: "String",
|
2404
|
+
# is_abstract: false,
|
2112
2405
|
# },
|
2113
2406
|
# ],
|
2114
|
-
# max_results: 1,
|
2115
2407
|
# next_token: "NextToken",
|
2116
|
-
#
|
2408
|
+
# max_results: 1,
|
2117
2409
|
# }
|
2118
2410
|
#
|
2411
|
+
# @!attribute [rw] workspace_id
|
2412
|
+
# The ID of the workspace.
|
2413
|
+
# @return [String]
|
2414
|
+
#
|
2119
2415
|
# @!attribute [rw] filters
|
2120
2416
|
# A list of objects that filter the request.
|
2121
2417
|
# @return [Array<Types::ListComponentTypesFilter>]
|
2122
2418
|
#
|
2123
|
-
# @!attribute [rw] max_results
|
2124
|
-
# The maximum number of results to display.
|
2125
|
-
# @return [Integer]
|
2126
|
-
#
|
2127
2419
|
# @!attribute [rw] next_token
|
2128
2420
|
# The string that specifies the next page of results.
|
2129
2421
|
# @return [String]
|
2130
2422
|
#
|
2131
|
-
# @!attribute [rw]
|
2132
|
-
# The
|
2133
|
-
#
|
2423
|
+
# @!attribute [rw] max_results
|
2424
|
+
# The maximum number of results to return at one time. The default is
|
2425
|
+
# 25.
|
2426
|
+
#
|
2427
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
2428
|
+
# @return [Integer]
|
2134
2429
|
#
|
2135
2430
|
class ListComponentTypesRequest < Struct.new(
|
2431
|
+
:workspace_id,
|
2136
2432
|
:filters,
|
2137
|
-
:max_results,
|
2138
2433
|
:next_token,
|
2139
|
-
:
|
2434
|
+
:max_results)
|
2140
2435
|
SENSITIVE = []
|
2141
2436
|
include Aws::Structure
|
2142
2437
|
end
|
2143
2438
|
|
2439
|
+
# @!attribute [rw] workspace_id
|
2440
|
+
# The ID of the workspace.
|
2441
|
+
# @return [String]
|
2442
|
+
#
|
2144
2443
|
# @!attribute [rw] component_type_summaries
|
2145
2444
|
# A list of objects that contain information about the component
|
2146
2445
|
# types.
|
2147
2446
|
# @return [Array<Types::ComponentTypeSummary>]
|
2148
2447
|
#
|
2149
|
-
# @!attribute [rw] max_results
|
2150
|
-
# Specifies the maximum number of results to display.
|
2151
|
-
# @return [Integer]
|
2152
|
-
#
|
2153
2448
|
# @!attribute [rw] next_token
|
2154
2449
|
# The string that specifies the next page of results.
|
2155
2450
|
# @return [String]
|
2156
2451
|
#
|
2157
|
-
# @!attribute [rw]
|
2158
|
-
#
|
2159
|
-
# @return [
|
2452
|
+
# @!attribute [rw] max_results
|
2453
|
+
# Specifies the maximum number of results to display.
|
2454
|
+
# @return [Integer]
|
2160
2455
|
#
|
2161
2456
|
class ListComponentTypesResponse < Struct.new(
|
2457
|
+
:workspace_id,
|
2162
2458
|
:component_type_summaries,
|
2163
|
-
:max_results,
|
2164
2459
|
:next_token,
|
2165
|
-
:
|
2460
|
+
:max_results)
|
2166
2461
|
SENSITIVE = []
|
2167
2462
|
include Aws::Structure
|
2168
2463
|
end
|
@@ -2171,6 +2466,10 @@ module Aws::IoTTwinMaker
|
|
2171
2466
|
#
|
2172
2467
|
# @note ListEntitiesFilter is a union - when making an API calls you must set exactly one of the members.
|
2173
2468
|
#
|
2469
|
+
# @!attribute [rw] parent_entity_id
|
2470
|
+
# The parent of the entities in the list.
|
2471
|
+
# @return [String]
|
2472
|
+
#
|
2174
2473
|
# @!attribute [rw] component_type_id
|
2175
2474
|
# The ID of the component type in the entities in the list.
|
2176
2475
|
# @return [String]
|
@@ -2180,22 +2479,18 @@ module Aws::IoTTwinMaker
|
|
2180
2479
|
# the primary key of an external storage system.
|
2181
2480
|
# @return [String]
|
2182
2481
|
#
|
2183
|
-
# @!attribute [rw] parent_entity_id
|
2184
|
-
# The parent of the entities in the list.
|
2185
|
-
# @return [String]
|
2186
|
-
#
|
2187
2482
|
class ListEntitiesFilter < Struct.new(
|
2483
|
+
:parent_entity_id,
|
2188
2484
|
:component_type_id,
|
2189
2485
|
:external_id,
|
2190
|
-
:parent_entity_id,
|
2191
2486
|
:unknown)
|
2192
2487
|
SENSITIVE = []
|
2193
2488
|
include Aws::Structure
|
2194
2489
|
include Aws::Structure::Union
|
2195
2490
|
|
2491
|
+
class ParentEntityId < ListEntitiesFilter; end
|
2196
2492
|
class ComponentTypeId < ListEntitiesFilter; end
|
2197
2493
|
class ExternalId < ListEntitiesFilter; end
|
2198
|
-
class ParentEntityId < ListEntitiesFilter; end
|
2199
2494
|
class Unknown < ListEntitiesFilter; end
|
2200
2495
|
end
|
2201
2496
|
|
@@ -2203,18 +2498,22 @@ module Aws::IoTTwinMaker
|
|
2203
2498
|
# data as a hash:
|
2204
2499
|
#
|
2205
2500
|
# {
|
2501
|
+
# workspace_id: "Id", # required
|
2206
2502
|
# filters: [
|
2207
2503
|
# {
|
2504
|
+
# parent_entity_id: "ParentEntityId",
|
2208
2505
|
# component_type_id: "ComponentTypeId",
|
2209
2506
|
# external_id: "String",
|
2210
|
-
# parent_entity_id: "ParentEntityId",
|
2211
2507
|
# },
|
2212
2508
|
# ],
|
2213
2509
|
# max_results: 1,
|
2214
2510
|
# next_token: "NextToken",
|
2215
|
-
# workspace_id: "Id", # required
|
2216
2511
|
# }
|
2217
2512
|
#
|
2513
|
+
# @!attribute [rw] workspace_id
|
2514
|
+
# The ID of the workspace.
|
2515
|
+
# @return [String]
|
2516
|
+
#
|
2218
2517
|
# @!attribute [rw] filters
|
2219
2518
|
# A list of objects that filter the request.
|
2220
2519
|
#
|
@@ -2224,22 +2523,21 @@ module Aws::IoTTwinMaker
|
|
2224
2523
|
# @return [Array<Types::ListEntitiesFilter>]
|
2225
2524
|
#
|
2226
2525
|
# @!attribute [rw] max_results
|
2227
|
-
# The maximum number of results to
|
2526
|
+
# The maximum number of results to return at one time. The default is
|
2527
|
+
# 25.
|
2528
|
+
#
|
2529
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
2228
2530
|
# @return [Integer]
|
2229
2531
|
#
|
2230
2532
|
# @!attribute [rw] next_token
|
2231
2533
|
# The string that specifies the next page of results.
|
2232
2534
|
# @return [String]
|
2233
2535
|
#
|
2234
|
-
# @!attribute [rw] workspace_id
|
2235
|
-
# The ID of the workspace.
|
2236
|
-
# @return [String]
|
2237
|
-
#
|
2238
2536
|
class ListEntitiesRequest < Struct.new(
|
2537
|
+
:workspace_id,
|
2239
2538
|
:filters,
|
2240
2539
|
:max_results,
|
2241
|
-
:next_token
|
2242
|
-
:workspace_id)
|
2540
|
+
:next_token)
|
2243
2541
|
SENSITIVE = []
|
2244
2542
|
include Aws::Structure
|
2245
2543
|
end
|
@@ -2263,11 +2561,15 @@ module Aws::IoTTwinMaker
|
|
2263
2561
|
# data as a hash:
|
2264
2562
|
#
|
2265
2563
|
# {
|
2564
|
+
# workspace_id: "Id", # required
|
2266
2565
|
# max_results: 1,
|
2267
2566
|
# next_token: "NextToken",
|
2268
|
-
# workspace_id: "Id", # required
|
2269
2567
|
# }
|
2270
2568
|
#
|
2569
|
+
# @!attribute [rw] workspace_id
|
2570
|
+
# The ID of the workspace that contains the scenes.
|
2571
|
+
# @return [String]
|
2572
|
+
#
|
2271
2573
|
# @!attribute [rw] max_results
|
2272
2574
|
# Specifies the maximum number of results to display.
|
2273
2575
|
# @return [Integer]
|
@@ -2276,29 +2578,25 @@ module Aws::IoTTwinMaker
|
|
2276
2578
|
# The string that specifies the next page of results.
|
2277
2579
|
# @return [String]
|
2278
2580
|
#
|
2279
|
-
# @!attribute [rw] workspace_id
|
2280
|
-
# The ID of the workspace that contains the scenes.
|
2281
|
-
# @return [String]
|
2282
|
-
#
|
2283
2581
|
class ListScenesRequest < Struct.new(
|
2582
|
+
:workspace_id,
|
2284
2583
|
:max_results,
|
2285
|
-
:next_token
|
2286
|
-
:workspace_id)
|
2584
|
+
:next_token)
|
2287
2585
|
SENSITIVE = []
|
2288
2586
|
include Aws::Structure
|
2289
2587
|
end
|
2290
2588
|
|
2291
|
-
# @!attribute [rw] next_token
|
2292
|
-
# The string that specifies the next page of results.
|
2293
|
-
# @return [String]
|
2294
|
-
#
|
2295
2589
|
# @!attribute [rw] scene_summaries
|
2296
2590
|
# A list of objects that contain information about the scenes.
|
2297
2591
|
# @return [Array<Types::SceneSummary>]
|
2298
2592
|
#
|
2593
|
+
# @!attribute [rw] next_token
|
2594
|
+
# The string that specifies the next page of results.
|
2595
|
+
# @return [String]
|
2596
|
+
#
|
2299
2597
|
class ListScenesResponse < Struct.new(
|
2300
|
-
:
|
2301
|
-
:
|
2598
|
+
:scene_summaries,
|
2599
|
+
:next_token)
|
2302
2600
|
SENSITIVE = []
|
2303
2601
|
include Aws::Structure
|
2304
2602
|
end
|
@@ -2307,42 +2605,45 @@ module Aws::IoTTwinMaker
|
|
2307
2605
|
# data as a hash:
|
2308
2606
|
#
|
2309
2607
|
# {
|
2608
|
+
# resource_arn: "TwinMakerArn", # required
|
2310
2609
|
# max_results: 1,
|
2311
2610
|
# next_token: "NextToken",
|
2312
|
-
# resource_arn: "TwinMakerArn", # required
|
2313
2611
|
# }
|
2314
2612
|
#
|
2613
|
+
# @!attribute [rw] resource_arn
|
2614
|
+
# The ARN of the resource.
|
2615
|
+
# @return [String]
|
2616
|
+
#
|
2315
2617
|
# @!attribute [rw] max_results
|
2316
|
-
# The maximum number of results to
|
2618
|
+
# The maximum number of results to return at one time. The default is
|
2619
|
+
# 25.
|
2620
|
+
#
|
2621
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
2317
2622
|
# @return [Integer]
|
2318
2623
|
#
|
2319
2624
|
# @!attribute [rw] next_token
|
2320
2625
|
# The string that specifies the next page of results.
|
2321
2626
|
# @return [String]
|
2322
2627
|
#
|
2323
|
-
# @!attribute [rw] resource_arn
|
2324
|
-
# The ARN of the resource.
|
2325
|
-
# @return [String]
|
2326
|
-
#
|
2327
2628
|
class ListTagsForResourceRequest < Struct.new(
|
2629
|
+
:resource_arn,
|
2328
2630
|
:max_results,
|
2329
|
-
:next_token
|
2330
|
-
:resource_arn)
|
2631
|
+
:next_token)
|
2331
2632
|
SENSITIVE = []
|
2332
2633
|
include Aws::Structure
|
2333
2634
|
end
|
2334
2635
|
|
2335
|
-
# @!attribute [rw] next_token
|
2336
|
-
# The string that specifies the next page of results.
|
2337
|
-
# @return [String]
|
2338
|
-
#
|
2339
2636
|
# @!attribute [rw] tags
|
2340
2637
|
# Metadata that you can use to manage a resource.
|
2341
2638
|
# @return [Hash<String,String>]
|
2342
2639
|
#
|
2640
|
+
# @!attribute [rw] next_token
|
2641
|
+
# The string that specifies the next page of results.
|
2642
|
+
# @return [String]
|
2643
|
+
#
|
2343
2644
|
class ListTagsForResourceResponse < Struct.new(
|
2344
|
-
:
|
2345
|
-
:
|
2645
|
+
:tags,
|
2646
|
+
:next_token)
|
2346
2647
|
SENSITIVE = []
|
2347
2648
|
include Aws::Structure
|
2348
2649
|
end
|
@@ -2356,7 +2657,10 @@ module Aws::IoTTwinMaker
|
|
2356
2657
|
# }
|
2357
2658
|
#
|
2358
2659
|
# @!attribute [rw] max_results
|
2359
|
-
# The maximum number of results to
|
2660
|
+
# The maximum number of results to return at one time. The default is
|
2661
|
+
# 25.
|
2662
|
+
#
|
2663
|
+
# Valid Range: Minimum value of 1. Maximum value of 250.
|
2360
2664
|
# @return [Integer]
|
2361
2665
|
#
|
2362
2666
|
# @!attribute [rw] next_token
|
@@ -2370,17 +2674,43 @@ module Aws::IoTTwinMaker
|
|
2370
2674
|
include Aws::Structure
|
2371
2675
|
end
|
2372
2676
|
|
2373
|
-
# @!attribute [rw] next_token
|
2374
|
-
# The string that specifies the next page of results.
|
2375
|
-
# @return [String]
|
2376
|
-
#
|
2377
2677
|
# @!attribute [rw] workspace_summaries
|
2378
2678
|
# A list of objects that contain information about the workspaces.
|
2379
2679
|
# @return [Array<Types::WorkspaceSummary>]
|
2380
2680
|
#
|
2681
|
+
# @!attribute [rw] next_token
|
2682
|
+
# The string that specifies the next page of results.
|
2683
|
+
# @return [String]
|
2684
|
+
#
|
2381
2685
|
class ListWorkspacesResponse < Struct.new(
|
2382
|
-
:
|
2383
|
-
:
|
2686
|
+
:workspace_summaries,
|
2687
|
+
:next_token)
|
2688
|
+
SENSITIVE = []
|
2689
|
+
include Aws::Structure
|
2690
|
+
end
|
2691
|
+
|
2692
|
+
# Filter criteria that orders the return output. It can be sorted in
|
2693
|
+
# ascending or descending order.
|
2694
|
+
#
|
2695
|
+
# @note When making an API call, you may pass OrderBy
|
2696
|
+
# data as a hash:
|
2697
|
+
#
|
2698
|
+
# {
|
2699
|
+
# order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
2700
|
+
# property_name: "String", # required
|
2701
|
+
# }
|
2702
|
+
#
|
2703
|
+
# @!attribute [rw] order
|
2704
|
+
# The set order that filters results.
|
2705
|
+
# @return [String]
|
2706
|
+
#
|
2707
|
+
# @!attribute [rw] property_name
|
2708
|
+
# The property name.
|
2709
|
+
# @return [String]
|
2710
|
+
#
|
2711
|
+
class OrderBy < Struct.new(
|
2712
|
+
:order,
|
2713
|
+
:property_name)
|
2384
2714
|
SENSITIVE = []
|
2385
2715
|
include Aws::Structure
|
2386
2716
|
end
|
@@ -2391,21 +2721,58 @@ module Aws::IoTTwinMaker
|
|
2391
2721
|
# data as a hash:
|
2392
2722
|
#
|
2393
2723
|
# {
|
2394
|
-
# parent_entity_id: "ParentEntityId",
|
2395
2724
|
# update_type: "UPDATE", # required, accepts UPDATE, DELETE
|
2725
|
+
# parent_entity_id: "ParentEntityId",
|
2396
2726
|
# }
|
2397
2727
|
#
|
2728
|
+
# @!attribute [rw] update_type
|
2729
|
+
# The type of the update.
|
2730
|
+
# @return [String]
|
2731
|
+
#
|
2398
2732
|
# @!attribute [rw] parent_entity_id
|
2399
2733
|
# The ID of the parent entity.
|
2400
2734
|
# @return [String]
|
2401
2735
|
#
|
2402
|
-
|
2403
|
-
|
2736
|
+
class ParentEntityUpdateRequest < Struct.new(
|
2737
|
+
:update_type,
|
2738
|
+
:parent_entity_id)
|
2739
|
+
SENSITIVE = []
|
2740
|
+
include Aws::Structure
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
# The pricing plan.
|
2744
|
+
#
|
2745
|
+
# @!attribute [rw] billable_entity_count
|
2746
|
+
# The billable entity count.
|
2747
|
+
# @return [Integer]
|
2748
|
+
#
|
2749
|
+
# @!attribute [rw] bundle_information
|
2750
|
+
# The pricing plan's bundle information.
|
2751
|
+
# @return [Types::BundleInformation]
|
2752
|
+
#
|
2753
|
+
# @!attribute [rw] effective_date_time
|
2754
|
+
# The effective date and time of the pricing plan.
|
2755
|
+
# @return [Time]
|
2756
|
+
#
|
2757
|
+
# @!attribute [rw] pricing_mode
|
2758
|
+
# The pricing mode.
|
2404
2759
|
# @return [String]
|
2405
2760
|
#
|
2406
|
-
|
2407
|
-
|
2408
|
-
|
2761
|
+
# @!attribute [rw] update_date_time
|
2762
|
+
# The set date and time for updating a pricing plan.
|
2763
|
+
# @return [Time]
|
2764
|
+
#
|
2765
|
+
# @!attribute [rw] update_reason
|
2766
|
+
# The update reason, for changing a pricing plan.
|
2767
|
+
# @return [String]
|
2768
|
+
#
|
2769
|
+
class PricingPlan < Struct.new(
|
2770
|
+
:billable_entity_count,
|
2771
|
+
:bundle_information,
|
2772
|
+
:effective_date_time,
|
2773
|
+
:pricing_mode,
|
2774
|
+
:update_date_time,
|
2775
|
+
:update_reason)
|
2409
2776
|
SENSITIVE = []
|
2410
2777
|
include Aws::Structure
|
2411
2778
|
end
|
@@ -2416,93 +2783,83 @@ module Aws::IoTTwinMaker
|
|
2416
2783
|
# data as a hash:
|
2417
2784
|
#
|
2418
2785
|
# {
|
2419
|
-
# configuration: {
|
2420
|
-
# "Name" => "Value",
|
2421
|
-
# },
|
2422
2786
|
# data_type: {
|
2787
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
2788
|
+
# nested_type: {
|
2789
|
+
# # recursive DataType
|
2790
|
+
# },
|
2423
2791
|
# allowed_values: [
|
2424
2792
|
# {
|
2425
2793
|
# boolean_value: false,
|
2426
2794
|
# double_value: 1.0,
|
2427
|
-
# expression: "Expression",
|
2428
2795
|
# integer_value: 1,
|
2796
|
+
# long_value: 1,
|
2797
|
+
# string_value: "String",
|
2429
2798
|
# list_value: {
|
2430
2799
|
# # recursive DataValueList
|
2431
2800
|
# },
|
2432
|
-
# long_value: 1,
|
2433
2801
|
# map_value: {
|
2434
2802
|
# "String" => {
|
2435
2803
|
# # recursive DataValue
|
2436
2804
|
# },
|
2437
2805
|
# },
|
2438
2806
|
# relationship_value: {
|
2439
|
-
# target_component_name: "Name",
|
2440
2807
|
# target_entity_id: "EntityId",
|
2808
|
+
# target_component_name: "Name",
|
2441
2809
|
# },
|
2442
|
-
#
|
2810
|
+
# expression: "Expression",
|
2443
2811
|
# },
|
2444
2812
|
# ],
|
2445
|
-
#
|
2446
|
-
# # recursive DataType
|
2447
|
-
# },
|
2813
|
+
# unit_of_measure: "String",
|
2448
2814
|
# relationship: {
|
2449
|
-
# relationship_type: "String",
|
2450
2815
|
# target_component_type_id: "ComponentTypeId",
|
2816
|
+
# relationship_type: "String",
|
2451
2817
|
# },
|
2452
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
2453
|
-
# unit_of_measure: "String",
|
2454
2818
|
# },
|
2819
|
+
# is_required_in_entity: false,
|
2820
|
+
# is_external_id: false,
|
2821
|
+
# is_stored_externally: false,
|
2822
|
+
# is_time_series: false,
|
2455
2823
|
# default_value: {
|
2456
2824
|
# boolean_value: false,
|
2457
2825
|
# double_value: 1.0,
|
2458
|
-
# expression: "Expression",
|
2459
2826
|
# integer_value: 1,
|
2827
|
+
# long_value: 1,
|
2828
|
+
# string_value: "String",
|
2460
2829
|
# list_value: [
|
2461
2830
|
# {
|
2462
2831
|
# # recursive DataValue
|
2463
2832
|
# },
|
2464
2833
|
# ],
|
2465
|
-
# long_value: 1,
|
2466
2834
|
# map_value: {
|
2467
2835
|
# "String" => {
|
2468
2836
|
# # recursive DataValue
|
2469
2837
|
# },
|
2470
2838
|
# },
|
2471
2839
|
# relationship_value: {
|
2472
|
-
# target_component_name: "Name",
|
2473
2840
|
# target_entity_id: "EntityId",
|
2841
|
+
# target_component_name: "Name",
|
2474
2842
|
# },
|
2475
|
-
#
|
2843
|
+
# expression: "Expression",
|
2844
|
+
# },
|
2845
|
+
# configuration: {
|
2846
|
+
# "Name" => "Value",
|
2476
2847
|
# },
|
2477
|
-
# is_external_id: false,
|
2478
|
-
# is_required_in_entity: false,
|
2479
|
-
# is_stored_externally: false,
|
2480
|
-
# is_time_series: false,
|
2481
2848
|
# }
|
2482
2849
|
#
|
2483
|
-
# @!attribute [rw] configuration
|
2484
|
-
# A mapping that specifies configuration information about the
|
2485
|
-
# property. Use this field to specify information that you read from
|
2486
|
-
# and write to an external source.
|
2487
|
-
# @return [Hash<String,String>]
|
2488
|
-
#
|
2489
2850
|
# @!attribute [rw] data_type
|
2490
2851
|
# An object that contains information about the data type.
|
2491
2852
|
# @return [Types::DataType]
|
2492
2853
|
#
|
2493
|
-
# @!attribute [rw]
|
2494
|
-
#
|
2495
|
-
# @return [
|
2854
|
+
# @!attribute [rw] is_required_in_entity
|
2855
|
+
# A Boolean value that specifies whether the property is required.
|
2856
|
+
# @return [Boolean]
|
2496
2857
|
#
|
2497
2858
|
# @!attribute [rw] is_external_id
|
2498
2859
|
# A Boolean value that specifies whether the property ID comes from an
|
2499
2860
|
# external data store.
|
2500
2861
|
# @return [Boolean]
|
2501
2862
|
#
|
2502
|
-
# @!attribute [rw] is_required_in_entity
|
2503
|
-
# A Boolean value that specifies whether the property is required.
|
2504
|
-
# @return [Boolean]
|
2505
|
-
#
|
2506
2863
|
# @!attribute [rw] is_stored_externally
|
2507
2864
|
# A Boolean value that specifies whether the property is stored
|
2508
2865
|
# externally.
|
@@ -2513,14 +2870,24 @@ module Aws::IoTTwinMaker
|
|
2513
2870
|
# series data.
|
2514
2871
|
# @return [Boolean]
|
2515
2872
|
#
|
2873
|
+
# @!attribute [rw] default_value
|
2874
|
+
# An object that contains the default value.
|
2875
|
+
# @return [Types::DataValue]
|
2876
|
+
#
|
2877
|
+
# @!attribute [rw] configuration
|
2878
|
+
# A mapping that specifies configuration information about the
|
2879
|
+
# property. Use this field to specify information that you read from
|
2880
|
+
# and write to an external source.
|
2881
|
+
# @return [Hash<String,String>]
|
2882
|
+
#
|
2516
2883
|
class PropertyDefinitionRequest < Struct.new(
|
2517
|
-
:configuration,
|
2518
2884
|
:data_type,
|
2519
|
-
:default_value,
|
2520
|
-
:is_external_id,
|
2521
2885
|
:is_required_in_entity,
|
2886
|
+
:is_external_id,
|
2522
2887
|
:is_stored_externally,
|
2523
|
-
:is_time_series
|
2888
|
+
:is_time_series,
|
2889
|
+
:default_value,
|
2890
|
+
:configuration)
|
2524
2891
|
SENSITIVE = []
|
2525
2892
|
include Aws::Structure
|
2526
2893
|
end
|
@@ -2528,27 +2895,28 @@ module Aws::IoTTwinMaker
|
|
2528
2895
|
# An object that contains response data from a property definition
|
2529
2896
|
# request.
|
2530
2897
|
#
|
2531
|
-
# @!attribute [rw] configuration
|
2532
|
-
# A mapping that specifies configuration information about the
|
2533
|
-
# property.
|
2534
|
-
# @return [Hash<String,String>]
|
2535
|
-
#
|
2536
2898
|
# @!attribute [rw] data_type
|
2537
2899
|
# An object that contains information about the data type.
|
2538
2900
|
# @return [Types::DataType]
|
2539
2901
|
#
|
2540
|
-
# @!attribute [rw]
|
2541
|
-
#
|
2542
|
-
#
|
2902
|
+
# @!attribute [rw] is_time_series
|
2903
|
+
# A Boolean value that specifies whether the property consists of time
|
2904
|
+
# series data.
|
2905
|
+
# @return [Boolean]
|
2906
|
+
#
|
2907
|
+
# @!attribute [rw] is_required_in_entity
|
2908
|
+
# A Boolean value that specifies whether the property is required in
|
2909
|
+
# an entity.
|
2910
|
+
# @return [Boolean]
|
2543
2911
|
#
|
2544
2912
|
# @!attribute [rw] is_external_id
|
2545
2913
|
# A Boolean value that specifies whether the property ID comes from an
|
2546
2914
|
# external data store.
|
2547
2915
|
# @return [Boolean]
|
2548
2916
|
#
|
2549
|
-
# @!attribute [rw]
|
2550
|
-
# A Boolean value that specifies whether the property
|
2551
|
-
#
|
2917
|
+
# @!attribute [rw] is_stored_externally
|
2918
|
+
# A Boolean value that specifies whether the property is stored
|
2919
|
+
# externally.
|
2552
2920
|
# @return [Boolean]
|
2553
2921
|
#
|
2554
2922
|
# @!attribute [rw] is_imported
|
@@ -2556,37 +2924,36 @@ module Aws::IoTTwinMaker
|
|
2556
2924
|
# imported from an external data store.
|
2557
2925
|
# @return [Boolean]
|
2558
2926
|
#
|
2927
|
+
# @!attribute [rw] is_final
|
2928
|
+
# A Boolean value that specifies whether the property definition can
|
2929
|
+
# be updated.
|
2930
|
+
# @return [Boolean]
|
2931
|
+
#
|
2559
2932
|
# @!attribute [rw] is_inherited
|
2560
2933
|
# A Boolean value that specifies whether the property definition is
|
2561
2934
|
# inherited from a parent entity.
|
2562
2935
|
# @return [Boolean]
|
2563
2936
|
#
|
2564
|
-
# @!attribute [rw]
|
2565
|
-
#
|
2566
|
-
#
|
2567
|
-
# @return [Boolean]
|
2568
|
-
#
|
2569
|
-
# @!attribute [rw] is_stored_externally
|
2570
|
-
# A Boolean value that specifies whether the property is stored
|
2571
|
-
# externally.
|
2572
|
-
# @return [Boolean]
|
2937
|
+
# @!attribute [rw] default_value
|
2938
|
+
# An object that contains the default value.
|
2939
|
+
# @return [Types::DataValue]
|
2573
2940
|
#
|
2574
|
-
# @!attribute [rw]
|
2575
|
-
# A
|
2576
|
-
#
|
2577
|
-
# @return [
|
2941
|
+
# @!attribute [rw] configuration
|
2942
|
+
# A mapping that specifies configuration information about the
|
2943
|
+
# property.
|
2944
|
+
# @return [Hash<String,String>]
|
2578
2945
|
#
|
2579
2946
|
class PropertyDefinitionResponse < Struct.new(
|
2580
|
-
:configuration,
|
2581
2947
|
:data_type,
|
2582
|
-
:
|
2948
|
+
:is_time_series,
|
2949
|
+
:is_required_in_entity,
|
2583
2950
|
:is_external_id,
|
2584
|
-
:
|
2951
|
+
:is_stored_externally,
|
2585
2952
|
:is_imported,
|
2953
|
+
:is_final,
|
2586
2954
|
:is_inherited,
|
2587
|
-
:
|
2588
|
-
:
|
2589
|
-
:is_time_series)
|
2955
|
+
:default_value,
|
2956
|
+
:configuration)
|
2590
2957
|
SENSITIVE = []
|
2591
2958
|
include Aws::Structure
|
2592
2959
|
end
|
@@ -2597,52 +2964,98 @@ module Aws::IoTTwinMaker
|
|
2597
2964
|
# data as a hash:
|
2598
2965
|
#
|
2599
2966
|
# {
|
2600
|
-
# operator: "String",
|
2601
2967
|
# property_name: "String",
|
2968
|
+
# operator: "String",
|
2602
2969
|
# value: {
|
2603
2970
|
# boolean_value: false,
|
2604
2971
|
# double_value: 1.0,
|
2605
|
-
# expression: "Expression",
|
2606
2972
|
# integer_value: 1,
|
2973
|
+
# long_value: 1,
|
2974
|
+
# string_value: "String",
|
2607
2975
|
# list_value: [
|
2608
2976
|
# {
|
2609
2977
|
# # recursive DataValue
|
2610
2978
|
# },
|
2611
2979
|
# ],
|
2612
|
-
# long_value: 1,
|
2613
2980
|
# map_value: {
|
2614
2981
|
# "String" => {
|
2615
2982
|
# # recursive DataValue
|
2616
2983
|
# },
|
2617
2984
|
# },
|
2618
2985
|
# relationship_value: {
|
2619
|
-
# target_component_name: "Name",
|
2620
2986
|
# target_entity_id: "EntityId",
|
2987
|
+
# target_component_name: "Name",
|
2621
2988
|
# },
|
2622
|
-
#
|
2989
|
+
# expression: "Expression",
|
2623
2990
|
# },
|
2624
2991
|
# }
|
2625
2992
|
#
|
2626
|
-
# @!attribute [rw] operator
|
2627
|
-
# The operator associated with this property filter.
|
2628
|
-
# @return [String]
|
2629
|
-
#
|
2630
2993
|
# @!attribute [rw] property_name
|
2631
2994
|
# The property name associated with this property filter.
|
2632
2995
|
# @return [String]
|
2633
2996
|
#
|
2997
|
+
# @!attribute [rw] operator
|
2998
|
+
# The operator associated with this property filter.
|
2999
|
+
# @return [String]
|
3000
|
+
#
|
2634
3001
|
# @!attribute [rw] value
|
2635
3002
|
# The value associated with this property filter.
|
2636
3003
|
# @return [Types::DataValue]
|
2637
3004
|
#
|
2638
3005
|
class PropertyFilter < Struct.new(
|
2639
|
-
:operator,
|
2640
3006
|
:property_name,
|
3007
|
+
:operator,
|
2641
3008
|
:value)
|
2642
3009
|
SENSITIVE = []
|
2643
3010
|
include Aws::Structure
|
2644
3011
|
end
|
2645
3012
|
|
3013
|
+
# @note When making an API call, you may pass PropertyGroupRequest
|
3014
|
+
# data as a hash:
|
3015
|
+
#
|
3016
|
+
# {
|
3017
|
+
# group_type: "TABULAR", # accepts TABULAR
|
3018
|
+
# property_names: ["Name"],
|
3019
|
+
# }
|
3020
|
+
#
|
3021
|
+
# @!attribute [rw] group_type
|
3022
|
+
# The group type.
|
3023
|
+
# @return [String]
|
3024
|
+
#
|
3025
|
+
# @!attribute [rw] property_names
|
3026
|
+
# The names of properties.
|
3027
|
+
# @return [Array<String>]
|
3028
|
+
#
|
3029
|
+
class PropertyGroupRequest < Struct.new(
|
3030
|
+
:group_type,
|
3031
|
+
:property_names)
|
3032
|
+
SENSITIVE = []
|
3033
|
+
include Aws::Structure
|
3034
|
+
end
|
3035
|
+
|
3036
|
+
# The property group response
|
3037
|
+
#
|
3038
|
+
# @!attribute [rw] group_type
|
3039
|
+
# The group types.
|
3040
|
+
# @return [String]
|
3041
|
+
#
|
3042
|
+
# @!attribute [rw] property_names
|
3043
|
+
# The names of properties.
|
3044
|
+
# @return [Array<String>]
|
3045
|
+
#
|
3046
|
+
# @!attribute [rw] is_inherited
|
3047
|
+
# A Boolean value that specifies whether the property group is
|
3048
|
+
# inherited from a parent entity
|
3049
|
+
# @return [Boolean]
|
3050
|
+
#
|
3051
|
+
class PropertyGroupResponse < Struct.new(
|
3052
|
+
:group_type,
|
3053
|
+
:property_names,
|
3054
|
+
:is_inherited)
|
3055
|
+
SENSITIVE = []
|
3056
|
+
include Aws::Structure
|
3057
|
+
end
|
3058
|
+
|
2646
3059
|
# The latest value of the property.
|
2647
3060
|
#
|
2648
3061
|
# @!attribute [rw] property_reference
|
@@ -2667,110 +3080,110 @@ module Aws::IoTTwinMaker
|
|
2667
3080
|
#
|
2668
3081
|
# {
|
2669
3082
|
# definition: {
|
2670
|
-
# configuration: {
|
2671
|
-
# "Name" => "Value",
|
2672
|
-
# },
|
2673
3083
|
# data_type: {
|
3084
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
3085
|
+
# nested_type: {
|
3086
|
+
# # recursive DataType
|
3087
|
+
# },
|
2674
3088
|
# allowed_values: [
|
2675
3089
|
# {
|
2676
3090
|
# boolean_value: false,
|
2677
3091
|
# double_value: 1.0,
|
2678
|
-
# expression: "Expression",
|
2679
3092
|
# integer_value: 1,
|
3093
|
+
# long_value: 1,
|
3094
|
+
# string_value: "String",
|
2680
3095
|
# list_value: {
|
2681
3096
|
# # recursive DataValueList
|
2682
3097
|
# },
|
2683
|
-
# long_value: 1,
|
2684
3098
|
# map_value: {
|
2685
3099
|
# "String" => {
|
2686
3100
|
# # recursive DataValue
|
2687
3101
|
# },
|
2688
3102
|
# },
|
2689
3103
|
# relationship_value: {
|
2690
|
-
# target_component_name: "Name",
|
2691
3104
|
# target_entity_id: "EntityId",
|
3105
|
+
# target_component_name: "Name",
|
2692
3106
|
# },
|
2693
|
-
#
|
3107
|
+
# expression: "Expression",
|
2694
3108
|
# },
|
2695
3109
|
# ],
|
2696
|
-
#
|
2697
|
-
# # recursive DataType
|
2698
|
-
# },
|
3110
|
+
# unit_of_measure: "String",
|
2699
3111
|
# relationship: {
|
2700
|
-
# relationship_type: "String",
|
2701
3112
|
# target_component_type_id: "ComponentTypeId",
|
3113
|
+
# relationship_type: "String",
|
2702
3114
|
# },
|
2703
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
2704
|
-
# unit_of_measure: "String",
|
2705
3115
|
# },
|
3116
|
+
# is_required_in_entity: false,
|
3117
|
+
# is_external_id: false,
|
3118
|
+
# is_stored_externally: false,
|
3119
|
+
# is_time_series: false,
|
2706
3120
|
# default_value: {
|
2707
3121
|
# boolean_value: false,
|
2708
3122
|
# double_value: 1.0,
|
2709
|
-
# expression: "Expression",
|
2710
3123
|
# integer_value: 1,
|
3124
|
+
# long_value: 1,
|
3125
|
+
# string_value: "String",
|
2711
3126
|
# list_value: [
|
2712
3127
|
# {
|
2713
3128
|
# # recursive DataValue
|
2714
3129
|
# },
|
2715
3130
|
# ],
|
2716
|
-
# long_value: 1,
|
2717
3131
|
# map_value: {
|
2718
3132
|
# "String" => {
|
2719
3133
|
# # recursive DataValue
|
2720
3134
|
# },
|
2721
3135
|
# },
|
2722
3136
|
# relationship_value: {
|
2723
|
-
# target_component_name: "Name",
|
2724
3137
|
# target_entity_id: "EntityId",
|
3138
|
+
# target_component_name: "Name",
|
2725
3139
|
# },
|
2726
|
-
#
|
3140
|
+
# expression: "Expression",
|
3141
|
+
# },
|
3142
|
+
# configuration: {
|
3143
|
+
# "Name" => "Value",
|
2727
3144
|
# },
|
2728
|
-
# is_external_id: false,
|
2729
|
-
# is_required_in_entity: false,
|
2730
|
-
# is_stored_externally: false,
|
2731
|
-
# is_time_series: false,
|
2732
3145
|
# },
|
2733
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
2734
3146
|
# value: {
|
2735
3147
|
# boolean_value: false,
|
2736
3148
|
# double_value: 1.0,
|
2737
|
-
# expression: "Expression",
|
2738
3149
|
# integer_value: 1,
|
3150
|
+
# long_value: 1,
|
3151
|
+
# string_value: "String",
|
2739
3152
|
# list_value: [
|
2740
3153
|
# {
|
2741
3154
|
# # recursive DataValue
|
2742
3155
|
# },
|
2743
3156
|
# ],
|
2744
|
-
# long_value: 1,
|
2745
3157
|
# map_value: {
|
2746
3158
|
# "String" => {
|
2747
3159
|
# # recursive DataValue
|
2748
3160
|
# },
|
2749
3161
|
# },
|
2750
3162
|
# relationship_value: {
|
2751
|
-
# target_component_name: "Name",
|
2752
3163
|
# target_entity_id: "EntityId",
|
3164
|
+
# target_component_name: "Name",
|
2753
3165
|
# },
|
2754
|
-
#
|
3166
|
+
# expression: "Expression",
|
2755
3167
|
# },
|
3168
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
2756
3169
|
# }
|
2757
3170
|
#
|
2758
3171
|
# @!attribute [rw] definition
|
2759
3172
|
# An object that specifies information about a property.
|
2760
3173
|
# @return [Types::PropertyDefinitionRequest]
|
2761
3174
|
#
|
2762
|
-
# @!attribute [rw] update_type
|
2763
|
-
# The update type of the update property request.
|
2764
|
-
# @return [String]
|
2765
|
-
#
|
2766
3175
|
# @!attribute [rw] value
|
2767
3176
|
# The value of the property.
|
2768
3177
|
# @return [Types::DataValue]
|
2769
3178
|
#
|
3179
|
+
# @!attribute [rw] update_type
|
3180
|
+
# The update type of the update property request.
|
3181
|
+
# @return [String]
|
3182
|
+
#
|
2770
3183
|
class PropertyRequest < Struct.new(
|
2771
3184
|
:definition,
|
2772
|
-
:
|
2773
|
-
:
|
3185
|
+
:value,
|
3186
|
+
:update_type)
|
2774
3187
|
SENSITIVE = []
|
2775
3188
|
include Aws::Structure
|
2776
3189
|
end
|
@@ -2799,32 +3212,40 @@ module Aws::IoTTwinMaker
|
|
2799
3212
|
# data as a hash:
|
2800
3213
|
#
|
2801
3214
|
# {
|
2802
|
-
# time: "Time",
|
2803
3215
|
# timestamp: Time.now,
|
2804
3216
|
# value: { # required
|
2805
3217
|
# boolean_value: false,
|
2806
3218
|
# double_value: 1.0,
|
2807
|
-
# expression: "Expression",
|
2808
3219
|
# integer_value: 1,
|
3220
|
+
# long_value: 1,
|
3221
|
+
# string_value: "String",
|
2809
3222
|
# list_value: [
|
2810
3223
|
# {
|
2811
3224
|
# # recursive DataValue
|
2812
3225
|
# },
|
2813
3226
|
# ],
|
2814
|
-
# long_value: 1,
|
2815
3227
|
# map_value: {
|
2816
3228
|
# "String" => {
|
2817
3229
|
# # recursive DataValue
|
2818
3230
|
# },
|
2819
3231
|
# },
|
2820
3232
|
# relationship_value: {
|
2821
|
-
# target_component_name: "Name",
|
2822
3233
|
# target_entity_id: "EntityId",
|
3234
|
+
# target_component_name: "Name",
|
2823
3235
|
# },
|
2824
|
-
#
|
3236
|
+
# expression: "Expression",
|
2825
3237
|
# },
|
3238
|
+
# time: "Time",
|
2826
3239
|
# }
|
2827
3240
|
#
|
3241
|
+
# @!attribute [rw] timestamp
|
3242
|
+
# The timestamp of a value for a time series property.
|
3243
|
+
# @return [Time]
|
3244
|
+
#
|
3245
|
+
# @!attribute [rw] value
|
3246
|
+
# An object that specifies a value for a time series property.
|
3247
|
+
# @return [Types::DataValue]
|
3248
|
+
#
|
2828
3249
|
# @!attribute [rw] time
|
2829
3250
|
# ISO8601 DateTime of a value for a time series property.
|
2830
3251
|
#
|
@@ -2854,18 +3275,10 @@ module Aws::IoTTwinMaker
|
|
2854
3275
|
# *Required sub-fields*\: YYYY-MM-DDThh:mm:ss and \[Z/±HH:mm\]
|
2855
3276
|
# @return [String]
|
2856
3277
|
#
|
2857
|
-
# @!attribute [rw] timestamp
|
2858
|
-
# The timestamp of a value for a time series property.
|
2859
|
-
# @return [Time]
|
2860
|
-
#
|
2861
|
-
# @!attribute [rw] value
|
2862
|
-
# An object that specifies a value for a time series property.
|
2863
|
-
# @return [Types::DataValue]
|
2864
|
-
#
|
2865
3278
|
class PropertyValue < Struct.new(
|
2866
|
-
:time,
|
2867
3279
|
:timestamp,
|
2868
|
-
:value
|
3280
|
+
:value,
|
3281
|
+
:time)
|
2869
3282
|
SENSITIVE = []
|
2870
3283
|
include Aws::Structure
|
2871
3284
|
end
|
@@ -2884,38 +3297,38 @@ module Aws::IoTTwinMaker
|
|
2884
3297
|
# {
|
2885
3298
|
# entity_property_reference: { # required
|
2886
3299
|
# component_name: "Name",
|
2887
|
-
# entity_id: "EntityId",
|
2888
3300
|
# external_id_property: {
|
2889
3301
|
# "String" => "String",
|
2890
3302
|
# },
|
3303
|
+
# entity_id: "EntityId",
|
2891
3304
|
# property_name: "Name", # required
|
2892
3305
|
# },
|
2893
3306
|
# property_values: [
|
2894
3307
|
# {
|
2895
|
-
# time: "Time",
|
2896
3308
|
# timestamp: Time.now,
|
2897
3309
|
# value: { # required
|
2898
3310
|
# boolean_value: false,
|
2899
3311
|
# double_value: 1.0,
|
2900
|
-
# expression: "Expression",
|
2901
3312
|
# integer_value: 1,
|
3313
|
+
# long_value: 1,
|
3314
|
+
# string_value: "String",
|
2902
3315
|
# list_value: [
|
2903
3316
|
# {
|
2904
3317
|
# # recursive DataValue
|
2905
3318
|
# },
|
2906
3319
|
# ],
|
2907
|
-
# long_value: 1,
|
2908
3320
|
# map_value: {
|
2909
3321
|
# "String" => {
|
2910
3322
|
# # recursive DataValue
|
2911
3323
|
# },
|
2912
3324
|
# },
|
2913
3325
|
# relationship_value: {
|
2914
|
-
# target_component_name: "Name",
|
2915
3326
|
# target_entity_id: "EntityId",
|
3327
|
+
# target_component_name: "Name",
|
2916
3328
|
# },
|
2917
|
-
#
|
3329
|
+
# expression: "Expression",
|
2918
3330
|
# },
|
3331
|
+
# time: "Time",
|
2919
3332
|
# },
|
2920
3333
|
# ],
|
2921
3334
|
# }
|
@@ -2954,28 +3367,39 @@ module Aws::IoTTwinMaker
|
|
2954
3367
|
include Aws::Structure
|
2955
3368
|
end
|
2956
3369
|
|
3370
|
+
# The query timeout exception.
|
3371
|
+
#
|
3372
|
+
# @!attribute [rw] message
|
3373
|
+
# @return [String]
|
3374
|
+
#
|
3375
|
+
class QueryTimeoutException < Struct.new(
|
3376
|
+
:message)
|
3377
|
+
SENSITIVE = []
|
3378
|
+
include Aws::Structure
|
3379
|
+
end
|
3380
|
+
|
2957
3381
|
# An object that specifies a relationship with another component type.
|
2958
3382
|
#
|
2959
3383
|
# @note When making an API call, you may pass Relationship
|
2960
3384
|
# data as a hash:
|
2961
3385
|
#
|
2962
3386
|
# {
|
2963
|
-
# relationship_type: "String",
|
2964
3387
|
# target_component_type_id: "ComponentTypeId",
|
3388
|
+
# relationship_type: "String",
|
2965
3389
|
# }
|
2966
3390
|
#
|
2967
|
-
# @!attribute [rw] relationship_type
|
2968
|
-
# The type of the relationship.
|
2969
|
-
# @return [String]
|
2970
|
-
#
|
2971
3391
|
# @!attribute [rw] target_component_type_id
|
2972
3392
|
# The ID of the target component type associated with this
|
2973
3393
|
# relationship.
|
2974
3394
|
# @return [String]
|
2975
3395
|
#
|
3396
|
+
# @!attribute [rw] relationship_type
|
3397
|
+
# The type of the relationship.
|
3398
|
+
# @return [String]
|
3399
|
+
#
|
2976
3400
|
class Relationship < Struct.new(
|
2977
|
-
:
|
2978
|
-
:
|
3401
|
+
:target_component_type_id,
|
3402
|
+
:relationship_type)
|
2979
3403
|
SENSITIVE = []
|
2980
3404
|
include Aws::Structure
|
2981
3405
|
end
|
@@ -2986,22 +3410,22 @@ module Aws::IoTTwinMaker
|
|
2986
3410
|
# data as a hash:
|
2987
3411
|
#
|
2988
3412
|
# {
|
2989
|
-
# target_component_name: "Name",
|
2990
3413
|
# target_entity_id: "EntityId",
|
3414
|
+
# target_component_name: "Name",
|
2991
3415
|
# }
|
2992
3416
|
#
|
3417
|
+
# @!attribute [rw] target_entity_id
|
3418
|
+
# The ID of the target entity associated with this relationship value.
|
3419
|
+
# @return [String]
|
3420
|
+
#
|
2993
3421
|
# @!attribute [rw] target_component_name
|
2994
3422
|
# The name of the target component associated with the relationship
|
2995
3423
|
# value.
|
2996
3424
|
# @return [String]
|
2997
3425
|
#
|
2998
|
-
# @!attribute [rw] target_entity_id
|
2999
|
-
# The ID of the target entity associated with this relationship value.
|
3000
|
-
# @return [String]
|
3001
|
-
#
|
3002
3426
|
class RelationshipValue < Struct.new(
|
3003
|
-
:
|
3004
|
-
:
|
3427
|
+
:target_entity_id,
|
3428
|
+
:target_component_name)
|
3005
3429
|
SENSITIVE = []
|
3006
3430
|
include Aws::Structure
|
3007
3431
|
end
|
@@ -3017,10 +3441,22 @@ module Aws::IoTTwinMaker
|
|
3017
3441
|
include Aws::Structure
|
3018
3442
|
end
|
3019
3443
|
|
3444
|
+
# Represents a single row in the query results.
|
3445
|
+
#
|
3446
|
+
# @!attribute [rw] row_data
|
3447
|
+
# The data in a row of query results.
|
3448
|
+
# @return [Array<Hash,Array,String,Numeric,Boolean>]
|
3449
|
+
#
|
3450
|
+
class Row < Struct.new(
|
3451
|
+
:row_data)
|
3452
|
+
SENSITIVE = []
|
3453
|
+
include Aws::Structure
|
3454
|
+
end
|
3455
|
+
|
3020
3456
|
# An object that contains information about a scene.
|
3021
3457
|
#
|
3022
|
-
# @!attribute [rw]
|
3023
|
-
# The
|
3458
|
+
# @!attribute [rw] scene_id
|
3459
|
+
# The ID of the scene.
|
3024
3460
|
# @return [String]
|
3025
3461
|
#
|
3026
3462
|
# @!attribute [rw] content_location
|
@@ -3028,29 +3464,29 @@ module Aws::IoTTwinMaker
|
|
3028
3464
|
# definition file.
|
3029
3465
|
# @return [String]
|
3030
3466
|
#
|
3467
|
+
# @!attribute [rw] arn
|
3468
|
+
# The ARN of the scene.
|
3469
|
+
# @return [String]
|
3470
|
+
#
|
3031
3471
|
# @!attribute [rw] creation_date_time
|
3032
3472
|
# The date and time when the scene was created.
|
3033
3473
|
# @return [Time]
|
3034
3474
|
#
|
3035
|
-
# @!attribute [rw] description
|
3036
|
-
# The scene description.
|
3037
|
-
# @return [String]
|
3038
|
-
#
|
3039
|
-
# @!attribute [rw] scene_id
|
3040
|
-
# The ID of the scene.
|
3041
|
-
# @return [String]
|
3042
|
-
#
|
3043
3475
|
# @!attribute [rw] update_date_time
|
3044
3476
|
# The date and time when the scene was last updated.
|
3045
3477
|
# @return [Time]
|
3046
3478
|
#
|
3479
|
+
# @!attribute [rw] description
|
3480
|
+
# The scene description.
|
3481
|
+
# @return [String]
|
3482
|
+
#
|
3047
3483
|
class SceneSummary < Struct.new(
|
3048
|
-
:
|
3484
|
+
:scene_id,
|
3049
3485
|
:content_location,
|
3486
|
+
:arn,
|
3050
3487
|
:creation_date_time,
|
3051
|
-
:
|
3052
|
-
:
|
3053
|
-
:update_date_time)
|
3488
|
+
:update_date_time,
|
3489
|
+
:description)
|
3054
3490
|
SENSITIVE = []
|
3055
3491
|
include Aws::Structure
|
3056
3492
|
end
|
@@ -3069,18 +3505,79 @@ module Aws::IoTTwinMaker
|
|
3069
3505
|
# An object that represents the status of an entity, component,
|
3070
3506
|
# component type, or workspace.
|
3071
3507
|
#
|
3072
|
-
# @!attribute [rw] error
|
3073
|
-
# The error message.
|
3074
|
-
# @return [Types::ErrorDetails]
|
3075
|
-
#
|
3076
3508
|
# @!attribute [rw] state
|
3077
3509
|
# The current state of the entity, component, component type, or
|
3078
3510
|
# workspace.
|
3079
3511
|
# @return [String]
|
3080
3512
|
#
|
3513
|
+
# @!attribute [rw] error
|
3514
|
+
# The error message.
|
3515
|
+
# @return [Types::ErrorDetails]
|
3516
|
+
#
|
3081
3517
|
class Status < Struct.new(
|
3082
|
-
:
|
3083
|
-
:
|
3518
|
+
:state,
|
3519
|
+
:error)
|
3520
|
+
SENSITIVE = []
|
3521
|
+
include Aws::Structure
|
3522
|
+
end
|
3523
|
+
|
3524
|
+
# The tabular conditions.
|
3525
|
+
#
|
3526
|
+
# @note When making an API call, you may pass TabularConditions
|
3527
|
+
# data as a hash:
|
3528
|
+
#
|
3529
|
+
# {
|
3530
|
+
# order_by: [
|
3531
|
+
# {
|
3532
|
+
# order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3533
|
+
# property_name: "String", # required
|
3534
|
+
# },
|
3535
|
+
# ],
|
3536
|
+
# property_filters: [
|
3537
|
+
# {
|
3538
|
+
# property_name: "String",
|
3539
|
+
# operator: "String",
|
3540
|
+
# value: {
|
3541
|
+
# boolean_value: false,
|
3542
|
+
# double_value: 1.0,
|
3543
|
+
# integer_value: 1,
|
3544
|
+
# long_value: 1,
|
3545
|
+
# string_value: "String",
|
3546
|
+
# list_value: [
|
3547
|
+
# {
|
3548
|
+
# # recursive DataValue
|
3549
|
+
# },
|
3550
|
+
# ],
|
3551
|
+
# map_value: {
|
3552
|
+
# "String" => {
|
3553
|
+
# # recursive DataValue
|
3554
|
+
# },
|
3555
|
+
# },
|
3556
|
+
# relationship_value: {
|
3557
|
+
# target_entity_id: "EntityId",
|
3558
|
+
# target_component_name: "Name",
|
3559
|
+
# },
|
3560
|
+
# expression: "Expression",
|
3561
|
+
# },
|
3562
|
+
# },
|
3563
|
+
# ],
|
3564
|
+
# }
|
3565
|
+
#
|
3566
|
+
# @!attribute [rw] order_by
|
3567
|
+
# Filter criteria that orders the output. It can be sorted in
|
3568
|
+
# ascending or descending order.
|
3569
|
+
# @return [Array<Types::OrderBy>]
|
3570
|
+
#
|
3571
|
+
# @!attribute [rw] property_filters
|
3572
|
+
# You can filter the request using various logical operators and a
|
3573
|
+
# key-value format. For example:
|
3574
|
+
#
|
3575
|
+
# `\{"key": "serverType", "value": "webServer"\}`
|
3576
|
+
# @return [Array<Types::PropertyFilter>]
|
3577
|
+
#
|
3578
|
+
class TabularConditions < Struct.new(
|
3579
|
+
:order_by,
|
3580
|
+
:property_filters)
|
3084
3581
|
SENSITIVE = []
|
3085
3582
|
include Aws::Structure
|
3086
3583
|
end
|
@@ -3165,91 +3662,106 @@ module Aws::IoTTwinMaker
|
|
3165
3662
|
# data as a hash:
|
3166
3663
|
#
|
3167
3664
|
# {
|
3665
|
+
# workspace_id: "Id", # required
|
3666
|
+
# is_singleton: false,
|
3168
3667
|
# component_type_id: "ComponentTypeId", # required
|
3169
3668
|
# description: "Description",
|
3170
|
-
# extends_from: ["ComponentTypeId"],
|
3171
|
-
# functions: {
|
3172
|
-
# "Name" => {
|
3173
|
-
# implemented_by: {
|
3174
|
-
# is_native: false,
|
3175
|
-
# lambda: {
|
3176
|
-
# arn: "LambdaArn", # required
|
3177
|
-
# },
|
3178
|
-
# },
|
3179
|
-
# required_properties: ["Name"],
|
3180
|
-
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
3181
|
-
# },
|
3182
|
-
# },
|
3183
|
-
# is_singleton: false,
|
3184
3669
|
# property_definitions: {
|
3185
3670
|
# "Name" => {
|
3186
|
-
# configuration: {
|
3187
|
-
# "Name" => "Value",
|
3188
|
-
# },
|
3189
3671
|
# data_type: {
|
3672
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
3673
|
+
# nested_type: {
|
3674
|
+
# # recursive DataType
|
3675
|
+
# },
|
3190
3676
|
# allowed_values: [
|
3191
3677
|
# {
|
3192
3678
|
# boolean_value: false,
|
3193
3679
|
# double_value: 1.0,
|
3194
|
-
# expression: "Expression",
|
3195
3680
|
# integer_value: 1,
|
3681
|
+
# long_value: 1,
|
3682
|
+
# string_value: "String",
|
3196
3683
|
# list_value: {
|
3197
3684
|
# # recursive DataValueList
|
3198
3685
|
# },
|
3199
|
-
# long_value: 1,
|
3200
3686
|
# map_value: {
|
3201
3687
|
# "String" => {
|
3202
3688
|
# # recursive DataValue
|
3203
3689
|
# },
|
3204
3690
|
# },
|
3205
3691
|
# relationship_value: {
|
3206
|
-
# target_component_name: "Name",
|
3207
3692
|
# target_entity_id: "EntityId",
|
3693
|
+
# target_component_name: "Name",
|
3208
3694
|
# },
|
3209
|
-
#
|
3695
|
+
# expression: "Expression",
|
3210
3696
|
# },
|
3211
3697
|
# ],
|
3212
|
-
#
|
3213
|
-
# # recursive DataType
|
3214
|
-
# },
|
3698
|
+
# unit_of_measure: "String",
|
3215
3699
|
# relationship: {
|
3216
|
-
# relationship_type: "String",
|
3217
3700
|
# target_component_type_id: "ComponentTypeId",
|
3701
|
+
# relationship_type: "String",
|
3218
3702
|
# },
|
3219
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
3220
|
-
# unit_of_measure: "String",
|
3221
3703
|
# },
|
3704
|
+
# is_required_in_entity: false,
|
3705
|
+
# is_external_id: false,
|
3706
|
+
# is_stored_externally: false,
|
3707
|
+
# is_time_series: false,
|
3222
3708
|
# default_value: {
|
3223
3709
|
# boolean_value: false,
|
3224
3710
|
# double_value: 1.0,
|
3225
|
-
# expression: "Expression",
|
3226
3711
|
# integer_value: 1,
|
3712
|
+
# long_value: 1,
|
3713
|
+
# string_value: "String",
|
3227
3714
|
# list_value: [
|
3228
3715
|
# {
|
3229
3716
|
# # recursive DataValue
|
3230
3717
|
# },
|
3231
3718
|
# ],
|
3232
|
-
# long_value: 1,
|
3233
3719
|
# map_value: {
|
3234
3720
|
# "String" => {
|
3235
3721
|
# # recursive DataValue
|
3236
3722
|
# },
|
3237
3723
|
# },
|
3238
3724
|
# relationship_value: {
|
3239
|
-
# target_component_name: "Name",
|
3240
3725
|
# target_entity_id: "EntityId",
|
3726
|
+
# target_component_name: "Name",
|
3727
|
+
# },
|
3728
|
+
# expression: "Expression",
|
3729
|
+
# },
|
3730
|
+
# configuration: {
|
3731
|
+
# "Name" => "Value",
|
3732
|
+
# },
|
3733
|
+
# },
|
3734
|
+
# },
|
3735
|
+
# extends_from: ["ComponentTypeId"],
|
3736
|
+
# functions: {
|
3737
|
+
# "Name" => {
|
3738
|
+
# required_properties: ["Name"],
|
3739
|
+
# scope: "ENTITY", # accepts ENTITY, WORKSPACE
|
3740
|
+
# implemented_by: {
|
3741
|
+
# lambda: {
|
3742
|
+
# arn: "LambdaArn", # required
|
3241
3743
|
# },
|
3242
|
-
#
|
3744
|
+
# is_native: false,
|
3243
3745
|
# },
|
3244
|
-
# is_external_id: false,
|
3245
|
-
# is_required_in_entity: false,
|
3246
|
-
# is_stored_externally: false,
|
3247
|
-
# is_time_series: false,
|
3248
3746
|
# },
|
3249
3747
|
# },
|
3250
|
-
#
|
3748
|
+
# property_groups: {
|
3749
|
+
# "Name" => {
|
3750
|
+
# group_type: "TABULAR", # accepts TABULAR
|
3751
|
+
# property_names: ["Name"],
|
3752
|
+
# },
|
3753
|
+
# },
|
3251
3754
|
# }
|
3252
3755
|
#
|
3756
|
+
# @!attribute [rw] workspace_id
|
3757
|
+
# The ID of the workspace that contains the component type.
|
3758
|
+
# @return [String]
|
3759
|
+
#
|
3760
|
+
# @!attribute [rw] is_singleton
|
3761
|
+
# A Boolean value that specifies whether an entity can have more than
|
3762
|
+
# one component of this type.
|
3763
|
+
# @return [Boolean]
|
3764
|
+
#
|
3253
3765
|
# @!attribute [rw] component_type_id
|
3254
3766
|
# The ID of the component type.
|
3255
3767
|
# @return [String]
|
@@ -3258,6 +3770,12 @@ module Aws::IoTTwinMaker
|
|
3258
3770
|
# The description of the component type.
|
3259
3771
|
# @return [String]
|
3260
3772
|
#
|
3773
|
+
# @!attribute [rw] property_definitions
|
3774
|
+
# An object that maps strings to the property definitions in the
|
3775
|
+
# component type. Each string in the mapping must be unique to this
|
3776
|
+
# object.
|
3777
|
+
# @return [Hash<String,Types::PropertyDefinitionRequest>]
|
3778
|
+
#
|
3261
3779
|
# @!attribute [rw] extends_from
|
3262
3780
|
# Specifies the component type that this component type extends.
|
3263
3781
|
# @return [Array<String>]
|
@@ -3267,33 +3785,27 @@ module Aws::IoTTwinMaker
|
|
3267
3785
|
# Each string in the mapping must be unique to this object.
|
3268
3786
|
# @return [Hash<String,Types::FunctionRequest>]
|
3269
3787
|
#
|
3270
|
-
# @!attribute [rw]
|
3271
|
-
#
|
3272
|
-
#
|
3273
|
-
# @return [Boolean]
|
3274
|
-
#
|
3275
|
-
# @!attribute [rw] property_definitions
|
3276
|
-
# An object that maps strings to the property definitions in the
|
3277
|
-
# component type. Each string in the mapping must be unique to this
|
3278
|
-
# object.
|
3279
|
-
# @return [Hash<String,Types::PropertyDefinitionRequest>]
|
3280
|
-
#
|
3281
|
-
# @!attribute [rw] workspace_id
|
3282
|
-
# The ID of the workspace that contains the component type.
|
3283
|
-
# @return [String]
|
3788
|
+
# @!attribute [rw] property_groups
|
3789
|
+
# The property groups
|
3790
|
+
# @return [Hash<String,Types::PropertyGroupRequest>]
|
3284
3791
|
#
|
3285
3792
|
class UpdateComponentTypeRequest < Struct.new(
|
3793
|
+
:workspace_id,
|
3794
|
+
:is_singleton,
|
3286
3795
|
:component_type_id,
|
3287
3796
|
:description,
|
3797
|
+
:property_definitions,
|
3288
3798
|
:extends_from,
|
3289
3799
|
:functions,
|
3290
|
-
:
|
3291
|
-
:property_definitions,
|
3292
|
-
:workspace_id)
|
3800
|
+
:property_groups)
|
3293
3801
|
SENSITIVE = []
|
3294
3802
|
include Aws::Structure
|
3295
3803
|
end
|
3296
3804
|
|
3805
|
+
# @!attribute [rw] workspace_id
|
3806
|
+
# The ID of the workspace that contains the component type.
|
3807
|
+
# @return [String]
|
3808
|
+
#
|
3297
3809
|
# @!attribute [rw] arn
|
3298
3810
|
# The ARN of the component type.
|
3299
3811
|
# @return [String]
|
@@ -3306,15 +3818,11 @@ module Aws::IoTTwinMaker
|
|
3306
3818
|
# The current state of the component type.
|
3307
3819
|
# @return [String]
|
3308
3820
|
#
|
3309
|
-
# @!attribute [rw] workspace_id
|
3310
|
-
# The ID of the workspace that contains the component type.
|
3311
|
-
# @return [String]
|
3312
|
-
#
|
3313
3821
|
class UpdateComponentTypeResponse < Struct.new(
|
3822
|
+
:workspace_id,
|
3314
3823
|
:arn,
|
3315
3824
|
:component_type_id,
|
3316
|
-
:state
|
3317
|
-
:workspace_id)
|
3825
|
+
:state)
|
3318
3826
|
SENSITIVE = []
|
3319
3827
|
include Aws::Structure
|
3320
3828
|
end
|
@@ -3323,121 +3831,123 @@ module Aws::IoTTwinMaker
|
|
3323
3831
|
# data as a hash:
|
3324
3832
|
#
|
3325
3833
|
# {
|
3834
|
+
# workspace_id: "Id", # required
|
3835
|
+
# entity_id: "EntityId", # required
|
3836
|
+
# entity_name: "EntityName",
|
3837
|
+
# description: "Description",
|
3326
3838
|
# component_updates: {
|
3327
3839
|
# "Name" => {
|
3328
|
-
#
|
3840
|
+
# update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
3329
3841
|
# description: "Description",
|
3842
|
+
# component_type_id: "ComponentTypeId",
|
3330
3843
|
# property_updates: {
|
3331
3844
|
# "Name" => {
|
3332
3845
|
# definition: {
|
3333
|
-
# configuration: {
|
3334
|
-
# "Name" => "Value",
|
3335
|
-
# },
|
3336
3846
|
# data_type: {
|
3847
|
+
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
3848
|
+
# nested_type: {
|
3849
|
+
# # recursive DataType
|
3850
|
+
# },
|
3337
3851
|
# allowed_values: [
|
3338
3852
|
# {
|
3339
3853
|
# boolean_value: false,
|
3340
3854
|
# double_value: 1.0,
|
3341
|
-
# expression: "Expression",
|
3342
3855
|
# integer_value: 1,
|
3856
|
+
# long_value: 1,
|
3857
|
+
# string_value: "String",
|
3343
3858
|
# list_value: {
|
3344
3859
|
# # recursive DataValueList
|
3345
3860
|
# },
|
3346
|
-
# long_value: 1,
|
3347
3861
|
# map_value: {
|
3348
3862
|
# "String" => {
|
3349
3863
|
# # recursive DataValue
|
3350
3864
|
# },
|
3351
3865
|
# },
|
3352
3866
|
# relationship_value: {
|
3353
|
-
# target_component_name: "Name",
|
3354
3867
|
# target_entity_id: "EntityId",
|
3868
|
+
# target_component_name: "Name",
|
3355
3869
|
# },
|
3356
|
-
#
|
3870
|
+
# expression: "Expression",
|
3357
3871
|
# },
|
3358
3872
|
# ],
|
3359
|
-
#
|
3360
|
-
# # recursive DataType
|
3361
|
-
# },
|
3873
|
+
# unit_of_measure: "String",
|
3362
3874
|
# relationship: {
|
3363
|
-
# relationship_type: "String",
|
3364
3875
|
# target_component_type_id: "ComponentTypeId",
|
3876
|
+
# relationship_type: "String",
|
3365
3877
|
# },
|
3366
|
-
# type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
|
3367
|
-
# unit_of_measure: "String",
|
3368
3878
|
# },
|
3879
|
+
# is_required_in_entity: false,
|
3880
|
+
# is_external_id: false,
|
3881
|
+
# is_stored_externally: false,
|
3882
|
+
# is_time_series: false,
|
3369
3883
|
# default_value: {
|
3370
3884
|
# boolean_value: false,
|
3371
3885
|
# double_value: 1.0,
|
3372
|
-
# expression: "Expression",
|
3373
3886
|
# integer_value: 1,
|
3887
|
+
# long_value: 1,
|
3888
|
+
# string_value: "String",
|
3374
3889
|
# list_value: [
|
3375
3890
|
# {
|
3376
3891
|
# # recursive DataValue
|
3377
3892
|
# },
|
3378
3893
|
# ],
|
3379
|
-
# long_value: 1,
|
3380
3894
|
# map_value: {
|
3381
3895
|
# "String" => {
|
3382
3896
|
# # recursive DataValue
|
3383
3897
|
# },
|
3384
3898
|
# },
|
3385
3899
|
# relationship_value: {
|
3386
|
-
# target_component_name: "Name",
|
3387
3900
|
# target_entity_id: "EntityId",
|
3901
|
+
# target_component_name: "Name",
|
3388
3902
|
# },
|
3389
|
-
#
|
3903
|
+
# expression: "Expression",
|
3904
|
+
# },
|
3905
|
+
# configuration: {
|
3906
|
+
# "Name" => "Value",
|
3390
3907
|
# },
|
3391
|
-
# is_external_id: false,
|
3392
|
-
# is_required_in_entity: false,
|
3393
|
-
# is_stored_externally: false,
|
3394
|
-
# is_time_series: false,
|
3395
3908
|
# },
|
3396
|
-
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
3397
3909
|
# value: {
|
3398
3910
|
# boolean_value: false,
|
3399
3911
|
# double_value: 1.0,
|
3400
|
-
# expression: "Expression",
|
3401
3912
|
# integer_value: 1,
|
3913
|
+
# long_value: 1,
|
3914
|
+
# string_value: "String",
|
3402
3915
|
# list_value: [
|
3403
3916
|
# {
|
3404
3917
|
# # recursive DataValue
|
3405
3918
|
# },
|
3406
3919
|
# ],
|
3407
|
-
# long_value: 1,
|
3408
3920
|
# map_value: {
|
3409
3921
|
# "String" => {
|
3410
3922
|
# # recursive DataValue
|
3411
3923
|
# },
|
3412
3924
|
# },
|
3413
3925
|
# relationship_value: {
|
3414
|
-
# target_component_name: "Name",
|
3415
3926
|
# target_entity_id: "EntityId",
|
3927
|
+
# target_component_name: "Name",
|
3416
3928
|
# },
|
3417
|
-
#
|
3929
|
+
# expression: "Expression",
|
3418
3930
|
# },
|
3931
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
3932
|
+
# },
|
3933
|
+
# },
|
3934
|
+
# property_group_updates: {
|
3935
|
+
# "Name" => {
|
3936
|
+
# group_type: "TABULAR", # accepts TABULAR
|
3937
|
+
# property_names: ["Name"],
|
3938
|
+
# update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
|
3419
3939
|
# },
|
3420
3940
|
# },
|
3421
|
-
# update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
3422
3941
|
# },
|
3423
3942
|
# },
|
3424
|
-
# description: "Description",
|
3425
|
-
# entity_id: "EntityId", # required
|
3426
|
-
# entity_name: "EntityName",
|
3427
3943
|
# parent_entity_update: {
|
3428
|
-
# parent_entity_id: "ParentEntityId",
|
3429
3944
|
# update_type: "UPDATE", # required, accepts UPDATE, DELETE
|
3945
|
+
# parent_entity_id: "ParentEntityId",
|
3430
3946
|
# },
|
3431
|
-
# workspace_id: "Id", # required
|
3432
3947
|
# }
|
3433
3948
|
#
|
3434
|
-
# @!attribute [rw]
|
3435
|
-
#
|
3436
|
-
# Each string in the mapping must be unique to this object.
|
3437
|
-
# @return [Hash<String,Types::ComponentUpdateRequest>]
|
3438
|
-
#
|
3439
|
-
# @!attribute [rw] description
|
3440
|
-
# The description of the entity.
|
3949
|
+
# @!attribute [rw] workspace_id
|
3950
|
+
# The ID of the workspace that contains the entity.
|
3441
3951
|
# @return [String]
|
3442
3952
|
#
|
3443
3953
|
# @!attribute [rw] entity_id
|
@@ -3448,36 +3958,79 @@ module Aws::IoTTwinMaker
|
|
3448
3958
|
# The name of the entity.
|
3449
3959
|
# @return [String]
|
3450
3960
|
#
|
3961
|
+
# @!attribute [rw] description
|
3962
|
+
# The description of the entity.
|
3963
|
+
# @return [String]
|
3964
|
+
#
|
3965
|
+
# @!attribute [rw] component_updates
|
3966
|
+
# An object that maps strings to the component updates in the request.
|
3967
|
+
# Each string in the mapping must be unique to this object.
|
3968
|
+
# @return [Hash<String,Types::ComponentUpdateRequest>]
|
3969
|
+
#
|
3451
3970
|
# @!attribute [rw] parent_entity_update
|
3452
3971
|
# An object that describes the update request for a parent entity.
|
3453
3972
|
# @return [Types::ParentEntityUpdateRequest]
|
3454
3973
|
#
|
3455
|
-
# @!attribute [rw] workspace_id
|
3456
|
-
# The ID of the workspace that contains the entity.
|
3457
|
-
# @return [String]
|
3458
|
-
#
|
3459
3974
|
class UpdateEntityRequest < Struct.new(
|
3460
|
-
:
|
3461
|
-
:description,
|
3975
|
+
:workspace_id,
|
3462
3976
|
:entity_id,
|
3463
3977
|
:entity_name,
|
3464
|
-
:
|
3465
|
-
:
|
3978
|
+
:description,
|
3979
|
+
:component_updates,
|
3980
|
+
:parent_entity_update)
|
3466
3981
|
SENSITIVE = []
|
3467
3982
|
include Aws::Structure
|
3468
3983
|
end
|
3469
3984
|
|
3470
|
-
# @!attribute [rw] state
|
3471
|
-
# The current state of the entity update.
|
3472
|
-
# @return [String]
|
3473
|
-
#
|
3474
3985
|
# @!attribute [rw] update_date_time
|
3475
3986
|
# The date and time when the entity was last updated.
|
3476
3987
|
# @return [Time]
|
3477
3988
|
#
|
3989
|
+
# @!attribute [rw] state
|
3990
|
+
# The current state of the entity update.
|
3991
|
+
# @return [String]
|
3992
|
+
#
|
3478
3993
|
class UpdateEntityResponse < Struct.new(
|
3479
|
-
:
|
3480
|
-
:
|
3994
|
+
:update_date_time,
|
3995
|
+
:state)
|
3996
|
+
SENSITIVE = []
|
3997
|
+
include Aws::Structure
|
3998
|
+
end
|
3999
|
+
|
4000
|
+
# @note When making an API call, you may pass UpdatePricingPlanRequest
|
4001
|
+
# data as a hash:
|
4002
|
+
#
|
4003
|
+
# {
|
4004
|
+
# pricing_mode: "BASIC", # required, accepts BASIC, STANDARD, TIERED_BUNDLE
|
4005
|
+
# bundle_names: ["BundleName"],
|
4006
|
+
# }
|
4007
|
+
#
|
4008
|
+
# @!attribute [rw] pricing_mode
|
4009
|
+
# The pricing mode.
|
4010
|
+
# @return [String]
|
4011
|
+
#
|
4012
|
+
# @!attribute [rw] bundle_names
|
4013
|
+
# The bundle names.
|
4014
|
+
# @return [Array<String>]
|
4015
|
+
#
|
4016
|
+
class UpdatePricingPlanRequest < Struct.new(
|
4017
|
+
:pricing_mode,
|
4018
|
+
:bundle_names)
|
4019
|
+
SENSITIVE = []
|
4020
|
+
include Aws::Structure
|
4021
|
+
end
|
4022
|
+
|
4023
|
+
# @!attribute [rw] current_pricing_plan
|
4024
|
+
# Update the current pricing plan.
|
4025
|
+
# @return [Types::PricingPlan]
|
4026
|
+
#
|
4027
|
+
# @!attribute [rw] pending_pricing_plan
|
4028
|
+
# Update the pending pricing plan.
|
4029
|
+
# @return [Types::PricingPlan]
|
4030
|
+
#
|
4031
|
+
class UpdatePricingPlanResponse < Struct.new(
|
4032
|
+
:current_pricing_plan,
|
4033
|
+
:pending_pricing_plan)
|
3481
4034
|
SENSITIVE = []
|
3482
4035
|
include Aws::Structure
|
3483
4036
|
end
|
@@ -3486,16 +4039,20 @@ module Aws::IoTTwinMaker
|
|
3486
4039
|
# data as a hash:
|
3487
4040
|
#
|
3488
4041
|
# {
|
3489
|
-
#
|
4042
|
+
# workspace_id: "Id", # required
|
4043
|
+
# scene_id: "Id", # required
|
3490
4044
|
# content_location: "S3Url",
|
3491
4045
|
# description: "Description",
|
3492
|
-
#
|
3493
|
-
# workspace_id: "Id", # required
|
4046
|
+
# capabilities: ["SceneCapability"],
|
3494
4047
|
# }
|
3495
4048
|
#
|
3496
|
-
# @!attribute [rw]
|
3497
|
-
#
|
3498
|
-
# @return [
|
4049
|
+
# @!attribute [rw] workspace_id
|
4050
|
+
# The ID of the workspace that contains the scene.
|
4051
|
+
# @return [String]
|
4052
|
+
#
|
4053
|
+
# @!attribute [rw] scene_id
|
4054
|
+
# The ID of the scene.
|
4055
|
+
# @return [String]
|
3499
4056
|
#
|
3500
4057
|
# @!attribute [rw] content_location
|
3501
4058
|
# The relative path that specifies the location of the content
|
@@ -3506,20 +4063,16 @@ module Aws::IoTTwinMaker
|
|
3506
4063
|
# The description of this scene.
|
3507
4064
|
# @return [String]
|
3508
4065
|
#
|
3509
|
-
# @!attribute [rw]
|
3510
|
-
#
|
3511
|
-
# @return [String]
|
3512
|
-
#
|
3513
|
-
# @!attribute [rw] workspace_id
|
3514
|
-
# The ID of the workspace that contains the scene.
|
3515
|
-
# @return [String]
|
4066
|
+
# @!attribute [rw] capabilities
|
4067
|
+
# A list of capabilities that the scene uses to render.
|
4068
|
+
# @return [Array<String>]
|
3516
4069
|
#
|
3517
4070
|
class UpdateSceneRequest < Struct.new(
|
3518
|
-
:
|
4071
|
+
:workspace_id,
|
4072
|
+
:scene_id,
|
3519
4073
|
:content_location,
|
3520
4074
|
:description,
|
3521
|
-
:
|
3522
|
-
:workspace_id)
|
4075
|
+
:capabilities)
|
3523
4076
|
SENSITIVE = []
|
3524
4077
|
include Aws::Structure
|
3525
4078
|
end
|
@@ -3538,11 +4091,15 @@ module Aws::IoTTwinMaker
|
|
3538
4091
|
# data as a hash:
|
3539
4092
|
#
|
3540
4093
|
# {
|
4094
|
+
# workspace_id: "Id", # required
|
3541
4095
|
# description: "Description",
|
3542
4096
|
# role: "RoleArn",
|
3543
|
-
# workspace_id: "Id", # required
|
3544
4097
|
# }
|
3545
4098
|
#
|
4099
|
+
# @!attribute [rw] workspace_id
|
4100
|
+
# The ID of the workspace.
|
4101
|
+
# @return [String]
|
4102
|
+
#
|
3546
4103
|
# @!attribute [rw] description
|
3547
4104
|
# The description of the workspace.
|
3548
4105
|
# @return [String]
|
@@ -3551,14 +4108,10 @@ module Aws::IoTTwinMaker
|
|
3551
4108
|
# The ARN of the execution role associated with the workspace.
|
3552
4109
|
# @return [String]
|
3553
4110
|
#
|
3554
|
-
# @!attribute [rw] workspace_id
|
3555
|
-
# The ID of the workspace.
|
3556
|
-
# @return [String]
|
3557
|
-
#
|
3558
4111
|
class UpdateWorkspaceRequest < Struct.new(
|
4112
|
+
:workspace_id,
|
3559
4113
|
:description,
|
3560
|
-
:role
|
3561
|
-
:workspace_id)
|
4114
|
+
:role)
|
3562
4115
|
SENSITIVE = []
|
3563
4116
|
include Aws::Structure
|
3564
4117
|
end
|
@@ -3586,32 +4139,32 @@ module Aws::IoTTwinMaker
|
|
3586
4139
|
|
3587
4140
|
# An object that contains information about a workspace.
|
3588
4141
|
#
|
4142
|
+
# @!attribute [rw] workspace_id
|
4143
|
+
# The ID of the workspace.
|
4144
|
+
# @return [String]
|
4145
|
+
#
|
3589
4146
|
# @!attribute [rw] arn
|
3590
4147
|
# The ARN of the workspace.
|
3591
4148
|
# @return [String]
|
3592
4149
|
#
|
3593
|
-
# @!attribute [rw] creation_date_time
|
3594
|
-
# The date and time when the workspace was created.
|
3595
|
-
# @return [Time]
|
3596
|
-
#
|
3597
4150
|
# @!attribute [rw] description
|
3598
4151
|
# The description of the workspace.
|
3599
4152
|
# @return [String]
|
3600
4153
|
#
|
4154
|
+
# @!attribute [rw] creation_date_time
|
4155
|
+
# The date and time when the workspace was created.
|
4156
|
+
# @return [Time]
|
4157
|
+
#
|
3601
4158
|
# @!attribute [rw] update_date_time
|
3602
4159
|
# The date and time when the workspace was last updated.
|
3603
4160
|
# @return [Time]
|
3604
4161
|
#
|
3605
|
-
# @!attribute [rw] workspace_id
|
3606
|
-
# The ID of the workspace.
|
3607
|
-
# @return [String]
|
3608
|
-
#
|
3609
4162
|
class WorkspaceSummary < Struct.new(
|
4163
|
+
:workspace_id,
|
3610
4164
|
:arn,
|
3611
|
-
:creation_date_time,
|
3612
4165
|
:description,
|
3613
|
-
:
|
3614
|
-
:
|
4166
|
+
:creation_date_time,
|
4167
|
+
:update_date_time)
|
3615
4168
|
SENSITIVE = []
|
3616
4169
|
include Aws::Structure
|
3617
4170
|
end
|