aws-sdk-iottwinmaker 1.7.0 → 1.8.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.
@@ -58,53 +58,6 @@ module Aws::IoTTwinMaker
58
58
  include Aws::Structure
59
59
  end
60
60
 
61
- # @note When making an API call, you may pass BatchPutPropertyValuesRequest
62
- # data as a hash:
63
- #
64
- # {
65
- # workspace_id: "Id", # required
66
- # entries: [ # required
67
- # {
68
- # entity_property_reference: { # required
69
- # component_name: "Name",
70
- # external_id_property: {
71
- # "String" => "String",
72
- # },
73
- # entity_id: "EntityId",
74
- # property_name: "Name", # required
75
- # },
76
- # property_values: [
77
- # {
78
- # timestamp: Time.now,
79
- # value: { # required
80
- # boolean_value: false,
81
- # double_value: 1.0,
82
- # integer_value: 1,
83
- # long_value: 1,
84
- # string_value: "String",
85
- # list_value: [
86
- # {
87
- # # recursive DataValue
88
- # },
89
- # ],
90
- # map_value: {
91
- # "String" => {
92
- # # recursive DataValue
93
- # },
94
- # },
95
- # relationship_value: {
96
- # target_entity_id: "EntityId",
97
- # target_component_name: "Name",
98
- # },
99
- # expression: "Expression",
100
- # },
101
- # time: "Time",
102
- # },
103
- # ],
104
- # },
105
- # ],
106
- # }
107
- #
108
61
  # @!attribute [rw] workspace_id
109
62
  # The ID of the workspace that contains the properties to set.
110
63
  # @return [String]
@@ -165,15 +118,6 @@ module Aws::IoTTwinMaker
165
118
  include Aws::Structure
166
119
  end
167
120
 
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
121
  # @!attribute [rw] group_type
178
122
  # The group type.
179
123
  # @return [String]
@@ -220,112 +164,6 @@ module Aws::IoTTwinMaker
220
164
  # An object that sets information about a component type create or
221
165
  # update request.
222
166
  #
223
- # @note When making an API call, you may pass ComponentRequest
224
- # data as a hash:
225
- #
226
- # {
227
- # description: "Description",
228
- # component_type_id: "ComponentTypeId",
229
- # properties: {
230
- # "Name" => {
231
- # definition: {
232
- # data_type: {
233
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
234
- # nested_type: {
235
- # # recursive DataType
236
- # },
237
- # allowed_values: [
238
- # {
239
- # boolean_value: false,
240
- # double_value: 1.0,
241
- # integer_value: 1,
242
- # long_value: 1,
243
- # string_value: "String",
244
- # list_value: {
245
- # # recursive DataValueList
246
- # },
247
- # map_value: {
248
- # "String" => {
249
- # # recursive DataValue
250
- # },
251
- # },
252
- # relationship_value: {
253
- # target_entity_id: "EntityId",
254
- # target_component_name: "Name",
255
- # },
256
- # expression: "Expression",
257
- # },
258
- # ],
259
- # unit_of_measure: "String",
260
- # relationship: {
261
- # target_component_type_id: "ComponentTypeId",
262
- # relationship_type: "String",
263
- # },
264
- # },
265
- # is_required_in_entity: false,
266
- # is_external_id: false,
267
- # is_stored_externally: false,
268
- # is_time_series: false,
269
- # default_value: {
270
- # boolean_value: false,
271
- # double_value: 1.0,
272
- # integer_value: 1,
273
- # long_value: 1,
274
- # string_value: "String",
275
- # list_value: [
276
- # {
277
- # # recursive DataValue
278
- # },
279
- # ],
280
- # map_value: {
281
- # "String" => {
282
- # # recursive DataValue
283
- # },
284
- # },
285
- # relationship_value: {
286
- # target_entity_id: "EntityId",
287
- # target_component_name: "Name",
288
- # },
289
- # expression: "Expression",
290
- # },
291
- # configuration: {
292
- # "Name" => "Value",
293
- # },
294
- # },
295
- # value: {
296
- # boolean_value: false,
297
- # double_value: 1.0,
298
- # integer_value: 1,
299
- # long_value: 1,
300
- # string_value: "String",
301
- # list_value: [
302
- # {
303
- # # recursive DataValue
304
- # },
305
- # ],
306
- # map_value: {
307
- # "String" => {
308
- # # recursive DataValue
309
- # },
310
- # },
311
- # relationship_value: {
312
- # target_entity_id: "EntityId",
313
- # target_component_name: "Name",
314
- # },
315
- # expression: "Expression",
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
325
- # },
326
- # },
327
- # }
328
- #
329
167
  # @!attribute [rw] description
330
168
  # The description of the component request.
331
169
  # @return [String]
@@ -386,6 +224,11 @@ module Aws::IoTTwinMaker
386
224
  # The property groups.
387
225
  # @return [Hash<String,Types::ComponentPropertyGroupResponse>]
388
226
  #
227
+ # @!attribute [rw] sync_source
228
+ # The syncSource of the sync job, if this entity was created by a sync
229
+ # job.
230
+ # @return [String]
231
+ #
389
232
  class ComponentResponse < Struct.new(
390
233
  :component_name,
391
234
  :description,
@@ -393,7 +236,8 @@ module Aws::IoTTwinMaker
393
236
  :status,
394
237
  :defined_in,
395
238
  :properties,
396
- :property_groups)
239
+ :property_groups,
240
+ :sync_source)
397
241
  SENSITIVE = []
398
242
  include Aws::Structure
399
243
  end
@@ -424,126 +268,24 @@ module Aws::IoTTwinMaker
424
268
  # The current status of the component type.
425
269
  # @return [Types::Status]
426
270
  #
271
+ # @!attribute [rw] component_type_name
272
+ # The component type name.
273
+ # @return [String]
274
+ #
427
275
  class ComponentTypeSummary < Struct.new(
428
276
  :arn,
429
277
  :component_type_id,
430
278
  :creation_date_time,
431
279
  :update_date_time,
432
280
  :description,
433
- :status)
281
+ :status,
282
+ :component_type_name)
434
283
  SENSITIVE = []
435
284
  include Aws::Structure
436
285
  end
437
286
 
438
287
  # The component update request.
439
288
  #
440
- # @note When making an API call, you may pass ComponentUpdateRequest
441
- # data as a hash:
442
- #
443
- # {
444
- # update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
445
- # description: "Description",
446
- # component_type_id: "ComponentTypeId",
447
- # property_updates: {
448
- # "Name" => {
449
- # definition: {
450
- # data_type: {
451
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
452
- # nested_type: {
453
- # # recursive DataType
454
- # },
455
- # allowed_values: [
456
- # {
457
- # boolean_value: false,
458
- # double_value: 1.0,
459
- # integer_value: 1,
460
- # long_value: 1,
461
- # string_value: "String",
462
- # list_value: {
463
- # # recursive DataValueList
464
- # },
465
- # map_value: {
466
- # "String" => {
467
- # # recursive DataValue
468
- # },
469
- # },
470
- # relationship_value: {
471
- # target_entity_id: "EntityId",
472
- # target_component_name: "Name",
473
- # },
474
- # expression: "Expression",
475
- # },
476
- # ],
477
- # unit_of_measure: "String",
478
- # relationship: {
479
- # target_component_type_id: "ComponentTypeId",
480
- # relationship_type: "String",
481
- # },
482
- # },
483
- # is_required_in_entity: false,
484
- # is_external_id: false,
485
- # is_stored_externally: false,
486
- # is_time_series: false,
487
- # default_value: {
488
- # boolean_value: false,
489
- # double_value: 1.0,
490
- # integer_value: 1,
491
- # long_value: 1,
492
- # string_value: "String",
493
- # list_value: [
494
- # {
495
- # # recursive DataValue
496
- # },
497
- # ],
498
- # map_value: {
499
- # "String" => {
500
- # # recursive DataValue
501
- # },
502
- # },
503
- # relationship_value: {
504
- # target_entity_id: "EntityId",
505
- # target_component_name: "Name",
506
- # },
507
- # expression: "Expression",
508
- # },
509
- # configuration: {
510
- # "Name" => "Value",
511
- # },
512
- # },
513
- # value: {
514
- # boolean_value: false,
515
- # double_value: 1.0,
516
- # integer_value: 1,
517
- # long_value: 1,
518
- # string_value: "String",
519
- # list_value: [
520
- # {
521
- # # recursive DataValue
522
- # },
523
- # ],
524
- # map_value: {
525
- # "String" => {
526
- # # recursive DataValue
527
- # },
528
- # },
529
- # relationship_value: {
530
- # target_entity_id: "EntityId",
531
- # target_component_name: "Name",
532
- # },
533
- # expression: "Expression",
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
543
- # },
544
- # },
545
- # }
546
- #
547
289
  # @!attribute [rw] update_type
548
290
  # The update type of the component update request.
549
291
  # @return [String]
@@ -609,104 +351,6 @@ module Aws::IoTTwinMaker
609
351
  include Aws::Structure
610
352
  end
611
353
 
612
- # @note When making an API call, you may pass CreateComponentTypeRequest
613
- # data as a hash:
614
- #
615
- # {
616
- # workspace_id: "Id", # required
617
- # is_singleton: false,
618
- # component_type_id: "ComponentTypeId", # required
619
- # description: "Description",
620
- # property_definitions: {
621
- # "Name" => {
622
- # data_type: {
623
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
624
- # nested_type: {
625
- # # recursive DataType
626
- # },
627
- # allowed_values: [
628
- # {
629
- # boolean_value: false,
630
- # double_value: 1.0,
631
- # integer_value: 1,
632
- # long_value: 1,
633
- # string_value: "String",
634
- # list_value: {
635
- # # recursive DataValueList
636
- # },
637
- # map_value: {
638
- # "String" => {
639
- # # recursive DataValue
640
- # },
641
- # },
642
- # relationship_value: {
643
- # target_entity_id: "EntityId",
644
- # target_component_name: "Name",
645
- # },
646
- # expression: "Expression",
647
- # },
648
- # ],
649
- # unit_of_measure: "String",
650
- # relationship: {
651
- # target_component_type_id: "ComponentTypeId",
652
- # relationship_type: "String",
653
- # },
654
- # },
655
- # is_required_in_entity: false,
656
- # is_external_id: false,
657
- # is_stored_externally: false,
658
- # is_time_series: false,
659
- # default_value: {
660
- # boolean_value: false,
661
- # double_value: 1.0,
662
- # integer_value: 1,
663
- # long_value: 1,
664
- # string_value: "String",
665
- # list_value: [
666
- # {
667
- # # recursive DataValue
668
- # },
669
- # ],
670
- # map_value: {
671
- # "String" => {
672
- # # recursive DataValue
673
- # },
674
- # },
675
- # relationship_value: {
676
- # target_entity_id: "EntityId",
677
- # target_component_name: "Name",
678
- # },
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,
696
- # },
697
- # },
698
- # },
699
- # tags: {
700
- # "TagKey" => "TagValue",
701
- # },
702
- # property_groups: {
703
- # "Name" => {
704
- # group_type: "TABULAR", # accepts TABULAR
705
- # property_names: ["Name"],
706
- # },
707
- # },
708
- # }
709
- #
710
354
  # @!attribute [rw] workspace_id
711
355
  # The ID of the workspace that contains the component type.
712
356
  # @return [String]
@@ -746,6 +390,10 @@ module Aws::IoTTwinMaker
746
390
  # @!attribute [rw] property_groups
747
391
  # @return [Hash<String,Types::PropertyGroupRequest>]
748
392
  #
393
+ # @!attribute [rw] component_type_name
394
+ # A friendly name for the component type.
395
+ # @return [String]
396
+ #
749
397
  class CreateComponentTypeRequest < Struct.new(
750
398
  :workspace_id,
751
399
  :is_singleton,
@@ -755,7 +403,8 @@ module Aws::IoTTwinMaker
755
403
  :extends_from,
756
404
  :functions,
757
405
  :tags,
758
- :property_groups)
406
+ :property_groups,
407
+ :component_type_name)
759
408
  SENSITIVE = []
760
409
  include Aws::Structure
761
410
  end
@@ -780,124 +429,6 @@ module Aws::IoTTwinMaker
780
429
  include Aws::Structure
781
430
  end
782
431
 
783
- # @note When making an API call, you may pass CreateEntityRequest
784
- # data as a hash:
785
- #
786
- # {
787
- # workspace_id: "Id", # required
788
- # entity_id: "EntityId",
789
- # entity_name: "EntityName", # required
790
- # description: "Description",
791
- # components: {
792
- # "Name" => {
793
- # description: "Description",
794
- # component_type_id: "ComponentTypeId",
795
- # properties: {
796
- # "Name" => {
797
- # definition: {
798
- # data_type: {
799
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
800
- # nested_type: {
801
- # # recursive DataType
802
- # },
803
- # allowed_values: [
804
- # {
805
- # boolean_value: false,
806
- # double_value: 1.0,
807
- # integer_value: 1,
808
- # long_value: 1,
809
- # string_value: "String",
810
- # list_value: {
811
- # # recursive DataValueList
812
- # },
813
- # map_value: {
814
- # "String" => {
815
- # # recursive DataValue
816
- # },
817
- # },
818
- # relationship_value: {
819
- # target_entity_id: "EntityId",
820
- # target_component_name: "Name",
821
- # },
822
- # expression: "Expression",
823
- # },
824
- # ],
825
- # unit_of_measure: "String",
826
- # relationship: {
827
- # target_component_type_id: "ComponentTypeId",
828
- # relationship_type: "String",
829
- # },
830
- # },
831
- # is_required_in_entity: false,
832
- # is_external_id: false,
833
- # is_stored_externally: false,
834
- # is_time_series: false,
835
- # default_value: {
836
- # boolean_value: false,
837
- # double_value: 1.0,
838
- # integer_value: 1,
839
- # long_value: 1,
840
- # string_value: "String",
841
- # list_value: [
842
- # {
843
- # # recursive DataValue
844
- # },
845
- # ],
846
- # map_value: {
847
- # "String" => {
848
- # # recursive DataValue
849
- # },
850
- # },
851
- # relationship_value: {
852
- # target_entity_id: "EntityId",
853
- # target_component_name: "Name",
854
- # },
855
- # expression: "Expression",
856
- # },
857
- # configuration: {
858
- # "Name" => "Value",
859
- # },
860
- # },
861
- # value: {
862
- # boolean_value: false,
863
- # double_value: 1.0,
864
- # integer_value: 1,
865
- # long_value: 1,
866
- # string_value: "String",
867
- # list_value: [
868
- # {
869
- # # recursive DataValue
870
- # },
871
- # ],
872
- # map_value: {
873
- # "String" => {
874
- # # recursive DataValue
875
- # },
876
- # },
877
- # relationship_value: {
878
- # target_entity_id: "EntityId",
879
- # target_component_name: "Name",
880
- # },
881
- # expression: "Expression",
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
891
- # },
892
- # },
893
- # },
894
- # },
895
- # parent_entity_id: "ParentEntityId",
896
- # tags: {
897
- # "TagKey" => "TagValue",
898
- # },
899
- # }
900
- #
901
432
  # @!attribute [rw] workspace_id
902
433
  # The ID of the workspace that contains the entity.
903
434
  # @return [String]
@@ -964,20 +495,6 @@ module Aws::IoTTwinMaker
964
495
  include Aws::Structure
965
496
  end
966
497
 
967
- # @note When making an API call, you may pass CreateSceneRequest
968
- # data as a hash:
969
- #
970
- # {
971
- # workspace_id: "Id", # required
972
- # scene_id: "Id", # required
973
- # content_location: "S3Url", # required
974
- # description: "Description",
975
- # capabilities: ["SceneCapability"],
976
- # tags: {
977
- # "TagKey" => "TagValue",
978
- # },
979
- # }
980
- #
981
498
  # @!attribute [rw] workspace_id
982
499
  # The ID of the workspace that contains the scene.
983
500
  # @return [String]
@@ -1029,19 +546,57 @@ module Aws::IoTTwinMaker
1029
546
  include Aws::Structure
1030
547
  end
1031
548
 
1032
- # @note When making an API call, you may pass CreateWorkspaceRequest
1033
- # data as a hash:
549
+ # @!attribute [rw] workspace_id
550
+ # The workspace Id.
551
+ # @return [String]
552
+ #
553
+ # @!attribute [rw] sync_source
554
+ # The sync source.
555
+ #
556
+ # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
557
+ #
558
+ # </note>
559
+ # @return [String]
560
+ #
561
+ # @!attribute [rw] sync_role
562
+ # The SyncJob IAM role. This IAM role is used by the sync job to read
563
+ # from the syncSource, and create, update or delete the corresponding
564
+ # resources.
565
+ # @return [String]
566
+ #
567
+ # @!attribute [rw] tags
568
+ # The SyncJob tags.
569
+ # @return [Hash<String,String>]
570
+ #
571
+ class CreateSyncJobRequest < Struct.new(
572
+ :workspace_id,
573
+ :sync_source,
574
+ :sync_role,
575
+ :tags)
576
+ SENSITIVE = []
577
+ include Aws::Structure
578
+ end
579
+
580
+ # @!attribute [rw] arn
581
+ # The SyncJob ARN.
582
+ # @return [String]
1034
583
  #
1035
- # {
1036
- # workspace_id: "Id", # required
1037
- # description: "Description",
1038
- # s3_location: "S3Location", # required
1039
- # role: "RoleArn", # required
1040
- # tags: {
1041
- # "TagKey" => "TagValue",
1042
- # },
1043
- # }
584
+ # @!attribute [rw] creation_date_time
585
+ # The date and time for the SyncJob creation.
586
+ # @return [Time]
587
+ #
588
+ # @!attribute [rw] state
589
+ # The SyncJob response state.
590
+ # @return [String]
1044
591
  #
592
+ class CreateSyncJobResponse < Struct.new(
593
+ :arn,
594
+ :creation_date_time,
595
+ :state)
596
+ SENSITIVE = []
597
+ include Aws::Structure
598
+ end
599
+
1045
600
  # @!attribute [rw] workspace_id
1046
601
  # The ID of the workspace.
1047
602
  # @return [String]
@@ -1090,16 +645,6 @@ module Aws::IoTTwinMaker
1090
645
 
1091
646
  # The data connector.
1092
647
  #
1093
- # @note When making an API call, you may pass DataConnector
1094
- # data as a hash:
1095
- #
1096
- # {
1097
- # lambda: {
1098
- # arn: "LambdaArn", # required
1099
- # },
1100
- # is_native: false,
1101
- # }
1102
- #
1103
648
  # @!attribute [rw] lambda
1104
649
  # The Lambda function associated with this data connector.
1105
650
  # @return [Types::LambdaFunction]
@@ -1118,73 +663,6 @@ module Aws::IoTTwinMaker
1118
663
 
1119
664
  # An object that specifies the data type of a property.
1120
665
  #
1121
- # @note When making an API call, you may pass DataType
1122
- # data as a hash:
1123
- #
1124
- # {
1125
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
1126
- # nested_type: {
1127
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
1128
- # nested_type: {
1129
- # # recursive DataType
1130
- # },
1131
- # allowed_values: [
1132
- # {
1133
- # boolean_value: false,
1134
- # double_value: 1.0,
1135
- # integer_value: 1,
1136
- # long_value: 1,
1137
- # string_value: "String",
1138
- # list_value: {
1139
- # # recursive DataValueList
1140
- # },
1141
- # map_value: {
1142
- # "String" => {
1143
- # # recursive DataValue
1144
- # },
1145
- # },
1146
- # relationship_value: {
1147
- # target_entity_id: "EntityId",
1148
- # target_component_name: "Name",
1149
- # },
1150
- # expression: "Expression",
1151
- # },
1152
- # ],
1153
- # unit_of_measure: "String",
1154
- # relationship: {
1155
- # target_component_type_id: "ComponentTypeId",
1156
- # relationship_type: "String",
1157
- # },
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",
1182
- # relationship: {
1183
- # target_component_type_id: "ComponentTypeId",
1184
- # relationship_type: "String",
1185
- # },
1186
- # }
1187
- #
1188
666
  # @!attribute [rw] type
1189
667
  # The underlying type of the data type.
1190
668
  # @return [String]
@@ -1217,66 +695,6 @@ module Aws::IoTTwinMaker
1217
695
 
1218
696
  # An object that specifies a value for a property.
1219
697
  #
1220
- # @note When making an API call, you may pass DataValue
1221
- # data as a hash:
1222
- #
1223
- # {
1224
- # boolean_value: false,
1225
- # double_value: 1.0,
1226
- # integer_value: 1,
1227
- # long_value: 1,
1228
- # string_value: "String",
1229
- # list_value: [
1230
- # {
1231
- # boolean_value: false,
1232
- # double_value: 1.0,
1233
- # integer_value: 1,
1234
- # long_value: 1,
1235
- # string_value: "String",
1236
- # list_value: {
1237
- # # recursive DataValueList
1238
- # },
1239
- # map_value: {
1240
- # "String" => {
1241
- # # recursive DataValue
1242
- # },
1243
- # },
1244
- # relationship_value: {
1245
- # target_entity_id: "EntityId",
1246
- # target_component_name: "Name",
1247
- # },
1248
- # expression: "Expression",
1249
- # },
1250
- # ],
1251
- # map_value: {
1252
- # "String" => {
1253
- # boolean_value: false,
1254
- # double_value: 1.0,
1255
- # integer_value: 1,
1256
- # long_value: 1,
1257
- # string_value: "String",
1258
- # list_value: [
1259
- # {
1260
- # # recursive DataValue
1261
- # },
1262
- # ],
1263
- # map_value: {
1264
- # # recursive DataValueMap
1265
- # },
1266
- # relationship_value: {
1267
- # target_entity_id: "EntityId",
1268
- # target_component_name: "Name",
1269
- # },
1270
- # expression: "Expression",
1271
- # },
1272
- # },
1273
- # relationship_value: {
1274
- # target_entity_id: "EntityId",
1275
- # target_component_name: "Name",
1276
- # },
1277
- # expression: "Expression",
1278
- # }
1279
- #
1280
698
  # @!attribute [rw] boolean_value
1281
699
  # A Boolean value.
1282
700
  # @return [Boolean]
@@ -1327,14 +745,6 @@ module Aws::IoTTwinMaker
1327
745
  include Aws::Structure
1328
746
  end
1329
747
 
1330
- # @note When making an API call, you may pass DeleteComponentTypeRequest
1331
- # data as a hash:
1332
- #
1333
- # {
1334
- # workspace_id: "Id", # required
1335
- # component_type_id: "ComponentTypeId", # required
1336
- # }
1337
- #
1338
748
  # @!attribute [rw] workspace_id
1339
749
  # The ID of the workspace that contains the component type.
1340
750
  # @return [String]
@@ -1360,15 +770,6 @@ module Aws::IoTTwinMaker
1360
770
  include Aws::Structure
1361
771
  end
1362
772
 
1363
- # @note When making an API call, you may pass DeleteEntityRequest
1364
- # data as a hash:
1365
- #
1366
- # {
1367
- # workspace_id: "Id", # required
1368
- # entity_id: "EntityId", # required
1369
- # is_recursive: false,
1370
- # }
1371
- #
1372
773
  # @!attribute [rw] workspace_id
1373
774
  # The ID of the workspace that contains the entity to delete.
1374
775
  # @return [String]
@@ -1400,14 +801,6 @@ module Aws::IoTTwinMaker
1400
801
  include Aws::Structure
1401
802
  end
1402
803
 
1403
- # @note When making an API call, you may pass DeleteSceneRequest
1404
- # data as a hash:
1405
- #
1406
- # {
1407
- # workspace_id: "Id", # required
1408
- # scene_id: "Id", # required
1409
- # }
1410
- #
1411
804
  # @!attribute [rw] workspace_id
1412
805
  # The ID of the workspace.
1413
806
  # @return [String]
@@ -1425,13 +818,35 @@ module Aws::IoTTwinMaker
1425
818
 
1426
819
  class DeleteSceneResponse < Aws::EmptyStructure; end
1427
820
 
1428
- # @note When making an API call, you may pass DeleteWorkspaceRequest
1429
- # data as a hash:
821
+ # @!attribute [rw] workspace_id
822
+ # The workspace Id.
823
+ # @return [String]
824
+ #
825
+ # @!attribute [rw] sync_source
826
+ # The sync source.
827
+ #
828
+ # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
829
+ #
830
+ # </note>
831
+ # @return [String]
1430
832
  #
1431
- # {
1432
- # workspace_id: "Id", # required
1433
- # }
833
+ class DeleteSyncJobRequest < Struct.new(
834
+ :workspace_id,
835
+ :sync_source)
836
+ SENSITIVE = []
837
+ include Aws::Structure
838
+ end
839
+
840
+ # @!attribute [rw] state
841
+ # The SyncJob response state.
842
+ # @return [String]
1434
843
  #
844
+ class DeleteSyncJobResponse < Struct.new(
845
+ :state)
846
+ SENSITIVE = []
847
+ include Aws::Structure
848
+ end
849
+
1435
850
  # @!attribute [rw] workspace_id
1436
851
  # The ID of the workspace to delete.
1437
852
  # @return [String]
@@ -1446,18 +861,6 @@ module Aws::IoTTwinMaker
1446
861
 
1447
862
  # An object that uniquely identifies an entity property.
1448
863
  #
1449
- # @note When making an API call, you may pass EntityPropertyReference
1450
- # data as a hash:
1451
- #
1452
- # {
1453
- # component_name: "Name",
1454
- # external_id_property: {
1455
- # "String" => "String",
1456
- # },
1457
- # entity_id: "EntityId",
1458
- # property_name: "Name", # required
1459
- # }
1460
- #
1461
864
  # @!attribute [rw] component_name
1462
865
  # The name of the component.
1463
866
  # @return [String]
@@ -1554,16 +957,6 @@ module Aws::IoTTwinMaker
1554
957
  include Aws::Structure
1555
958
  end
1556
959
 
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
960
  # @!attribute [rw] workspace_id
1568
961
  # The ID of the workspace.
1569
962
  # @return [String]
@@ -1614,20 +1007,6 @@ module Aws::IoTTwinMaker
1614
1007
 
1615
1008
  # The function request body.
1616
1009
  #
1617
- # @note When making an API call, you may pass FunctionRequest
1618
- # data as a hash:
1619
- #
1620
- # {
1621
- # required_properties: ["Name"],
1622
- # scope: "ENTITY", # accepts ENTITY, WORKSPACE
1623
- # implemented_by: {
1624
- # lambda: {
1625
- # arn: "LambdaArn", # required
1626
- # },
1627
- # is_native: false,
1628
- # },
1629
- # }
1630
- #
1631
1010
  # @!attribute [rw] required_properties
1632
1011
  # The required properties of the function.
1633
1012
  # @return [Array<String>]
@@ -1675,14 +1054,6 @@ module Aws::IoTTwinMaker
1675
1054
  include Aws::Structure
1676
1055
  end
1677
1056
 
1678
- # @note When making an API call, you may pass GetComponentTypeRequest
1679
- # data as a hash:
1680
- #
1681
- # {
1682
- # workspace_id: "Id", # required
1683
- # component_type_id: "ComponentTypeId", # required
1684
- # }
1685
- #
1686
1057
  # @!attribute [rw] workspace_id
1687
1058
  # The ID of the workspace that contains the component type.
1688
1059
  # @return [String]
@@ -1764,6 +1135,15 @@ module Aws::IoTTwinMaker
1764
1135
  # Valid Range: Minimum value of 1. Maximum value of 250.
1765
1136
  # @return [Hash<String,Types::PropertyGroupResponse>]
1766
1137
  #
1138
+ # @!attribute [rw] sync_source
1139
+ # The syncSource of the sync job, if this entity was created by a sync
1140
+ # job.
1141
+ # @return [String]
1142
+ #
1143
+ # @!attribute [rw] component_type_name
1144
+ # The component type name.
1145
+ # @return [String]
1146
+ #
1767
1147
  class GetComponentTypeResponse < Struct.new(
1768
1148
  :workspace_id,
1769
1149
  :is_singleton,
@@ -1778,19 +1158,13 @@ module Aws::IoTTwinMaker
1778
1158
  :is_abstract,
1779
1159
  :is_schema_initialized,
1780
1160
  :status,
1781
- :property_groups)
1161
+ :property_groups,
1162
+ :sync_source,
1163
+ :component_type_name)
1782
1164
  SENSITIVE = []
1783
1165
  include Aws::Structure
1784
1166
  end
1785
1167
 
1786
- # @note When making an API call, you may pass GetEntityRequest
1787
- # data as a hash:
1788
- #
1789
- # {
1790
- # workspace_id: "Id", # required
1791
- # entity_id: "EntityId", # required
1792
- # }
1793
- #
1794
1168
  # @!attribute [rw] workspace_id
1795
1169
  # The ID of the workspace.
1796
1170
  # @return [String]
@@ -1852,6 +1226,11 @@ module Aws::IoTTwinMaker
1852
1226
  # The date and time when the entity was last updated.
1853
1227
  # @return [Time]
1854
1228
  #
1229
+ # @!attribute [rw] sync_source
1230
+ # The syncSource of the sync job, if this entity was created by a sync
1231
+ # job.
1232
+ # @return [String]
1233
+ #
1855
1234
  class GetEntityResponse < Struct.new(
1856
1235
  :entity_id,
1857
1236
  :entity_name,
@@ -1863,7 +1242,8 @@ module Aws::IoTTwinMaker
1863
1242
  :parent_entity_id,
1864
1243
  :has_child_entities,
1865
1244
  :creation_date_time,
1866
- :update_date_time)
1245
+ :update_date_time,
1246
+ :sync_source)
1867
1247
  SENSITIVE = []
1868
1248
  include Aws::Structure
1869
1249
  end
@@ -1887,56 +1267,6 @@ module Aws::IoTTwinMaker
1887
1267
  include Aws::Structure
1888
1268
  end
1889
1269
 
1890
- # @note When making an API call, you may pass GetPropertyValueHistoryRequest
1891
- # data as a hash:
1892
- #
1893
- # {
1894
- # workspace_id: "Id", # required
1895
- # entity_id: "EntityId",
1896
- # component_name: "Name",
1897
- # component_type_id: "ComponentTypeId",
1898
- # selected_properties: ["String"], # required
1899
- # property_filters: [
1900
- # {
1901
- # property_name: "String",
1902
- # operator: "String",
1903
- # value: {
1904
- # boolean_value: false,
1905
- # double_value: 1.0,
1906
- # integer_value: 1,
1907
- # long_value: 1,
1908
- # string_value: "String",
1909
- # list_value: [
1910
- # {
1911
- # # recursive DataValue
1912
- # },
1913
- # ],
1914
- # map_value: {
1915
- # "String" => {
1916
- # # recursive DataValue
1917
- # },
1918
- # },
1919
- # relationship_value: {
1920
- # target_entity_id: "EntityId",
1921
- # target_component_name: "Name",
1922
- # },
1923
- # expression: "Expression",
1924
- # },
1925
- # },
1926
- # ],
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
1936
- # start_time: "Time",
1937
- # end_time: "Time",
1938
- # }
1939
- #
1940
1270
  # @!attribute [rw] workspace_id
1941
1271
  # The ID of the workspace.
1942
1272
  # @return [String]
@@ -2047,56 +1377,6 @@ module Aws::IoTTwinMaker
2047
1377
  include Aws::Structure
2048
1378
  end
2049
1379
 
2050
- # @note When making an API call, you may pass GetPropertyValueRequest
2051
- # data as a hash:
2052
- #
2053
- # {
2054
- # component_name: "Name",
2055
- # component_type_id: "ComponentTypeId",
2056
- # entity_id: "EntityId",
2057
- # selected_properties: ["String"], # required
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
- # },
2098
- # }
2099
- #
2100
1380
  # @!attribute [rw] component_name
2101
1381
  # The name of the component whose property values the operation
2102
1382
  # returns.
@@ -2174,14 +1454,6 @@ module Aws::IoTTwinMaker
2174
1454
  include Aws::Structure
2175
1455
  end
2176
1456
 
2177
- # @note When making an API call, you may pass GetSceneRequest
2178
- # data as a hash:
2179
- #
2180
- # {
2181
- # workspace_id: "Id", # required
2182
- # scene_id: "Id", # required
2183
- # }
2184
- #
2185
1457
  # @!attribute [rw] workspace_id
2186
1458
  # The ID of the workspace that contains the scene.
2187
1459
  # @return [String]
@@ -2243,13 +1515,69 @@ module Aws::IoTTwinMaker
2243
1515
  include Aws::Structure
2244
1516
  end
2245
1517
 
2246
- # @note When making an API call, you may pass GetWorkspaceRequest
2247
- # data as a hash:
1518
+ # @!attribute [rw] sync_source
1519
+ # The sync soucre.
1520
+ #
1521
+ # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1522
+ #
1523
+ # </note>
1524
+ # @return [String]
1525
+ #
1526
+ # @!attribute [rw] workspace_id
1527
+ # The workspace Id.
1528
+ # @return [String]
2248
1529
  #
2249
- # {
2250
- # workspace_id: "IdOrArn", # required
2251
- # }
1530
+ class GetSyncJobRequest < Struct.new(
1531
+ :sync_source,
1532
+ :workspace_id)
1533
+ SENSITIVE = []
1534
+ include Aws::Structure
1535
+ end
1536
+
1537
+ # @!attribute [rw] arn
1538
+ # The sync job ARN.
1539
+ # @return [String]
2252
1540
  #
1541
+ # @!attribute [rw] workspace_id
1542
+ # The ID of the workspace that contains the sync job.
1543
+ # @return [String]
1544
+ #
1545
+ # @!attribute [rw] sync_source
1546
+ # The sync soucre.
1547
+ #
1548
+ # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1549
+ #
1550
+ # </note>
1551
+ # @return [String]
1552
+ #
1553
+ # @!attribute [rw] sync_role
1554
+ # The sync IAM role.
1555
+ # @return [String]
1556
+ #
1557
+ # @!attribute [rw] status
1558
+ # The SyncJob response status.
1559
+ # @return [Types::SyncJobStatus]
1560
+ #
1561
+ # @!attribute [rw] creation_date_time
1562
+ # The creation date and time.
1563
+ # @return [Time]
1564
+ #
1565
+ # @!attribute [rw] update_date_time
1566
+ # The update date and time.
1567
+ # @return [Time]
1568
+ #
1569
+ class GetSyncJobResponse < Struct.new(
1570
+ :arn,
1571
+ :workspace_id,
1572
+ :sync_source,
1573
+ :sync_role,
1574
+ :status,
1575
+ :creation_date_time,
1576
+ :update_date_time)
1577
+ SENSITIVE = []
1578
+ include Aws::Structure
1579
+ end
1580
+
2253
1581
  # @!attribute [rw] workspace_id
2254
1582
  # The ID of the workspace.
2255
1583
  # @return [String]
@@ -2314,14 +1642,6 @@ module Aws::IoTTwinMaker
2314
1642
 
2315
1643
  # An object that specifies how to interpolate data in a list.
2316
1644
  #
2317
- # @note When making an API call, you may pass InterpolationParameters
2318
- # data as a hash:
2319
- #
2320
- # {
2321
- # interpolation_type: "LINEAR", # accepts LINEAR
2322
- # interval_in_seconds: 1,
2323
- # }
2324
- #
2325
1645
  # @!attribute [rw] interpolation_type
2326
1646
  # The interpolation type.
2327
1647
  # @return [String]
@@ -2339,13 +1659,6 @@ module Aws::IoTTwinMaker
2339
1659
 
2340
1660
  # The Lambda function.
2341
1661
  #
2342
- # @note When making an API call, you may pass LambdaFunction
2343
- # data as a hash:
2344
- #
2345
- # {
2346
- # arn: "LambdaArn", # required
2347
- # }
2348
- #
2349
1662
  # @!attribute [rw] arn
2350
1663
  # The ARN of the Lambda function.
2351
1664
  # @return [String]
@@ -2392,22 +1705,6 @@ module Aws::IoTTwinMaker
2392
1705
  class Unknown < ListComponentTypesFilter; end
2393
1706
  end
2394
1707
 
2395
- # @note When making an API call, you may pass ListComponentTypesRequest
2396
- # data as a hash:
2397
- #
2398
- # {
2399
- # workspace_id: "Id", # required
2400
- # filters: [
2401
- # {
2402
- # extends_from: "ComponentTypeId",
2403
- # namespace: "String",
2404
- # is_abstract: false,
2405
- # },
2406
- # ],
2407
- # next_token: "NextToken",
2408
- # max_results: 1,
2409
- # }
2410
- #
2411
1708
  # @!attribute [rw] workspace_id
2412
1709
  # The ID of the workspace.
2413
1710
  # @return [String]
@@ -2494,22 +1791,6 @@ module Aws::IoTTwinMaker
2494
1791
  class Unknown < ListEntitiesFilter; end
2495
1792
  end
2496
1793
 
2497
- # @note When making an API call, you may pass ListEntitiesRequest
2498
- # data as a hash:
2499
- #
2500
- # {
2501
- # workspace_id: "Id", # required
2502
- # filters: [
2503
- # {
2504
- # parent_entity_id: "ParentEntityId",
2505
- # component_type_id: "ComponentTypeId",
2506
- # external_id: "String",
2507
- # },
2508
- # ],
2509
- # max_results: 1,
2510
- # next_token: "NextToken",
2511
- # }
2512
- #
2513
1794
  # @!attribute [rw] workspace_id
2514
1795
  # The ID of the workspace.
2515
1796
  # @return [String]
@@ -2557,15 +1838,6 @@ module Aws::IoTTwinMaker
2557
1838
  include Aws::Structure
2558
1839
  end
2559
1840
 
2560
- # @note When making an API call, you may pass ListScenesRequest
2561
- # data as a hash:
2562
- #
2563
- # {
2564
- # workspace_id: "Id", # required
2565
- # max_results: 1,
2566
- # next_token: "NextToken",
2567
- # }
2568
- #
2569
1841
  # @!attribute [rw] workspace_id
2570
1842
  # The ID of the workspace that contains the scenes.
2571
1843
  # @return [String]
@@ -2601,15 +1873,96 @@ module Aws::IoTTwinMaker
2601
1873
  include Aws::Structure
2602
1874
  end
2603
1875
 
2604
- # @note When making an API call, you may pass ListTagsForResourceRequest
2605
- # data as a hash:
1876
+ # @!attribute [rw] workspace_id
1877
+ # The ID of the workspace that contains the sync job.
1878
+ # @return [String]
2606
1879
  #
2607
- # {
2608
- # resource_arn: "TwinMakerArn", # required
2609
- # max_results: 1,
2610
- # next_token: "NextToken",
2611
- # }
1880
+ # @!attribute [rw] max_results
1881
+ # The maximum number of results to return at one time. The default is
1882
+ # 50.
1883
+ #
1884
+ # Valid Range: Minimum value of 0. Maximum value of 200.
1885
+ # @return [Integer]
2612
1886
  #
1887
+ # @!attribute [rw] next_token
1888
+ # The string that specifies the next page of results.
1889
+ # @return [String]
1890
+ #
1891
+ class ListSyncJobsRequest < Struct.new(
1892
+ :workspace_id,
1893
+ :max_results,
1894
+ :next_token)
1895
+ SENSITIVE = []
1896
+ include Aws::Structure
1897
+ end
1898
+
1899
+ # @!attribute [rw] sync_job_summaries
1900
+ # The listed SyncJob summaries.
1901
+ # @return [Array<Types::SyncJobSummary>]
1902
+ #
1903
+ # @!attribute [rw] next_token
1904
+ # The string that specifies the next page of results.
1905
+ # @return [String]
1906
+ #
1907
+ class ListSyncJobsResponse < Struct.new(
1908
+ :sync_job_summaries,
1909
+ :next_token)
1910
+ SENSITIVE = []
1911
+ include Aws::Structure
1912
+ end
1913
+
1914
+ # @!attribute [rw] workspace_id
1915
+ # The ID of the workspace that contains the sync job.
1916
+ # @return [String]
1917
+ #
1918
+ # @!attribute [rw] sync_source
1919
+ # The sync soucre.
1920
+ #
1921
+ # <note markdown="1"> Currently the only supported syncSoucre is `SITEWISE `.
1922
+ #
1923
+ # </note>
1924
+ # @return [String]
1925
+ #
1926
+ # @!attribute [rw] filters
1927
+ # A list of objects that filter the request.
1928
+ # @return [Array<Types::SyncResourceFilter>]
1929
+ #
1930
+ # @!attribute [rw] max_results
1931
+ # The maximum number of results to return at one time. The default is
1932
+ # 50.
1933
+ #
1934
+ # Valid Range: Minimum value of 0. Maximum value of 200.
1935
+ # @return [Integer]
1936
+ #
1937
+ # @!attribute [rw] next_token
1938
+ # The string that specifies the next page of results.
1939
+ # @return [String]
1940
+ #
1941
+ class ListSyncResourcesRequest < Struct.new(
1942
+ :workspace_id,
1943
+ :sync_source,
1944
+ :filters,
1945
+ :max_results,
1946
+ :next_token)
1947
+ SENSITIVE = []
1948
+ include Aws::Structure
1949
+ end
1950
+
1951
+ # @!attribute [rw] sync_resources
1952
+ # The sync resources.
1953
+ # @return [Array<Types::SyncResourceSummary>]
1954
+ #
1955
+ # @!attribute [rw] next_token
1956
+ # The string that specifies the next page of results.
1957
+ # @return [String]
1958
+ #
1959
+ class ListSyncResourcesResponse < Struct.new(
1960
+ :sync_resources,
1961
+ :next_token)
1962
+ SENSITIVE = []
1963
+ include Aws::Structure
1964
+ end
1965
+
2613
1966
  # @!attribute [rw] resource_arn
2614
1967
  # The ARN of the resource.
2615
1968
  # @return [String]
@@ -2648,14 +2001,6 @@ module Aws::IoTTwinMaker
2648
2001
  include Aws::Structure
2649
2002
  end
2650
2003
 
2651
- # @note When making an API call, you may pass ListWorkspacesRequest
2652
- # data as a hash:
2653
- #
2654
- # {
2655
- # max_results: 1,
2656
- # next_token: "NextToken",
2657
- # }
2658
- #
2659
2004
  # @!attribute [rw] max_results
2660
2005
  # The maximum number of results to return at one time. The default is
2661
2006
  # 25.
@@ -2692,14 +2037,6 @@ module Aws::IoTTwinMaker
2692
2037
  # Filter criteria that orders the return output. It can be sorted in
2693
2038
  # ascending or descending order.
2694
2039
  #
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
2040
  # @!attribute [rw] order
2704
2041
  # The set order that filters results.
2705
2042
  # @return [String]
@@ -2717,14 +2054,6 @@ module Aws::IoTTwinMaker
2717
2054
 
2718
2055
  # The parent entity update request.
2719
2056
  #
2720
- # @note When making an API call, you may pass ParentEntityUpdateRequest
2721
- # data as a hash:
2722
- #
2723
- # {
2724
- # update_type: "UPDATE", # required, accepts UPDATE, DELETE
2725
- # parent_entity_id: "ParentEntityId",
2726
- # }
2727
- #
2728
2057
  # @!attribute [rw] update_type
2729
2058
  # The type of the update.
2730
2059
  # @return [String]
@@ -2779,74 +2108,6 @@ module Aws::IoTTwinMaker
2779
2108
 
2780
2109
  # An object that sets information about a property.
2781
2110
  #
2782
- # @note When making an API call, you may pass PropertyDefinitionRequest
2783
- # data as a hash:
2784
- #
2785
- # {
2786
- # data_type: {
2787
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
2788
- # nested_type: {
2789
- # # recursive DataType
2790
- # },
2791
- # allowed_values: [
2792
- # {
2793
- # boolean_value: false,
2794
- # double_value: 1.0,
2795
- # integer_value: 1,
2796
- # long_value: 1,
2797
- # string_value: "String",
2798
- # list_value: {
2799
- # # recursive DataValueList
2800
- # },
2801
- # map_value: {
2802
- # "String" => {
2803
- # # recursive DataValue
2804
- # },
2805
- # },
2806
- # relationship_value: {
2807
- # target_entity_id: "EntityId",
2808
- # target_component_name: "Name",
2809
- # },
2810
- # expression: "Expression",
2811
- # },
2812
- # ],
2813
- # unit_of_measure: "String",
2814
- # relationship: {
2815
- # target_component_type_id: "ComponentTypeId",
2816
- # relationship_type: "String",
2817
- # },
2818
- # },
2819
- # is_required_in_entity: false,
2820
- # is_external_id: false,
2821
- # is_stored_externally: false,
2822
- # is_time_series: false,
2823
- # default_value: {
2824
- # boolean_value: false,
2825
- # double_value: 1.0,
2826
- # integer_value: 1,
2827
- # long_value: 1,
2828
- # string_value: "String",
2829
- # list_value: [
2830
- # {
2831
- # # recursive DataValue
2832
- # },
2833
- # ],
2834
- # map_value: {
2835
- # "String" => {
2836
- # # recursive DataValue
2837
- # },
2838
- # },
2839
- # relationship_value: {
2840
- # target_entity_id: "EntityId",
2841
- # target_component_name: "Name",
2842
- # },
2843
- # expression: "Expression",
2844
- # },
2845
- # configuration: {
2846
- # "Name" => "Value",
2847
- # },
2848
- # }
2849
- #
2850
2111
  # @!attribute [rw] data_type
2851
2112
  # An object that contains information about the data type.
2852
2113
  # @return [Types::DataType]
@@ -2880,6 +2141,10 @@ module Aws::IoTTwinMaker
2880
2141
  # and write to an external source.
2881
2142
  # @return [Hash<String,String>]
2882
2143
  #
2144
+ # @!attribute [rw] display_name
2145
+ # A friendly name for the property.
2146
+ # @return [String]
2147
+ #
2883
2148
  class PropertyDefinitionRequest < Struct.new(
2884
2149
  :data_type,
2885
2150
  :is_required_in_entity,
@@ -2887,7 +2152,8 @@ module Aws::IoTTwinMaker
2887
2152
  :is_stored_externally,
2888
2153
  :is_time_series,
2889
2154
  :default_value,
2890
- :configuration)
2155
+ :configuration,
2156
+ :display_name)
2891
2157
  SENSITIVE = []
2892
2158
  include Aws::Structure
2893
2159
  end
@@ -2943,6 +2209,10 @@ module Aws::IoTTwinMaker
2943
2209
  # property.
2944
2210
  # @return [Hash<String,String>]
2945
2211
  #
2212
+ # @!attribute [rw] display_name
2213
+ # A friendly name for the property.
2214
+ # @return [String]
2215
+ #
2946
2216
  class PropertyDefinitionResponse < Struct.new(
2947
2217
  :data_type,
2948
2218
  :is_time_series,
@@ -2953,43 +2223,14 @@ module Aws::IoTTwinMaker
2953
2223
  :is_final,
2954
2224
  :is_inherited,
2955
2225
  :default_value,
2956
- :configuration)
2226
+ :configuration,
2227
+ :display_name)
2957
2228
  SENSITIVE = []
2958
2229
  include Aws::Structure
2959
2230
  end
2960
2231
 
2961
2232
  # An object that filters items returned by a property request.
2962
2233
  #
2963
- # @note When making an API call, you may pass PropertyFilter
2964
- # data as a hash:
2965
- #
2966
- # {
2967
- # property_name: "String",
2968
- # operator: "String",
2969
- # value: {
2970
- # boolean_value: false,
2971
- # double_value: 1.0,
2972
- # integer_value: 1,
2973
- # long_value: 1,
2974
- # string_value: "String",
2975
- # list_value: [
2976
- # {
2977
- # # recursive DataValue
2978
- # },
2979
- # ],
2980
- # map_value: {
2981
- # "String" => {
2982
- # # recursive DataValue
2983
- # },
2984
- # },
2985
- # relationship_value: {
2986
- # target_entity_id: "EntityId",
2987
- # target_component_name: "Name",
2988
- # },
2989
- # expression: "Expression",
2990
- # },
2991
- # }
2992
- #
2993
2234
  # @!attribute [rw] property_name
2994
2235
  # The property name associated with this property filter.
2995
2236
  # @return [String]
@@ -3010,14 +2251,6 @@ module Aws::IoTTwinMaker
3010
2251
  include Aws::Structure
3011
2252
  end
3012
2253
 
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
2254
  # @!attribute [rw] group_type
3022
2255
  # The group type.
3023
2256
  # @return [String]
@@ -3075,99 +2308,6 @@ module Aws::IoTTwinMaker
3075
2308
 
3076
2309
  # An object that sets information about a property.
3077
2310
  #
3078
- # @note When making an API call, you may pass PropertyRequest
3079
- # data as a hash:
3080
- #
3081
- # {
3082
- # definition: {
3083
- # data_type: {
3084
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
3085
- # nested_type: {
3086
- # # recursive DataType
3087
- # },
3088
- # allowed_values: [
3089
- # {
3090
- # boolean_value: false,
3091
- # double_value: 1.0,
3092
- # integer_value: 1,
3093
- # long_value: 1,
3094
- # string_value: "String",
3095
- # list_value: {
3096
- # # recursive DataValueList
3097
- # },
3098
- # map_value: {
3099
- # "String" => {
3100
- # # recursive DataValue
3101
- # },
3102
- # },
3103
- # relationship_value: {
3104
- # target_entity_id: "EntityId",
3105
- # target_component_name: "Name",
3106
- # },
3107
- # expression: "Expression",
3108
- # },
3109
- # ],
3110
- # unit_of_measure: "String",
3111
- # relationship: {
3112
- # target_component_type_id: "ComponentTypeId",
3113
- # relationship_type: "String",
3114
- # },
3115
- # },
3116
- # is_required_in_entity: false,
3117
- # is_external_id: false,
3118
- # is_stored_externally: false,
3119
- # is_time_series: false,
3120
- # default_value: {
3121
- # boolean_value: false,
3122
- # double_value: 1.0,
3123
- # integer_value: 1,
3124
- # long_value: 1,
3125
- # string_value: "String",
3126
- # list_value: [
3127
- # {
3128
- # # recursive DataValue
3129
- # },
3130
- # ],
3131
- # map_value: {
3132
- # "String" => {
3133
- # # recursive DataValue
3134
- # },
3135
- # },
3136
- # relationship_value: {
3137
- # target_entity_id: "EntityId",
3138
- # target_component_name: "Name",
3139
- # },
3140
- # expression: "Expression",
3141
- # },
3142
- # configuration: {
3143
- # "Name" => "Value",
3144
- # },
3145
- # },
3146
- # value: {
3147
- # boolean_value: false,
3148
- # double_value: 1.0,
3149
- # integer_value: 1,
3150
- # long_value: 1,
3151
- # string_value: "String",
3152
- # list_value: [
3153
- # {
3154
- # # recursive DataValue
3155
- # },
3156
- # ],
3157
- # map_value: {
3158
- # "String" => {
3159
- # # recursive DataValue
3160
- # },
3161
- # },
3162
- # relationship_value: {
3163
- # target_entity_id: "EntityId",
3164
- # target_component_name: "Name",
3165
- # },
3166
- # expression: "Expression",
3167
- # },
3168
- # update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
3169
- # }
3170
- #
3171
2311
  # @!attribute [rw] definition
3172
2312
  # An object that specifies information about a property.
3173
2313
  # @return [Types::PropertyDefinitionRequest]
@@ -3208,36 +2348,6 @@ module Aws::IoTTwinMaker
3208
2348
  # An object that contains information about a value for a time series
3209
2349
  # property.
3210
2350
  #
3211
- # @note When making an API call, you may pass PropertyValue
3212
- # data as a hash:
3213
- #
3214
- # {
3215
- # timestamp: Time.now,
3216
- # value: { # required
3217
- # boolean_value: false,
3218
- # double_value: 1.0,
3219
- # integer_value: 1,
3220
- # long_value: 1,
3221
- # string_value: "String",
3222
- # list_value: [
3223
- # {
3224
- # # recursive DataValue
3225
- # },
3226
- # ],
3227
- # map_value: {
3228
- # "String" => {
3229
- # # recursive DataValue
3230
- # },
3231
- # },
3232
- # relationship_value: {
3233
- # target_entity_id: "EntityId",
3234
- # target_component_name: "Name",
3235
- # },
3236
- # expression: "Expression",
3237
- # },
3238
- # time: "Time",
3239
- # }
3240
- #
3241
2351
  # @!attribute [rw] timestamp
3242
2352
  # The timestamp of a value for a time series property.
3243
2353
  # @return [Time]
@@ -3291,48 +2401,6 @@ module Aws::IoTTwinMaker
3291
2401
  #
3292
2402
  # [1]: https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_BatchPutPropertyValues.html
3293
2403
  #
3294
- # @note When making an API call, you may pass PropertyValueEntry
3295
- # data as a hash:
3296
- #
3297
- # {
3298
- # entity_property_reference: { # required
3299
- # component_name: "Name",
3300
- # external_id_property: {
3301
- # "String" => "String",
3302
- # },
3303
- # entity_id: "EntityId",
3304
- # property_name: "Name", # required
3305
- # },
3306
- # property_values: [
3307
- # {
3308
- # timestamp: Time.now,
3309
- # value: { # required
3310
- # boolean_value: false,
3311
- # double_value: 1.0,
3312
- # integer_value: 1,
3313
- # long_value: 1,
3314
- # string_value: "String",
3315
- # list_value: [
3316
- # {
3317
- # # recursive DataValue
3318
- # },
3319
- # ],
3320
- # map_value: {
3321
- # "String" => {
3322
- # # recursive DataValue
3323
- # },
3324
- # },
3325
- # relationship_value: {
3326
- # target_entity_id: "EntityId",
3327
- # target_component_name: "Name",
3328
- # },
3329
- # expression: "Expression",
3330
- # },
3331
- # time: "Time",
3332
- # },
3333
- # ],
3334
- # }
3335
- #
3336
2404
  # @!attribute [rw] entity_property_reference
3337
2405
  # An object that contains information about the entity that has the
3338
2406
  # property.
@@ -3380,14 +2448,6 @@ module Aws::IoTTwinMaker
3380
2448
 
3381
2449
  # An object that specifies a relationship with another component type.
3382
2450
  #
3383
- # @note When making an API call, you may pass Relationship
3384
- # data as a hash:
3385
- #
3386
- # {
3387
- # target_component_type_id: "ComponentTypeId",
3388
- # relationship_type: "String",
3389
- # }
3390
- #
3391
2451
  # @!attribute [rw] target_component_type_id
3392
2452
  # The ID of the target component type associated with this
3393
2453
  # relationship.
@@ -3406,14 +2466,6 @@ module Aws::IoTTwinMaker
3406
2466
 
3407
2467
  # A value that associates a component and an entity.
3408
2468
  #
3409
- # @note When making an API call, you may pass RelationshipValue
3410
- # data as a hash:
3411
- #
3412
- # {
3413
- # target_entity_id: "EntityId",
3414
- # target_component_name: "Name",
3415
- # }
3416
- #
3417
2469
  # @!attribute [rw] target_entity_id
3418
2470
  # The ID of the target entity associated with this relationship value.
3419
2471
  # @return [String]
@@ -3521,47 +2573,147 @@ module Aws::IoTTwinMaker
3521
2573
  include Aws::Structure
3522
2574
  end
3523
2575
 
3524
- # The tabular conditions.
2576
+ # The SyncJob status.
2577
+ #
2578
+ # @!attribute [rw] state
2579
+ # The SyncJob status state.
2580
+ # @return [String]
2581
+ #
2582
+ # @!attribute [rw] error
2583
+ # The SyncJob error.
2584
+ # @return [Types::ErrorDetails]
2585
+ #
2586
+ class SyncJobStatus < Struct.new(
2587
+ :state,
2588
+ :error)
2589
+ SENSITIVE = []
2590
+ include Aws::Structure
2591
+ end
2592
+
2593
+ # The SyncJob summary.
2594
+ #
2595
+ # @!attribute [rw] arn
2596
+ # The SyncJob summary ARN.
2597
+ # @return [String]
2598
+ #
2599
+ # @!attribute [rw] workspace_id
2600
+ # The ID of the workspace that contains the sync job.
2601
+ # @return [String]
2602
+ #
2603
+ # @!attribute [rw] sync_source
2604
+ # The sync source.
2605
+ # @return [String]
2606
+ #
2607
+ # @!attribute [rw] status
2608
+ # The SyncJob summaries status.
2609
+ # @return [Types::SyncJobStatus]
3525
2610
  #
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
- # }
2611
+ # @!attribute [rw] creation_date_time
2612
+ # The creation date and time.
2613
+ # @return [Time]
2614
+ #
2615
+ # @!attribute [rw] update_date_time
2616
+ # The update date and time.
2617
+ # @return [Time]
2618
+ #
2619
+ class SyncJobSummary < Struct.new(
2620
+ :arn,
2621
+ :workspace_id,
2622
+ :sync_source,
2623
+ :status,
2624
+ :creation_date_time,
2625
+ :update_date_time)
2626
+ SENSITIVE = []
2627
+ include Aws::Structure
2628
+ end
2629
+
2630
+ # The sync resource filter.
2631
+ #
2632
+ # @note SyncResourceFilter is a union - when making an API calls you must set exactly one of the members.
2633
+ #
2634
+ # @!attribute [rw] state
2635
+ # The sync resource filter's state.
2636
+ # @return [String]
2637
+ #
2638
+ # @!attribute [rw] resource_type
2639
+ # The sync resource filter resoucre type
2640
+ # @return [String]
2641
+ #
2642
+ # @!attribute [rw] resource_id
2643
+ # The sync resource filter resource Id.
2644
+ # @return [String]
2645
+ #
2646
+ # @!attribute [rw] external_id
2647
+ # The external Id.
2648
+ # @return [String]
2649
+ #
2650
+ class SyncResourceFilter < Struct.new(
2651
+ :state,
2652
+ :resource_type,
2653
+ :resource_id,
2654
+ :external_id,
2655
+ :unknown)
2656
+ SENSITIVE = []
2657
+ include Aws::Structure
2658
+ include Aws::Structure::Union
2659
+
2660
+ class State < SyncResourceFilter; end
2661
+ class ResourceType < SyncResourceFilter; end
2662
+ class ResourceId < SyncResourceFilter; end
2663
+ class ExternalId < SyncResourceFilter; end
2664
+ class Unknown < SyncResourceFilter; end
2665
+ end
2666
+
2667
+ # The sync resource status.
2668
+ #
2669
+ # @!attribute [rw] state
2670
+ # The sync resource status state.
2671
+ # @return [String]
2672
+ #
2673
+ # @!attribute [rw] error
2674
+ # The status error.
2675
+ # @return [Types::ErrorDetails]
2676
+ #
2677
+ class SyncResourceStatus < Struct.new(
2678
+ :state,
2679
+ :error)
2680
+ SENSITIVE = []
2681
+ include Aws::Structure
2682
+ end
2683
+
2684
+ # The sync resource summary.
2685
+ #
2686
+ # @!attribute [rw] resource_type
2687
+ # The resource type.
2688
+ # @return [String]
2689
+ #
2690
+ # @!attribute [rw] external_id
2691
+ # The external Id.
2692
+ # @return [String]
2693
+ #
2694
+ # @!attribute [rw] resource_id
2695
+ # The resource Id.
2696
+ # @return [String]
2697
+ #
2698
+ # @!attribute [rw] status
2699
+ # The sync resource summary status.
2700
+ # @return [Types::SyncResourceStatus]
2701
+ #
2702
+ # @!attribute [rw] update_date_time
2703
+ # The update date and time.
2704
+ # @return [Time]
2705
+ #
2706
+ class SyncResourceSummary < Struct.new(
2707
+ :resource_type,
2708
+ :external_id,
2709
+ :resource_id,
2710
+ :status,
2711
+ :update_date_time)
2712
+ SENSITIVE = []
2713
+ include Aws::Structure
2714
+ end
2715
+
2716
+ # The tabular conditions.
3565
2717
  #
3566
2718
  # @!attribute [rw] order_by
3567
2719
  # Filter criteria that orders the output. It can be sorted in
@@ -3582,16 +2734,6 @@ module Aws::IoTTwinMaker
3582
2734
  include Aws::Structure
3583
2735
  end
3584
2736
 
3585
- # @note When making an API call, you may pass TagResourceRequest
3586
- # data as a hash:
3587
- #
3588
- # {
3589
- # resource_arn: "TwinMakerArn", # required
3590
- # tags: { # required
3591
- # "TagKey" => "TagValue",
3592
- # },
3593
- # }
3594
- #
3595
2737
  # @!attribute [rw] resource_arn
3596
2738
  # The ARN of the resource.
3597
2739
  # @return [String]
@@ -3631,14 +2773,6 @@ module Aws::IoTTwinMaker
3631
2773
  include Aws::Structure
3632
2774
  end
3633
2775
 
3634
- # @note When making an API call, you may pass UntagResourceRequest
3635
- # data as a hash:
3636
- #
3637
- # {
3638
- # resource_arn: "TwinMakerArn", # required
3639
- # tag_keys: ["TagKey"], # required
3640
- # }
3641
- #
3642
2776
  # @!attribute [rw] resource_arn
3643
2777
  # The ARN of the resource.
3644
2778
  # @return [String]
@@ -3658,103 +2792,8 @@ module Aws::IoTTwinMaker
3658
2792
 
3659
2793
  class UntagResourceResponse < Aws::EmptyStructure; end
3660
2794
 
3661
- # @note When making an API call, you may pass UpdateComponentTypeRequest
3662
- # data as a hash:
3663
- #
3664
- # {
3665
- # workspace_id: "Id", # required
3666
- # is_singleton: false,
3667
- # component_type_id: "ComponentTypeId", # required
3668
- # description: "Description",
3669
- # property_definitions: {
3670
- # "Name" => {
3671
- # data_type: {
3672
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
3673
- # nested_type: {
3674
- # # recursive DataType
3675
- # },
3676
- # allowed_values: [
3677
- # {
3678
- # boolean_value: false,
3679
- # double_value: 1.0,
3680
- # integer_value: 1,
3681
- # long_value: 1,
3682
- # string_value: "String",
3683
- # list_value: {
3684
- # # recursive DataValueList
3685
- # },
3686
- # map_value: {
3687
- # "String" => {
3688
- # # recursive DataValue
3689
- # },
3690
- # },
3691
- # relationship_value: {
3692
- # target_entity_id: "EntityId",
3693
- # target_component_name: "Name",
3694
- # },
3695
- # expression: "Expression",
3696
- # },
3697
- # ],
3698
- # unit_of_measure: "String",
3699
- # relationship: {
3700
- # target_component_type_id: "ComponentTypeId",
3701
- # relationship_type: "String",
3702
- # },
3703
- # },
3704
- # is_required_in_entity: false,
3705
- # is_external_id: false,
3706
- # is_stored_externally: false,
3707
- # is_time_series: false,
3708
- # default_value: {
3709
- # boolean_value: false,
3710
- # double_value: 1.0,
3711
- # integer_value: 1,
3712
- # long_value: 1,
3713
- # string_value: "String",
3714
- # list_value: [
3715
- # {
3716
- # # recursive DataValue
3717
- # },
3718
- # ],
3719
- # map_value: {
3720
- # "String" => {
3721
- # # recursive DataValue
3722
- # },
3723
- # },
3724
- # relationship_value: {
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
3743
- # },
3744
- # is_native: false,
3745
- # },
3746
- # },
3747
- # },
3748
- # property_groups: {
3749
- # "Name" => {
3750
- # group_type: "TABULAR", # accepts TABULAR
3751
- # property_names: ["Name"],
3752
- # },
3753
- # },
3754
- # }
3755
- #
3756
2795
  # @!attribute [rw] workspace_id
3757
- # The ID of the workspace that contains the component type.
2796
+ # The ID of the workspace.
3758
2797
  # @return [String]
3759
2798
  #
3760
2799
  # @!attribute [rw] is_singleton
@@ -3789,6 +2828,10 @@ module Aws::IoTTwinMaker
3789
2828
  # The property groups
3790
2829
  # @return [Hash<String,Types::PropertyGroupRequest>]
3791
2830
  #
2831
+ # @!attribute [rw] component_type_name
2832
+ # The component type name.
2833
+ # @return [String]
2834
+ #
3792
2835
  class UpdateComponentTypeRequest < Struct.new(
3793
2836
  :workspace_id,
3794
2837
  :is_singleton,
@@ -3797,7 +2840,8 @@ module Aws::IoTTwinMaker
3797
2840
  :property_definitions,
3798
2841
  :extends_from,
3799
2842
  :functions,
3800
- :property_groups)
2843
+ :property_groups,
2844
+ :component_type_name)
3801
2845
  SENSITIVE = []
3802
2846
  include Aws::Structure
3803
2847
  end
@@ -3827,125 +2871,6 @@ module Aws::IoTTwinMaker
3827
2871
  include Aws::Structure
3828
2872
  end
3829
2873
 
3830
- # @note When making an API call, you may pass UpdateEntityRequest
3831
- # data as a hash:
3832
- #
3833
- # {
3834
- # workspace_id: "Id", # required
3835
- # entity_id: "EntityId", # required
3836
- # entity_name: "EntityName",
3837
- # description: "Description",
3838
- # component_updates: {
3839
- # "Name" => {
3840
- # update_type: "CREATE", # accepts CREATE, UPDATE, DELETE
3841
- # description: "Description",
3842
- # component_type_id: "ComponentTypeId",
3843
- # property_updates: {
3844
- # "Name" => {
3845
- # definition: {
3846
- # data_type: {
3847
- # type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
3848
- # nested_type: {
3849
- # # recursive DataType
3850
- # },
3851
- # allowed_values: [
3852
- # {
3853
- # boolean_value: false,
3854
- # double_value: 1.0,
3855
- # integer_value: 1,
3856
- # long_value: 1,
3857
- # string_value: "String",
3858
- # list_value: {
3859
- # # recursive DataValueList
3860
- # },
3861
- # map_value: {
3862
- # "String" => {
3863
- # # recursive DataValue
3864
- # },
3865
- # },
3866
- # relationship_value: {
3867
- # target_entity_id: "EntityId",
3868
- # target_component_name: "Name",
3869
- # },
3870
- # expression: "Expression",
3871
- # },
3872
- # ],
3873
- # unit_of_measure: "String",
3874
- # relationship: {
3875
- # target_component_type_id: "ComponentTypeId",
3876
- # relationship_type: "String",
3877
- # },
3878
- # },
3879
- # is_required_in_entity: false,
3880
- # is_external_id: false,
3881
- # is_stored_externally: false,
3882
- # is_time_series: false,
3883
- # default_value: {
3884
- # boolean_value: false,
3885
- # double_value: 1.0,
3886
- # integer_value: 1,
3887
- # long_value: 1,
3888
- # string_value: "String",
3889
- # list_value: [
3890
- # {
3891
- # # recursive DataValue
3892
- # },
3893
- # ],
3894
- # map_value: {
3895
- # "String" => {
3896
- # # recursive DataValue
3897
- # },
3898
- # },
3899
- # relationship_value: {
3900
- # target_entity_id: "EntityId",
3901
- # target_component_name: "Name",
3902
- # },
3903
- # expression: "Expression",
3904
- # },
3905
- # configuration: {
3906
- # "Name" => "Value",
3907
- # },
3908
- # },
3909
- # value: {
3910
- # boolean_value: false,
3911
- # double_value: 1.0,
3912
- # integer_value: 1,
3913
- # long_value: 1,
3914
- # string_value: "String",
3915
- # list_value: [
3916
- # {
3917
- # # recursive DataValue
3918
- # },
3919
- # ],
3920
- # map_value: {
3921
- # "String" => {
3922
- # # recursive DataValue
3923
- # },
3924
- # },
3925
- # relationship_value: {
3926
- # target_entity_id: "EntityId",
3927
- # target_component_name: "Name",
3928
- # },
3929
- # expression: "Expression",
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
3939
- # },
3940
- # },
3941
- # },
3942
- # },
3943
- # parent_entity_update: {
3944
- # update_type: "UPDATE", # required, accepts UPDATE, DELETE
3945
- # parent_entity_id: "ParentEntityId",
3946
- # },
3947
- # }
3948
- #
3949
2874
  # @!attribute [rw] workspace_id
3950
2875
  # The ID of the workspace that contains the entity.
3951
2876
  # @return [String]
@@ -3997,14 +2922,6 @@ module Aws::IoTTwinMaker
3997
2922
  include Aws::Structure
3998
2923
  end
3999
2924
 
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
2925
  # @!attribute [rw] pricing_mode
4009
2926
  # The pricing mode.
4010
2927
  # @return [String]
@@ -4035,17 +2952,6 @@ module Aws::IoTTwinMaker
4035
2952
  include Aws::Structure
4036
2953
  end
4037
2954
 
4038
- # @note When making an API call, you may pass UpdateSceneRequest
4039
- # data as a hash:
4040
- #
4041
- # {
4042
- # workspace_id: "Id", # required
4043
- # scene_id: "Id", # required
4044
- # content_location: "S3Url",
4045
- # description: "Description",
4046
- # capabilities: ["SceneCapability"],
4047
- # }
4048
- #
4049
2955
  # @!attribute [rw] workspace_id
4050
2956
  # The ID of the workspace that contains the scene.
4051
2957
  # @return [String]
@@ -4087,15 +2993,6 @@ module Aws::IoTTwinMaker
4087
2993
  include Aws::Structure
4088
2994
  end
4089
2995
 
4090
- # @note When making an API call, you may pass UpdateWorkspaceRequest
4091
- # data as a hash:
4092
- #
4093
- # {
4094
- # workspace_id: "Id", # required
4095
- # description: "Description",
4096
- # role: "RoleArn",
4097
- # }
4098
- #
4099
2996
  # @!attribute [rw] workspace_id
4100
2997
  # The ID of the workspace.
4101
2998
  # @return [String]