cdk-docker-image-deployment 0.0.74 → 0.0.75

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.
Files changed (41) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +17 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +20 -17
  8. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +81 -49
  9. package/node_modules/aws-sdk/apis/eks-2017-11-01.min.json +59 -47
  10. package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +65 -50
  11. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +691 -409
  12. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.paginators.json +10 -0
  13. package/node_modules/aws-sdk/apis/personalize-events-2018-03-22.min.json +36 -8
  14. package/node_modules/aws-sdk/apis/proton-2020-07-20.min.json +13 -1
  15. package/node_modules/aws-sdk/apis/rds-2014-10-31.min.json +19 -5
  16. package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +305 -227
  17. package/node_modules/aws-sdk/apis/ssm-2014-11-06.paginators.json +6 -0
  18. package/node_modules/aws-sdk/apis/ssm-incidents-2018-05-10.min.json +73 -21
  19. package/node_modules/aws-sdk/apis/xray-2016-04-12.min.json +139 -58
  20. package/node_modules/aws-sdk/apis/xray-2016-04-12.paginators.json +25 -0
  21. package/node_modules/aws-sdk/clients/batch.d.ts +6 -6
  22. package/node_modules/aws-sdk/clients/billingconductor.d.ts +14 -1
  23. package/node_modules/aws-sdk/clients/cloudformation.d.ts +1 -1
  24. package/node_modules/aws-sdk/clients/comprehendmedical.d.ts +6 -6
  25. package/node_modules/aws-sdk/clients/connect.d.ts +46 -4
  26. package/node_modules/aws-sdk/clients/eks.d.ts +26 -6
  27. package/node_modules/aws-sdk/clients/elasticache.d.ts +20 -1
  28. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +672 -386
  29. package/node_modules/aws-sdk/clients/personalizeevents.d.ts +13 -2
  30. package/node_modules/aws-sdk/clients/proton.d.ts +50 -23
  31. package/node_modules/aws-sdk/clients/rds.d.ts +32 -0
  32. package/node_modules/aws-sdk/clients/ssm.d.ts +140 -6
  33. package/node_modules/aws-sdk/clients/ssmincidents.d.ts +62 -0
  34. package/node_modules/aws-sdk/clients/xray.d.ts +101 -2
  35. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  36. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +15 -15
  37. package/node_modules/aws-sdk/dist/aws-sdk.js +679 -400
  38. package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
  39. package/node_modules/aws-sdk/lib/core.js +1 -1
  40. package/node_modules/aws-sdk/package.json +1 -1
  41. package/package.json +4 -4
@@ -83,6 +83,14 @@ declare class IoTTwinMaker extends Service {
83
83
  * Deletes a workspace.
84
84
  */
85
85
  deleteWorkspace(callback?: (err: AWSError, data: IoTTwinMaker.Types.DeleteWorkspaceResponse) => void): Request<IoTTwinMaker.Types.DeleteWorkspaceResponse, AWSError>;
86
+ /**
87
+ * Run queries to access information from your knowledge graph of entities within individual workspaces.
88
+ */
89
+ executeQuery(params: IoTTwinMaker.Types.ExecuteQueryRequest, callback?: (err: AWSError, data: IoTTwinMaker.Types.ExecuteQueryResponse) => void): Request<IoTTwinMaker.Types.ExecuteQueryResponse, AWSError>;
90
+ /**
91
+ * Run queries to access information from your knowledge graph of entities within individual workspaces.
92
+ */
93
+ executeQuery(callback?: (err: AWSError, data: IoTTwinMaker.Types.ExecuteQueryResponse) => void): Request<IoTTwinMaker.Types.ExecuteQueryResponse, AWSError>;
86
94
  /**
87
95
  * Retrieves information about a component type.
88
96
  */
@@ -99,6 +107,14 @@ declare class IoTTwinMaker extends Service {
99
107
  * Retrieves information about an entity.
100
108
  */
101
109
  getEntity(callback?: (err: AWSError, data: IoTTwinMaker.Types.GetEntityResponse) => void): Request<IoTTwinMaker.Types.GetEntityResponse, AWSError>;
110
+ /**
111
+ * Gets the pricing plan.
112
+ */
113
+ getPricingPlan(params: IoTTwinMaker.Types.GetPricingPlanRequest, callback?: (err: AWSError, data: IoTTwinMaker.Types.GetPricingPlanResponse) => void): Request<IoTTwinMaker.Types.GetPricingPlanResponse, AWSError>;
114
+ /**
115
+ * Gets the pricing plan.
116
+ */
117
+ getPricingPlan(callback?: (err: AWSError, data: IoTTwinMaker.Types.GetPricingPlanResponse) => void): Request<IoTTwinMaker.Types.GetPricingPlanResponse, AWSError>;
102
118
  /**
103
119
  * Gets the property values for a component, component type, entity, or workspace. You must specify a value for either componentName, componentTypeId, entityId, or workspaceId.
104
120
  */
@@ -203,6 +219,14 @@ declare class IoTTwinMaker extends Service {
203
219
  * Updates an entity.
204
220
  */
205
221
  updateEntity(callback?: (err: AWSError, data: IoTTwinMaker.Types.UpdateEntityResponse) => void): Request<IoTTwinMaker.Types.UpdateEntityResponse, AWSError>;
222
+ /**
223
+ * Update the pricing plan.
224
+ */
225
+ updatePricingPlan(params: IoTTwinMaker.Types.UpdatePricingPlanRequest, callback?: (err: AWSError, data: IoTTwinMaker.Types.UpdatePricingPlanResponse) => void): Request<IoTTwinMaker.Types.UpdatePricingPlanResponse, AWSError>;
226
+ /**
227
+ * Update the pricing plan.
228
+ */
229
+ updatePricingPlan(callback?: (err: AWSError, data: IoTTwinMaker.Types.UpdatePricingPlanResponse) => void): Request<IoTTwinMaker.Types.UpdatePricingPlanResponse, AWSError>;
206
230
  /**
207
231
  * Updates a scene.
208
232
  */
@@ -222,10 +246,6 @@ declare class IoTTwinMaker extends Service {
222
246
  }
223
247
  declare namespace IoTTwinMaker {
224
248
  export interface BatchPutPropertyError {
225
- /**
226
- * An object that contains information about errors returned by the BatchPutProperty action.
227
- */
228
- entry: PropertyValueEntry;
229
249
  /**
230
250
  * The error code.
231
251
  */
@@ -234,6 +254,10 @@ declare namespace IoTTwinMaker {
234
254
  * The error message.
235
255
  */
236
256
  errorMessage: String;
257
+ /**
258
+ * An object that contains information about errors returned by the BatchPutProperty action.
259
+ */
260
+ entry: PropertyValueEntry;
237
261
  }
238
262
  export interface BatchPutPropertyErrorEntry {
239
263
  /**
@@ -242,14 +266,14 @@ declare namespace IoTTwinMaker {
242
266
  errors: Errors;
243
267
  }
244
268
  export interface BatchPutPropertyValuesRequest {
245
- /**
246
- * An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
247
- */
248
- entries: Entries;
249
269
  /**
250
270
  * The ID of the workspace that contains the properties to set.
251
271
  */
252
272
  workspaceId: Id;
273
+ /**
274
+ * An object that maps strings to the property value entries to set. Each string in the mapping must be unique to this object.
275
+ */
276
+ entries: Entries;
253
277
  }
254
278
  export interface BatchPutPropertyValuesResponse {
255
279
  /**
@@ -258,45 +282,107 @@ declare namespace IoTTwinMaker {
258
282
  errorEntries: ErrorEntries;
259
283
  }
260
284
  export type Boolean = boolean;
261
- export interface ComponentRequest {
285
+ export interface BundleInformation {
262
286
  /**
263
- * The ID of the component type.
287
+ * The bundle names.
264
288
  */
265
- componentTypeId?: ComponentTypeId;
289
+ bundleNames: PricingBundles;
290
+ /**
291
+ * The pricing tier.
292
+ */
293
+ pricingTier?: PricingTier;
294
+ }
295
+ export type BundleName = string;
296
+ export interface ColumnDescription {
297
+ /**
298
+ * The name of the column description.
299
+ */
300
+ name?: ColumnName;
301
+ /**
302
+ * The type of the column description.
303
+ */
304
+ type?: ColumnType;
305
+ }
306
+ export type ColumnDescriptions = ColumnDescription[];
307
+ export type ColumnName = string;
308
+ export type ColumnType = "NODE"|"EDGE"|"VALUE"|string;
309
+ export interface ComponentPropertyGroupRequest {
310
+ /**
311
+ * The group type.
312
+ */
313
+ groupType?: GroupType;
314
+ /**
315
+ * The property names.
316
+ */
317
+ propertyNames?: PropertyNames;
318
+ /**
319
+ * The update type.
320
+ */
321
+ updateType?: PropertyGroupUpdateType;
322
+ }
323
+ export type ComponentPropertyGroupRequests = {[key: string]: ComponentPropertyGroupRequest};
324
+ export interface ComponentPropertyGroupResponse {
325
+ /**
326
+ * The group type.
327
+ */
328
+ groupType: GroupType;
329
+ /**
330
+ * The names of properties
331
+ */
332
+ propertyNames: PropertyNames;
333
+ /**
334
+ * A Boolean value that specifies whether the property group is inherited from a parent entity
335
+ */
336
+ isInherited: Boolean;
337
+ }
338
+ export type ComponentPropertyGroupResponses = {[key: string]: ComponentPropertyGroupResponse};
339
+ export interface ComponentRequest {
266
340
  /**
267
341
  * The description of the component request.
268
342
  */
269
343
  description?: Description;
344
+ /**
345
+ * The ID of the component type.
346
+ */
347
+ componentTypeId?: ComponentTypeId;
270
348
  /**
271
349
  * An object that maps strings to the properties to set in the component type. Each string in the mapping must be unique to this object.
272
350
  */
273
351
  properties?: PropertyRequests;
352
+ /**
353
+ * The property groups.
354
+ */
355
+ propertyGroups?: ComponentPropertyGroupRequests;
274
356
  }
275
357
  export interface ComponentResponse {
276
358
  /**
277
359
  * The name of the component.
278
360
  */
279
361
  componentName?: Name;
362
+ /**
363
+ * The description of the component type.
364
+ */
365
+ description?: Description;
280
366
  /**
281
367
  * The ID of the component type.
282
368
  */
283
369
  componentTypeId?: ComponentTypeId;
284
370
  /**
285
- * The name of the property definition set in the request.
371
+ * The status of the component type.
286
372
  */
287
- definedIn?: String;
373
+ status?: Status;
288
374
  /**
289
- * The description of the component type.
375
+ * The name of the property definition set in the request.
290
376
  */
291
- description?: Description;
377
+ definedIn?: String;
292
378
  /**
293
379
  * An object that maps strings to the properties to set in the component type. Each string in the mapping must be unique to this object.
294
380
  */
295
381
  properties?: PropertyResponses;
296
382
  /**
297
- * The status of the component type.
383
+ * The property groups.
298
384
  */
299
- status?: Status;
385
+ propertyGroups?: ComponentPropertyGroupResponses;
300
386
  }
301
387
  export type ComponentTypeId = string;
302
388
  export type ComponentTypeSummaries = ComponentTypeSummary[];
@@ -313,6 +399,10 @@ declare namespace IoTTwinMaker {
313
399
  * The date and time when the component type was created.
314
400
  */
315
401
  creationDateTime: Timestamp;
402
+ /**
403
+ * The date and time when the component type was last updated.
404
+ */
405
+ updateDateTime: Timestamp;
316
406
  /**
317
407
  * The description of the component type.
318
408
  */
@@ -321,28 +411,28 @@ declare namespace IoTTwinMaker {
321
411
  * The current status of the component type.
322
412
  */
323
413
  status?: Status;
324
- /**
325
- * The date and time when the component type was last updated.
326
- */
327
- updateDateTime: Timestamp;
328
414
  }
329
415
  export interface ComponentUpdateRequest {
330
416
  /**
331
- * The ID of the component type.
417
+ * The update type of the component update request.
332
418
  */
333
- componentTypeId?: ComponentTypeId;
419
+ updateType?: ComponentUpdateType;
334
420
  /**
335
421
  * The description of the component type.
336
422
  */
337
423
  description?: Description;
424
+ /**
425
+ * The ID of the component type.
426
+ */
427
+ componentTypeId?: ComponentTypeId;
338
428
  /**
339
429
  * An object that maps strings to the properties to set in the component type update. Each string in the mapping must be unique to this object.
340
430
  */
341
431
  propertyUpdates?: PropertyRequests;
342
432
  /**
343
- * The update type of the component update request.
433
+ * The property group updates.
344
434
  */
345
- updateType?: ComponentUpdateType;
435
+ propertyGroupUpdates?: ComponentPropertyGroupRequests;
346
436
  }
347
437
  export type ComponentUpdateType = "CREATE"|"UPDATE"|"DELETE"|string;
348
438
  export type ComponentUpdatesMapRequest = {[key: string]: ComponentUpdateRequest};
@@ -350,6 +440,14 @@ declare namespace IoTTwinMaker {
350
440
  export type ComponentsMapRequest = {[key: string]: ComponentRequest};
351
441
  export type Configuration = {[key: string]: Value};
352
442
  export interface CreateComponentTypeRequest {
443
+ /**
444
+ * The ID of the workspace that contains the component type.
445
+ */
446
+ workspaceId: Id;
447
+ /**
448
+ * A Boolean value that specifies whether an entity can have more than one component of this type.
449
+ */
450
+ isSingleton?: Boolean;
353
451
  /**
354
452
  * The ID of the component type.
355
453
  */
@@ -358,6 +456,10 @@ declare namespace IoTTwinMaker {
358
456
  * The description of the component type.
359
457
  */
360
458
  description?: Description;
459
+ /**
460
+ * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
461
+ */
462
+ propertyDefinitions?: PropertyDefinitionsRequest;
361
463
  /**
362
464
  * Specifies the parent component type to extend.
363
465
  */
@@ -366,22 +468,14 @@ declare namespace IoTTwinMaker {
366
468
  * An object that maps strings to the functions in the component type. Each string in the mapping must be unique to this object.
367
469
  */
368
470
  functions?: FunctionsRequest;
369
- /**
370
- * A Boolean value that specifies whether an entity can have more than one component of this type.
371
- */
372
- isSingleton?: Boolean;
373
- /**
374
- * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
375
- */
376
- propertyDefinitions?: PropertyDefinitionsRequest;
377
471
  /**
378
472
  * Metadata that you can use to manage the component type.
379
473
  */
380
474
  tags?: TagMap;
381
475
  /**
382
- * The ID of the workspace that contains the component type.
476
+ *
383
477
  */
384
- workspaceId: Id;
478
+ propertyGroups?: PropertyGroupsRequest;
385
479
  }
386
480
  export interface CreateComponentTypeResponse {
387
481
  /**
@@ -399,13 +493,9 @@ declare namespace IoTTwinMaker {
399
493
  }
400
494
  export interface CreateEntityRequest {
401
495
  /**
402
- * An object that maps strings to the components in the entity. Each string in the mapping must be unique to this object.
403
- */
404
- components?: ComponentsMapRequest;
405
- /**
406
- * The description of the entity.
496
+ * The ID of the workspace that contains the entity.
407
497
  */
408
- description?: Description;
498
+ workspaceId: Id;
409
499
  /**
410
500
  * The ID of the entity.
411
501
  */
@@ -414,6 +504,14 @@ declare namespace IoTTwinMaker {
414
504
  * The name of the entity.
415
505
  */
416
506
  entityName: EntityName;
507
+ /**
508
+ * The description of the entity.
509
+ */
510
+ description?: Description;
511
+ /**
512
+ * An object that maps strings to the components in the entity. Each string in the mapping must be unique to this object.
513
+ */
514
+ components?: ComponentsMapRequest;
417
515
  /**
418
516
  * The ID of the entity's parent entity.
419
517
  */
@@ -422,12 +520,12 @@ declare namespace IoTTwinMaker {
422
520
  * Metadata that you can use to manage the entity.
423
521
  */
424
522
  tags?: TagMap;
425
- /**
426
- * The ID of the workspace that contains the entity.
427
- */
428
- workspaceId: Id;
429
523
  }
430
524
  export interface CreateEntityResponse {
525
+ /**
526
+ * The ID of the entity.
527
+ */
528
+ entityId: EntityId;
431
529
  /**
432
530
  * The ARN of the entity.
433
531
  */
@@ -436,10 +534,6 @@ declare namespace IoTTwinMaker {
436
534
  * The date and time when the entity was created.
437
535
  */
438
536
  creationDateTime: Timestamp;
439
- /**
440
- * The ID of the entity.
441
- */
442
- entityId: EntityId;
443
537
  /**
444
538
  * The current state of the entity.
445
539
  */
@@ -447,9 +541,13 @@ declare namespace IoTTwinMaker {
447
541
  }
448
542
  export interface CreateSceneRequest {
449
543
  /**
450
- * A list of capabilities that the scene uses to render itself.
544
+ * The ID of the workspace that contains the scene.
451
545
  */
452
- capabilities?: SceneCapabilities;
546
+ workspaceId: Id;
547
+ /**
548
+ * The ID of the scene.
549
+ */
550
+ sceneId: Id;
453
551
  /**
454
552
  * The relative path that specifies the location of the content definition file.
455
553
  */
@@ -459,17 +557,13 @@ declare namespace IoTTwinMaker {
459
557
  */
460
558
  description?: Description;
461
559
  /**
462
- * The ID of the scene.
560
+ * A list of capabilities that the scene uses to render itself.
463
561
  */
464
- sceneId: Id;
562
+ capabilities?: SceneCapabilities;
465
563
  /**
466
564
  * Metadata that you can use to manage the scene.
467
565
  */
468
566
  tags?: TagMap;
469
- /**
470
- * The ID of the workspace that contains the scene.
471
- */
472
- workspaceId: Id;
473
567
  }
474
568
  export interface CreateSceneResponse {
475
569
  /**
@@ -483,25 +577,25 @@ declare namespace IoTTwinMaker {
483
577
  }
484
578
  export interface CreateWorkspaceRequest {
485
579
  /**
486
- * The description of the workspace.
580
+ * The ID of the workspace.
487
581
  */
488
- description?: Description;
582
+ workspaceId: Id;
489
583
  /**
490
- * The ARN of the execution role associated with the workspace.
584
+ * The description of the workspace.
491
585
  */
492
- role: RoleArn;
586
+ description?: Description;
493
587
  /**
494
588
  * The ARN of the S3 bucket where resources associated with the workspace are stored.
495
589
  */
496
590
  s3Location: S3Location;
497
591
  /**
498
- * Metadata that you can use to manage the workspace
592
+ * The ARN of the execution role associated with the workspace.
499
593
  */
500
- tags?: TagMap;
594
+ role: RoleArn;
501
595
  /**
502
- * The ID of the workspace.
596
+ * Metadata that you can use to manage the workspace
503
597
  */
504
- workspaceId: Id;
598
+ tags?: TagMap;
505
599
  }
506
600
  export interface CreateWorkspaceResponse {
507
601
  /**
@@ -514,36 +608,36 @@ declare namespace IoTTwinMaker {
514
608
  creationDateTime: Timestamp;
515
609
  }
516
610
  export interface DataConnector {
517
- /**
518
- * A Boolean value that specifies whether the data connector is native to IoT TwinMaker.
519
- */
520
- isNative?: Boolean;
521
611
  /**
522
612
  * The Lambda function associated with this data connector.
523
613
  */
524
614
  lambda?: LambdaFunction;
615
+ /**
616
+ * A Boolean value that specifies whether the data connector is native to IoT TwinMaker.
617
+ */
618
+ isNative?: Boolean;
525
619
  }
526
620
  export interface DataType {
527
621
  /**
528
- * The allowed values for this data type.
622
+ * The underlying type of the data type.
529
623
  */
530
- allowedValues?: DataValueList;
624
+ type: Type;
531
625
  /**
532
626
  * The nested type in the data type.
533
627
  */
534
628
  nestedType?: DataType;
535
629
  /**
536
- * A relationship that associates a component with another component.
537
- */
538
- relationship?: Relationship;
539
- /**
540
- * The underlying type of the data type.
630
+ * The allowed values for this data type.
541
631
  */
542
- type: Type;
632
+ allowedValues?: DataValueList;
543
633
  /**
544
634
  * The unit of measure used in this data type.
545
635
  */
546
636
  unitOfMeasure?: String;
637
+ /**
638
+ * A relationship that associates a component with another component.
639
+ */
640
+ relationship?: Relationship;
547
641
  }
548
642
  export interface DataValue {
549
643
  /**
@@ -554,22 +648,22 @@ declare namespace IoTTwinMaker {
554
648
  * A double value.
555
649
  */
556
650
  doubleValue?: Double;
557
- /**
558
- * An expression that produces the value.
559
- */
560
- expression?: Expression;
561
651
  /**
562
652
  * An integer value.
563
653
  */
564
654
  integerValue?: Integer;
565
- /**
566
- * A list of multiple values.
567
- */
568
- listValue?: DataValueList;
569
655
  /**
570
656
  * A long value.
571
657
  */
572
658
  longValue?: Long;
659
+ /**
660
+ * A string value.
661
+ */
662
+ stringValue?: String;
663
+ /**
664
+ * A list of multiple values.
665
+ */
666
+ listValue?: DataValueList;
573
667
  /**
574
668
  * An object that maps strings to multiple DataValue objects.
575
669
  */
@@ -579,21 +673,21 @@ declare namespace IoTTwinMaker {
579
673
  */
580
674
  relationshipValue?: RelationshipValue;
581
675
  /**
582
- * A string value.
676
+ * An expression that produces the value.
583
677
  */
584
- stringValue?: String;
678
+ expression?: Expression;
585
679
  }
586
680
  export type DataValueList = DataValue[];
587
681
  export type DataValueMap = {[key: string]: DataValue};
588
682
  export interface DeleteComponentTypeRequest {
589
- /**
590
- * The ID of the component type to delete.
591
- */
592
- componentTypeId: ComponentTypeId;
593
683
  /**
594
684
  * The ID of the workspace that contains the component type.
595
685
  */
596
686
  workspaceId: Id;
687
+ /**
688
+ * The ID of the component type to delete.
689
+ */
690
+ componentTypeId: ComponentTypeId;
597
691
  }
598
692
  export interface DeleteComponentTypeResponse {
599
693
  /**
@@ -602,6 +696,10 @@ declare namespace IoTTwinMaker {
602
696
  state: State;
603
697
  }
604
698
  export interface DeleteEntityRequest {
699
+ /**
700
+ * The ID of the workspace that contains the entity to delete.
701
+ */
702
+ workspaceId: Id;
605
703
  /**
606
704
  * The ID of the entity to delete.
607
705
  */
@@ -610,10 +708,6 @@ declare namespace IoTTwinMaker {
610
708
  * A Boolean value that specifies whether the operation deletes child entities.
611
709
  */
612
710
  isRecursive?: Boolean;
613
- /**
614
- * The ID of the workspace that contains the entity to delete.
615
- */
616
- workspaceId: Id;
617
711
  }
618
712
  export interface DeleteEntityResponse {
619
713
  /**
@@ -622,14 +716,14 @@ declare namespace IoTTwinMaker {
622
716
  state: State;
623
717
  }
624
718
  export interface DeleteSceneRequest {
625
- /**
626
- * The ID of the scene to delete.
627
- */
628
- sceneId: Id;
629
719
  /**
630
720
  * The ID of the workspace.
631
721
  */
632
722
  workspaceId: Id;
723
+ /**
724
+ * The ID of the scene to delete.
725
+ */
726
+ sceneId: Id;
633
727
  }
634
728
  export interface DeleteSceneResponse {
635
729
  }
@@ -650,14 +744,14 @@ declare namespace IoTTwinMaker {
650
744
  * The name of the component.
651
745
  */
652
746
  componentName?: Name;
653
- /**
654
- * The ID of the entity.
655
- */
656
- entityId?: EntityId;
657
747
  /**
658
748
  * A mapping of external IDs to property names. External IDs uniquely identify properties from external data stores.
659
749
  */
660
750
  externalIdProperty?: ExternalIdProperty;
751
+ /**
752
+ * The ID of the entity.
753
+ */
754
+ entityId?: EntityId;
661
755
  /**
662
756
  * The name of the property.
663
757
  */
@@ -666,29 +760,17 @@ declare namespace IoTTwinMaker {
666
760
  export type EntitySummaries = EntitySummary[];
667
761
  export interface EntitySummary {
668
762
  /**
669
- * The ARN of the entity.
763
+ * The ID of the entity.
670
764
  */
671
- arn: TwinMakerArn;
672
- /**
673
- * The date and time when the entity was created.
674
- */
675
- creationDateTime: Timestamp;
676
- /**
677
- * The description of the entity.
678
- */
679
- description?: Description;
680
- /**
681
- * The ID of the entity.
682
- */
683
- entityId: EntityId;
765
+ entityId: EntityId;
684
766
  /**
685
767
  * The name of the entity.
686
768
  */
687
769
  entityName: EntityName;
688
770
  /**
689
- * A Boolean value that specifies whether the entity has child entities or not.
771
+ * The ARN of the entity.
690
772
  */
691
- hasChildEntities?: Boolean;
773
+ arn: TwinMakerArn;
692
774
  /**
693
775
  * The ID of the parent entity.
694
776
  */
@@ -697,6 +779,18 @@ declare namespace IoTTwinMaker {
697
779
  * The current status of the entity.
698
780
  */
699
781
  status: Status;
782
+ /**
783
+ * The description of the entity.
784
+ */
785
+ description?: Description;
786
+ /**
787
+ * A Boolean value that specifies whether the entity has child entities or not.
788
+ */
789
+ hasChildEntities?: Boolean;
790
+ /**
791
+ * The date and time when the entity was created.
792
+ */
793
+ creationDateTime: Timestamp;
700
794
  /**
701
795
  * The last date and time when the entity was updated.
702
796
  */
@@ -717,14 +811,42 @@ declare namespace IoTTwinMaker {
717
811
  export type ErrorEntries = BatchPutPropertyErrorEntry[];
718
812
  export type ErrorMessage = string;
719
813
  export type Errors = BatchPutPropertyError[];
814
+ export interface ExecuteQueryRequest {
815
+ /**
816
+ * The ID of the workspace.
817
+ */
818
+ workspaceId: Id;
819
+ /**
820
+ * The query statement.
821
+ */
822
+ queryStatement: QueryStatement;
823
+ /**
824
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
825
+ */
826
+ maxResults?: QueryServiceMaxResults;
827
+ /**
828
+ * The string that specifies the next page of results.
829
+ */
830
+ nextToken?: NextToken;
831
+ }
832
+ export interface ExecuteQueryResponse {
833
+ /**
834
+ * A list of ColumnDescription objects.
835
+ */
836
+ columnDescriptions?: ColumnDescriptions;
837
+ /**
838
+ * Represents a single row in the query results.
839
+ */
840
+ rows?: Rows;
841
+ /**
842
+ * The string that specifies the next page of results.
843
+ */
844
+ nextToken?: NextToken;
845
+ }
720
846
  export type Expression = string;
721
847
  export type ExtendsFrom = ComponentTypeId[];
722
848
  export type ExternalIdProperty = {[key: string]: String};
723
849
  export interface FunctionRequest {
724
- /**
725
- * The data connector.
726
- */
727
- implementedBy?: DataConnector;
728
850
  /**
729
851
  * The required properties of the function.
730
852
  */
@@ -733,16 +855,12 @@ declare namespace IoTTwinMaker {
733
855
  * The scope of the function.
734
856
  */
735
857
  scope?: Scope;
736
- }
737
- export interface FunctionResponse {
738
858
  /**
739
859
  * The data connector.
740
860
  */
741
861
  implementedBy?: DataConnector;
742
- /**
743
- * Indicates whether this function is inherited.
744
- */
745
- isInherited?: Boolean;
862
+ }
863
+ export interface FunctionResponse {
746
864
  /**
747
865
  * The required properties of the function.
748
866
  */
@@ -751,36 +869,48 @@ declare namespace IoTTwinMaker {
751
869
  * The scope of the function.
752
870
  */
753
871
  scope?: Scope;
872
+ /**
873
+ * The data connector.
874
+ */
875
+ implementedBy?: DataConnector;
876
+ /**
877
+ * Indicates whether this function is inherited.
878
+ */
879
+ isInherited?: Boolean;
754
880
  }
755
881
  export type FunctionsRequest = {[key: string]: FunctionRequest};
756
882
  export type FunctionsResponse = {[key: string]: FunctionResponse};
757
883
  export interface GetComponentTypeRequest {
884
+ /**
885
+ * The ID of the workspace that contains the component type.
886
+ */
887
+ workspaceId: Id;
758
888
  /**
759
889
  * The ID of the component type.
760
890
  */
761
891
  componentTypeId: ComponentTypeId;
892
+ }
893
+ export interface GetComponentTypeResponse {
762
894
  /**
763
895
  * The ID of the workspace that contains the component type.
764
896
  */
765
897
  workspaceId: Id;
766
- }
767
- export interface GetComponentTypeResponse {
768
898
  /**
769
- * The ARN of the component type.
899
+ * A Boolean value that specifies whether an entity can have more than one component of this type.
770
900
  */
771
- arn: TwinMakerArn;
901
+ isSingleton?: Boolean;
772
902
  /**
773
903
  * The ID of the component type.
774
904
  */
775
905
  componentTypeId: ComponentTypeId;
776
- /**
777
- * The date and time when the component type was created.
778
- */
779
- creationDateTime: Timestamp;
780
906
  /**
781
907
  * The description of the component type.
782
908
  */
783
909
  description?: Description;
910
+ /**
911
+ * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
912
+ */
913
+ propertyDefinitions?: PropertyDefinitionsResponse;
784
914
  /**
785
915
  * The name of the parent component type that this component type extends.
786
916
  */
@@ -790,91 +920,111 @@ declare namespace IoTTwinMaker {
790
920
  */
791
921
  functions?: FunctionsResponse;
792
922
  /**
793
- * A Boolean value that specifies whether the component type is abstract.
923
+ * The date and time when the component type was created.
794
924
  */
795
- isAbstract?: Boolean;
925
+ creationDateTime: Timestamp;
796
926
  /**
797
- * A Boolean value that specifies whether the component type has a schema initializer and that the schema initializer has run.
927
+ * The date and time when the component was last updated.
798
928
  */
799
- isSchemaInitialized?: Boolean;
929
+ updateDateTime: Timestamp;
800
930
  /**
801
- * A Boolean value that specifies whether an entity can have more than one component of this type.
931
+ * The ARN of the component type.
802
932
  */
803
- isSingleton?: Boolean;
933
+ arn: TwinMakerArn;
804
934
  /**
805
- * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
935
+ * A Boolean value that specifies whether the component type is abstract.
806
936
  */
807
- propertyDefinitions?: PropertyDefinitionsResponse;
937
+ isAbstract?: Boolean;
938
+ /**
939
+ * A Boolean value that specifies whether the component type has a schema initializer and that the schema initializer has run.
940
+ */
941
+ isSchemaInitialized?: Boolean;
808
942
  /**
809
943
  * The current status of the component type.
810
944
  */
811
945
  status?: Status;
812
946
  /**
813
- * The date and time when the component was last updated.
947
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
814
948
  */
815
- updateDateTime: Timestamp;
949
+ propertyGroups?: PropertyGroupsResponse;
950
+ }
951
+ export interface GetEntityRequest {
816
952
  /**
817
- * The ID of the workspace that contains the component type.
953
+ * The ID of the workspace.
818
954
  */
819
955
  workspaceId: Id;
956
+ /**
957
+ * The ID of the entity.
958
+ */
959
+ entityId: EntityId;
820
960
  }
821
- export interface GetEntityRequest {
961
+ export interface GetEntityResponse {
822
962
  /**
823
963
  * The ID of the entity.
824
964
  */
825
965
  entityId: EntityId;
826
966
  /**
827
- * The ID of the workspace.
967
+ * The name of the entity.
828
968
  */
829
- workspaceId: Id;
830
- }
831
- export interface GetEntityResponse {
969
+ entityName: EntityName;
832
970
  /**
833
971
  * The ARN of the entity.
834
972
  */
835
973
  arn: TwinMakerArn;
836
974
  /**
837
- * An object that maps strings to the components in the entity. Each string in the mapping must be unique to this object.
975
+ * The current status of the entity.
838
976
  */
839
- components?: ComponentsMap;
977
+ status: Status;
840
978
  /**
841
- * The date and time when the entity was created.
979
+ * The ID of the workspace.
842
980
  */
843
- creationDateTime: Timestamp;
981
+ workspaceId: Id;
844
982
  /**
845
983
  * The description of the entity.
846
984
  */
847
985
  description?: Description;
848
986
  /**
849
- * The ID of the entity.
987
+ * An object that maps strings to the components in the entity. Each string in the mapping must be unique to this object.
850
988
  */
851
- entityId: EntityId;
989
+ components?: ComponentsMap;
852
990
  /**
853
- * The name of the entity.
991
+ * The ID of the parent entity for this entity.
854
992
  */
855
- entityName: EntityName;
993
+ parentEntityId: ParentEntityId;
856
994
  /**
857
995
  * A Boolean value that specifies whether the entity has associated child entities.
858
996
  */
859
997
  hasChildEntities: Boolean;
860
998
  /**
861
- * The ID of the parent entity for this entity.
862
- */
863
- parentEntityId: ParentEntityId;
864
- /**
865
- * The current status of the entity.
999
+ * The date and time when the entity was created.
866
1000
  */
867
- status: Status;
1001
+ creationDateTime: Timestamp;
868
1002
  /**
869
1003
  * The date and time when the entity was last updated.
870
1004
  */
871
1005
  updateDateTime: Timestamp;
1006
+ }
1007
+ export interface GetPricingPlanRequest {
1008
+ }
1009
+ export interface GetPricingPlanResponse {
872
1010
  /**
873
- * The ID of the workspace.
1011
+ * The chosen pricing plan for the current billing cycle.
874
1012
  */
875
- workspaceId: Id;
1013
+ currentPricingPlan: PricingPlan;
1014
+ /**
1015
+ * The pending pricing plan.
1016
+ */
1017
+ pendingPricingPlan?: PricingPlan;
876
1018
  }
877
1019
  export interface GetPropertyValueHistoryRequest {
1020
+ /**
1021
+ * The ID of the workspace.
1022
+ */
1023
+ workspaceId: Id;
1024
+ /**
1025
+ * The ID of the entity.
1026
+ */
1027
+ entityId?: EntityId;
878
1028
  /**
879
1029
  * The name of the component.
880
1030
  */
@@ -884,63 +1034,55 @@ declare namespace IoTTwinMaker {
884
1034
  */
885
1035
  componentTypeId?: ComponentTypeId;
886
1036
  /**
887
- * The date and time of the latest property value to return.
1037
+ * A list of properties whose value histories the request retrieves.
888
1038
  */
889
- endDateTime?: Timestamp;
1039
+ selectedProperties: SelectedPropertyList;
890
1040
  /**
891
- * The ISO8601 DateTime of the latest property value to return. For more information about the ISO8601 DateTime format, see the data type PropertyValue.
1041
+ * A list of objects that filter the property value history request.
892
1042
  */
893
- endTime?: Time;
1043
+ propertyFilters?: PropertyFilters;
894
1044
  /**
895
- * The ID of the entity.
1045
+ * The date and time of the earliest property value to return.
896
1046
  */
897
- entityId?: EntityId;
1047
+ startDateTime?: Timestamp;
898
1048
  /**
899
- * An object that specifies the interpolation type and the interval over which to interpolate data.
1049
+ * The date and time of the latest property value to return.
900
1050
  */
901
- interpolation?: InterpolationParameters;
1051
+ endDateTime?: Timestamp;
902
1052
  /**
903
- * The maximum number of results to return.
1053
+ * An object that specifies the interpolation type and the interval over which to interpolate data.
904
1054
  */
905
- maxResults?: MaxResults;
1055
+ interpolation?: InterpolationParameters;
906
1056
  /**
907
1057
  * The string that specifies the next page of results.
908
1058
  */
909
1059
  nextToken?: NextToken;
910
1060
  /**
911
- * The time direction to use in the result order.
912
- */
913
- orderByTime?: OrderByTime;
914
- /**
915
- * A list of objects that filter the property value history request.
916
- */
917
- propertyFilters?: PropertyFilters;
918
- /**
919
- * A list of properties whose value histories the request retrieves.
1061
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
920
1062
  */
921
- selectedProperties: SelectedPropertyList;
1063
+ maxResults?: MaxResults;
922
1064
  /**
923
- * The date and time of the earliest property value to return.
1065
+ * The time direction to use in the result order.
924
1066
  */
925
- startDateTime?: Timestamp;
1067
+ orderByTime?: OrderByTime;
926
1068
  /**
927
1069
  * The ISO8601 DateTime of the earliest property value to return. For more information about the ISO8601 DateTime format, see the data type PropertyValue.
928
1070
  */
929
1071
  startTime?: Time;
930
1072
  /**
931
- * The ID of the workspace.
1073
+ * The ISO8601 DateTime of the latest property value to return. For more information about the ISO8601 DateTime format, see the data type PropertyValue.
932
1074
  */
933
- workspaceId: Id;
1075
+ endTime?: Time;
934
1076
  }
935
1077
  export interface GetPropertyValueHistoryResponse {
936
- /**
937
- * The string that specifies the next page of results.
938
- */
939
- nextToken?: NextToken;
940
1078
  /**
941
1079
  * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
942
1080
  */
943
1081
  propertyValues: PropertyValueList;
1082
+ /**
1083
+ * The string that specifies the next page of results.
1084
+ */
1085
+ nextToken?: NextToken;
944
1086
  }
945
1087
  export interface GetPropertyValueRequest {
946
1088
  /**
@@ -963,56 +1105,80 @@ declare namespace IoTTwinMaker {
963
1105
  * The ID of the workspace whose values the operation returns.
964
1106
  */
965
1107
  workspaceId: Id;
1108
+ /**
1109
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
1110
+ */
1111
+ maxResults?: MaxResults;
1112
+ /**
1113
+ * The string that specifies the next page of results.
1114
+ */
1115
+ nextToken?: NextToken;
1116
+ /**
1117
+ * The property group name.
1118
+ */
1119
+ propertyGroupName?: Name;
1120
+ /**
1121
+ * The tabular conditions.
1122
+ */
1123
+ tabularConditions?: TabularConditions;
966
1124
  }
967
1125
  export interface GetPropertyValueResponse {
968
1126
  /**
969
1127
  * An object that maps strings to the properties and latest property values in the response. Each string in the mapping must be unique to this object.
970
1128
  */
971
- propertyValues: PropertyLatestValueMap;
972
- }
973
- export interface GetSceneRequest {
1129
+ propertyValues?: PropertyLatestValueMap;
974
1130
  /**
975
- * The ID of the scene.
1131
+ * The string that specifies the next page of results.
976
1132
  */
977
- sceneId: Id;
1133
+ nextToken?: NextToken;
1134
+ /**
1135
+ * A table of property values.
1136
+ */
1137
+ tabularPropertyValues?: TabularPropertyValues;
1138
+ }
1139
+ export interface GetSceneRequest {
978
1140
  /**
979
1141
  * The ID of the workspace that contains the scene.
980
1142
  */
981
1143
  workspaceId: Id;
1144
+ /**
1145
+ * The ID of the scene.
1146
+ */
1147
+ sceneId: Id;
982
1148
  }
983
1149
  export interface GetSceneResponse {
984
1150
  /**
985
- * The ARN of the scene.
1151
+ * The ID of the workspace that contains the scene.
986
1152
  */
987
- arn: TwinMakerArn;
1153
+ workspaceId: Id;
988
1154
  /**
989
- * A list of capabilities that the scene uses to render.
1155
+ * The ID of the scene.
990
1156
  */
991
- capabilities?: SceneCapabilities;
1157
+ sceneId: Id;
992
1158
  /**
993
1159
  * The relative path that specifies the location of the content definition file.
994
1160
  */
995
1161
  contentLocation: S3Url;
996
1162
  /**
997
- * The date and time when the scene was created.
998
- */
999
- creationDateTime: Timestamp;
1000
- /**
1001
- * The description of the scene.
1163
+ * The ARN of the scene.
1002
1164
  */
1003
- description?: Description;
1165
+ arn: TwinMakerArn;
1004
1166
  /**
1005
- * The ID of the scene.
1167
+ * The date and time when the scene was created.
1006
1168
  */
1007
- sceneId: Id;
1169
+ creationDateTime: Timestamp;
1008
1170
  /**
1009
1171
  * The date and time when the scene was last updated.
1010
1172
  */
1011
1173
  updateDateTime: Timestamp;
1012
1174
  /**
1013
- * The ID of the workspace that contains the scene.
1175
+ * The description of the scene.
1014
1176
  */
1015
- workspaceId: Id;
1177
+ description?: Description;
1178
+ /**
1179
+ * A list of capabilities that the scene uses to render.
1180
+ */
1181
+ capabilities?: SceneCapabilities;
1016
1182
  }
1017
1183
  export interface GetWorkspaceRequest {
1018
1184
  /**
@@ -1022,34 +1188,35 @@ declare namespace IoTTwinMaker {
1022
1188
  }
1023
1189
  export interface GetWorkspaceResponse {
1024
1190
  /**
1025
- * The ARN of the workspace.
1191
+ * The ID of the workspace.
1026
1192
  */
1027
- arn: TwinMakerArn;
1193
+ workspaceId: Id;
1028
1194
  /**
1029
- * The date and time when the workspace was created.
1195
+ * The ARN of the workspace.
1030
1196
  */
1031
- creationDateTime: Timestamp;
1197
+ arn: TwinMakerArn;
1032
1198
  /**
1033
1199
  * The description of the workspace.
1034
1200
  */
1035
1201
  description?: Description;
1202
+ /**
1203
+ * The ARN of the S3 bucket where resources associated with the workspace are stored.
1204
+ */
1205
+ s3Location: S3Location;
1036
1206
  /**
1037
1207
  * The ARN of the execution role associated with the workspace.
1038
1208
  */
1039
1209
  role: RoleArn;
1040
1210
  /**
1041
- * The ARN of the S3 bucket where resources associated with the workspace are stored.
1211
+ * The date and time when the workspace was created.
1042
1212
  */
1043
- s3Location: S3Location;
1213
+ creationDateTime: Timestamp;
1044
1214
  /**
1045
1215
  * The date and time when the workspace was last updated.
1046
1216
  */
1047
1217
  updateDateTime: Timestamp;
1048
- /**
1049
- * The ID of the workspace.
1050
- */
1051
- workspaceId: Id;
1052
1218
  }
1219
+ export type GroupType = "TABULAR"|string;
1053
1220
  export type Id = string;
1054
1221
  export type IdOrArn = string;
1055
1222
  export type Integer = number;
@@ -1077,53 +1244,57 @@ declare namespace IoTTwinMaker {
1077
1244
  * The component type that the component types in the list extend.
1078
1245
  */
1079
1246
  extendsFrom?: ComponentTypeId;
1080
- /**
1081
- * A Boolean value that specifies whether the component types in the list are abstract.
1082
- */
1083
- isAbstract?: Boolean;
1084
1247
  /**
1085
1248
  * The namespace to which the component types in the list belong.
1086
1249
  */
1087
1250
  namespace?: String;
1251
+ /**
1252
+ * A Boolean value that specifies whether the component types in the list are abstract.
1253
+ */
1254
+ isAbstract?: Boolean;
1088
1255
  }
1089
1256
  export type ListComponentTypesFilters = ListComponentTypesFilter[];
1090
1257
  export interface ListComponentTypesRequest {
1091
1258
  /**
1092
- * A list of objects that filter the request.
1259
+ * The ID of the workspace.
1093
1260
  */
1094
- filters?: ListComponentTypesFilters;
1261
+ workspaceId: Id;
1095
1262
  /**
1096
- * The maximum number of results to display.
1263
+ * A list of objects that filter the request.
1097
1264
  */
1098
- maxResults?: MaxResults;
1265
+ filters?: ListComponentTypesFilters;
1099
1266
  /**
1100
1267
  * The string that specifies the next page of results.
1101
1268
  */
1102
1269
  nextToken?: NextToken;
1103
1270
  /**
1104
- * The ID of the workspace.
1271
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
1105
1272
  */
1106
- workspaceId: Id;
1273
+ maxResults?: MaxResults;
1107
1274
  }
1108
1275
  export interface ListComponentTypesResponse {
1109
1276
  /**
1110
- * A list of objects that contain information about the component types.
1277
+ * The ID of the workspace.
1111
1278
  */
1112
- componentTypeSummaries: ComponentTypeSummaries;
1279
+ workspaceId: Id;
1113
1280
  /**
1114
- * Specifies the maximum number of results to display.
1281
+ * A list of objects that contain information about the component types.
1115
1282
  */
1116
- maxResults?: MaxResults;
1283
+ componentTypeSummaries: ComponentTypeSummaries;
1117
1284
  /**
1118
1285
  * The string that specifies the next page of results.
1119
1286
  */
1120
1287
  nextToken?: NextToken;
1121
1288
  /**
1122
- * The ID of the workspace.
1289
+ * Specifies the maximum number of results to display.
1123
1290
  */
1124
- workspaceId: Id;
1291
+ maxResults?: MaxResults;
1125
1292
  }
1126
1293
  export interface ListEntitiesFilter {
1294
+ /**
1295
+ * The parent of the entities in the list.
1296
+ */
1297
+ parentEntityId?: ParentEntityId;
1127
1298
  /**
1128
1299
  * The ID of the component type in the entities in the list.
1129
1300
  */
@@ -1132,29 +1303,25 @@ declare namespace IoTTwinMaker {
1132
1303
  * The external-Id property of a component. The external-Id property is the primary key of an external storage system.
1133
1304
  */
1134
1305
  externalId?: String;
1135
- /**
1136
- * The parent of the entities in the list.
1137
- */
1138
- parentEntityId?: ParentEntityId;
1139
1306
  }
1140
1307
  export type ListEntitiesFilters = ListEntitiesFilter[];
1141
1308
  export interface ListEntitiesRequest {
1309
+ /**
1310
+ * The ID of the workspace.
1311
+ */
1312
+ workspaceId: Id;
1142
1313
  /**
1143
1314
  * A list of objects that filter the request. Only one object is accepted as a valid input.
1144
1315
  */
1145
1316
  filters?: ListEntitiesFilters;
1146
1317
  /**
1147
- * The maximum number of results to display.
1318
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
1148
1319
  */
1149
1320
  maxResults?: MaxResults;
1150
1321
  /**
1151
1322
  * The string that specifies the next page of results.
1152
1323
  */
1153
1324
  nextToken?: NextToken;
1154
- /**
1155
- * The ID of the workspace.
1156
- */
1157
- workspaceId: Id;
1158
1325
  }
1159
1326
  export interface ListEntitiesResponse {
1160
1327
  /**
@@ -1167,6 +1334,10 @@ declare namespace IoTTwinMaker {
1167
1334
  nextToken?: NextToken;
1168
1335
  }
1169
1336
  export interface ListScenesRequest {
1337
+ /**
1338
+ * The ID of the workspace that contains the scenes.
1339
+ */
1340
+ workspaceId: Id;
1170
1341
  /**
1171
1342
  * Specifies the maximum number of results to display.
1172
1343
  */
@@ -1175,48 +1346,44 @@ declare namespace IoTTwinMaker {
1175
1346
  * The string that specifies the next page of results.
1176
1347
  */
1177
1348
  nextToken?: NextToken;
1178
- /**
1179
- * The ID of the workspace that contains the scenes.
1180
- */
1181
- workspaceId: Id;
1182
1349
  }
1183
1350
  export interface ListScenesResponse {
1184
- /**
1185
- * The string that specifies the next page of results.
1186
- */
1187
- nextToken?: NextToken;
1188
1351
  /**
1189
1352
  * A list of objects that contain information about the scenes.
1190
1353
  */
1191
1354
  sceneSummaries?: SceneSummaries;
1192
- }
1193
- export interface ListTagsForResourceRequest {
1194
- /**
1195
- * The maximum number of results to display.
1196
- */
1197
- maxResults?: MaxResults;
1198
1355
  /**
1199
1356
  * The string that specifies the next page of results.
1200
1357
  */
1201
1358
  nextToken?: NextToken;
1359
+ }
1360
+ export interface ListTagsForResourceRequest {
1202
1361
  /**
1203
1362
  * The ARN of the resource.
1204
1363
  */
1205
1364
  resourceARN: TwinMakerArn;
1206
- }
1207
- export interface ListTagsForResourceResponse {
1365
+ /**
1366
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
1367
+ */
1368
+ maxResults?: MaxResults;
1208
1369
  /**
1209
1370
  * The string that specifies the next page of results.
1210
1371
  */
1211
1372
  nextToken?: NextToken;
1373
+ }
1374
+ export interface ListTagsForResourceResponse {
1212
1375
  /**
1213
1376
  * Metadata that you can use to manage a resource.
1214
1377
  */
1215
1378
  tags?: TagMap;
1379
+ /**
1380
+ * The string that specifies the next page of results.
1381
+ */
1382
+ nextToken?: NextToken;
1216
1383
  }
1217
1384
  export interface ListWorkspacesRequest {
1218
1385
  /**
1219
- * The maximum number of results to display.
1386
+ * The maximum number of results to return at one time. The default is 25. Valid Range: Minimum value of 1. Maximum value of 250.
1220
1387
  */
1221
1388
  maxResults?: MaxResults;
1222
1389
  /**
@@ -1225,53 +1392,86 @@ declare namespace IoTTwinMaker {
1225
1392
  nextToken?: NextToken;
1226
1393
  }
1227
1394
  export interface ListWorkspacesResponse {
1395
+ /**
1396
+ * A list of objects that contain information about the workspaces.
1397
+ */
1398
+ workspaceSummaries?: WorkspaceSummaries;
1228
1399
  /**
1229
1400
  * The string that specifies the next page of results.
1230
1401
  */
1231
- nextToken?: NextToken;
1402
+ nextToken?: NextToken;
1403
+ }
1404
+ export type Long = number;
1405
+ export type MaxResults = number;
1406
+ export type Name = string;
1407
+ export type NextToken = string;
1408
+ export type Order = "ASCENDING"|"DESCENDING"|string;
1409
+ export interface OrderBy {
1410
+ /**
1411
+ * The set order that filters results.
1412
+ */
1413
+ order?: Order;
1414
+ /**
1415
+ * The property name.
1416
+ */
1417
+ propertyName: String;
1418
+ }
1419
+ export type OrderByList = OrderBy[];
1420
+ export type OrderByTime = "ASCENDING"|"DESCENDING"|string;
1421
+ export type ParentEntityId = string;
1422
+ export interface ParentEntityUpdateRequest {
1423
+ /**
1424
+ * The type of the update.
1425
+ */
1426
+ updateType: ParentEntityUpdateType;
1427
+ /**
1428
+ * The ID of the parent entity.
1429
+ */
1430
+ parentEntityId?: ParentEntityId;
1431
+ }
1432
+ export type ParentEntityUpdateType = "UPDATE"|"DELETE"|string;
1433
+ export type PricingBundles = BundleName[];
1434
+ export type PricingMode = "BASIC"|"STANDARD"|"TIERED_BUNDLE"|string;
1435
+ export interface PricingPlan {
1436
+ /**
1437
+ * The billable entity count.
1438
+ */
1439
+ billableEntityCount?: Long;
1440
+ /**
1441
+ * The pricing plan's bundle information.
1442
+ */
1443
+ bundleInformation?: BundleInformation;
1444
+ /**
1445
+ * The effective date and time of the pricing plan.
1446
+ */
1447
+ effectiveDateTime: Timestamp;
1232
1448
  /**
1233
- * A list of objects that contain information about the workspaces.
1449
+ * The pricing mode.
1234
1450
  */
1235
- workspaceSummaries?: WorkspaceSummaries;
1236
- }
1237
- export type Long = number;
1238
- export type MaxResults = number;
1239
- export type Name = string;
1240
- export type NextToken = string;
1241
- export type OrderByTime = "ASCENDING"|"DESCENDING"|string;
1242
- export type ParentEntityId = string;
1243
- export interface ParentEntityUpdateRequest {
1451
+ pricingMode: PricingMode;
1244
1452
  /**
1245
- * The ID of the parent entity.
1453
+ * The set date and time for updating a pricing plan.
1246
1454
  */
1247
- parentEntityId?: ParentEntityId;
1455
+ updateDateTime: Timestamp;
1248
1456
  /**
1249
- * The type of the update.
1457
+ * The update reason, for changing a pricing plan.
1250
1458
  */
1251
- updateType: ParentEntityUpdateType;
1459
+ updateReason: UpdateReason;
1252
1460
  }
1253
- export type ParentEntityUpdateType = "UPDATE"|"DELETE"|string;
1461
+ export type PricingTier = "TIER_1"|"TIER_2"|"TIER_3"|"TIER_4"|string;
1254
1462
  export interface PropertyDefinitionRequest {
1255
- /**
1256
- * A mapping that specifies configuration information about the property. Use this field to specify information that you read from and write to an external source.
1257
- */
1258
- configuration?: Configuration;
1259
1463
  /**
1260
1464
  * An object that contains information about the data type.
1261
1465
  */
1262
1466
  dataType?: DataType;
1263
1467
  /**
1264
- * An object that contains the default value.
1468
+ * A Boolean value that specifies whether the property is required.
1265
1469
  */
1266
- defaultValue?: DataValue;
1470
+ isRequiredInEntity?: Boolean;
1267
1471
  /**
1268
1472
  * A Boolean value that specifies whether the property ID comes from an external data store.
1269
1473
  */
1270
1474
  isExternalId?: Boolean;
1271
- /**
1272
- * A Boolean value that specifies whether the property is required.
1273
- */
1274
- isRequiredInEntity?: Boolean;
1275
1475
  /**
1276
1476
  * A Boolean value that specifies whether the property is stored externally.
1277
1477
  */
@@ -1280,66 +1480,101 @@ declare namespace IoTTwinMaker {
1280
1480
  * A Boolean value that specifies whether the property consists of time series data.
1281
1481
  */
1282
1482
  isTimeSeries?: Boolean;
1283
- }
1284
- export interface PropertyDefinitionResponse {
1285
1483
  /**
1286
- * A mapping that specifies configuration information about the property.
1484
+ * An object that contains the default value.
1485
+ */
1486
+ defaultValue?: DataValue;
1487
+ /**
1488
+ * A mapping that specifies configuration information about the property. Use this field to specify information that you read from and write to an external source.
1287
1489
  */
1288
1490
  configuration?: Configuration;
1491
+ }
1492
+ export interface PropertyDefinitionResponse {
1289
1493
  /**
1290
1494
  * An object that contains information about the data type.
1291
1495
  */
1292
1496
  dataType: DataType;
1293
1497
  /**
1294
- * An object that contains the default value.
1498
+ * A Boolean value that specifies whether the property consists of time series data.
1295
1499
  */
1296
- defaultValue?: DataValue;
1500
+ isTimeSeries: Boolean;
1501
+ /**
1502
+ * A Boolean value that specifies whether the property is required in an entity.
1503
+ */
1504
+ isRequiredInEntity: Boolean;
1297
1505
  /**
1298
1506
  * A Boolean value that specifies whether the property ID comes from an external data store.
1299
1507
  */
1300
1508
  isExternalId: Boolean;
1301
1509
  /**
1302
- * A Boolean value that specifies whether the property definition can be updated.
1510
+ * A Boolean value that specifies whether the property is stored externally.
1303
1511
  */
1304
- isFinal: Boolean;
1512
+ isStoredExternally: Boolean;
1305
1513
  /**
1306
1514
  * A Boolean value that specifies whether the property definition is imported from an external data store.
1307
1515
  */
1308
1516
  isImported: Boolean;
1309
1517
  /**
1310
- * A Boolean value that specifies whether the property definition is inherited from a parent entity.
1518
+ * A Boolean value that specifies whether the property definition can be updated.
1311
1519
  */
1312
- isInherited: Boolean;
1520
+ isFinal: Boolean;
1313
1521
  /**
1314
- * A Boolean value that specifies whether the property is required in an entity.
1522
+ * A Boolean value that specifies whether the property definition is inherited from a parent entity.
1315
1523
  */
1316
- isRequiredInEntity: Boolean;
1524
+ isInherited: Boolean;
1317
1525
  /**
1318
- * A Boolean value that specifies whether the property is stored externally.
1526
+ * An object that contains the default value.
1319
1527
  */
1320
- isStoredExternally: Boolean;
1528
+ defaultValue?: DataValue;
1321
1529
  /**
1322
- * A Boolean value that specifies whether the property consists of time series data.
1530
+ * A mapping that specifies configuration information about the property.
1323
1531
  */
1324
- isTimeSeries: Boolean;
1532
+ configuration?: Configuration;
1325
1533
  }
1326
1534
  export type PropertyDefinitionsRequest = {[key: string]: PropertyDefinitionRequest};
1327
1535
  export type PropertyDefinitionsResponse = {[key: string]: PropertyDefinitionResponse};
1328
1536
  export interface PropertyFilter {
1329
- /**
1330
- * The operator associated with this property filter.
1331
- */
1332
- operator?: String;
1333
1537
  /**
1334
1538
  * The property name associated with this property filter.
1335
1539
  */
1336
1540
  propertyName?: String;
1541
+ /**
1542
+ * The operator associated with this property filter.
1543
+ */
1544
+ operator?: String;
1337
1545
  /**
1338
1546
  * The value associated with this property filter.
1339
1547
  */
1340
1548
  value?: DataValue;
1341
1549
  }
1342
1550
  export type PropertyFilters = PropertyFilter[];
1551
+ export interface PropertyGroupRequest {
1552
+ /**
1553
+ * The group type.
1554
+ */
1555
+ groupType?: GroupType;
1556
+ /**
1557
+ * The names of properties.
1558
+ */
1559
+ propertyNames?: PropertyNames;
1560
+ }
1561
+ export interface PropertyGroupResponse {
1562
+ /**
1563
+ * The group types.
1564
+ */
1565
+ groupType: GroupType;
1566
+ /**
1567
+ * The names of properties.
1568
+ */
1569
+ propertyNames: PropertyNames;
1570
+ /**
1571
+ * A Boolean value that specifies whether the property group is inherited from a parent entity
1572
+ */
1573
+ isInherited: Boolean;
1574
+ }
1575
+ export type PropertyGroupUpdateType = "UPDATE"|"DELETE"|"CREATE"|string;
1576
+ export type PropertyGroupsRequest = {[key: string]: PropertyGroupRequest};
1577
+ export type PropertyGroupsResponse = {[key: string]: PropertyGroupResponse};
1343
1578
  export interface PropertyLatestValue {
1344
1579
  /**
1345
1580
  * An object that specifies information about a property.&gt;
@@ -1351,19 +1586,20 @@ declare namespace IoTTwinMaker {
1351
1586
  propertyValue?: DataValue;
1352
1587
  }
1353
1588
  export type PropertyLatestValueMap = {[key: string]: PropertyLatestValue};
1589
+ export type PropertyNames = Name[];
1354
1590
  export interface PropertyRequest {
1355
1591
  /**
1356
1592
  * An object that specifies information about a property.
1357
1593
  */
1358
1594
  definition?: PropertyDefinitionRequest;
1359
- /**
1360
- * The update type of the update property request.
1361
- */
1362
- updateType?: PropertyUpdateType;
1363
1595
  /**
1364
1596
  * The value of the property.
1365
1597
  */
1366
1598
  value?: DataValue;
1599
+ /**
1600
+ * The update type of the update property request.
1601
+ */
1602
+ updateType?: PropertyUpdateType;
1367
1603
  }
1368
1604
  export type PropertyRequests = {[key: string]: PropertyRequest};
1369
1605
  export interface PropertyResponse {
@@ -1377,12 +1613,9 @@ declare namespace IoTTwinMaker {
1377
1613
  value?: DataValue;
1378
1614
  }
1379
1615
  export type PropertyResponses = {[key: string]: PropertyResponse};
1616
+ export type PropertyTableValue = {[key: string]: DataValue};
1380
1617
  export type PropertyUpdateType = "UPDATE"|"DELETE"|"CREATE"|string;
1381
1618
  export interface PropertyValue {
1382
- /**
1383
- * ISO8601 DateTime of a value for a time series property. The time for when the property value was recorded in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.SSSSSSSSS][Z/±HH:mm]. [YYYY]: year [MM]: month [DD]: day [hh]: hour [mm]: minute [ss]: seconds [.SSSSSSSSS]: additional precision, where precedence is maintained. For example: [.573123] is equal to 573123000 nanoseconds. Z: default timezone UTC ± HH:mm: time zone offset in Hours and Minutes. Required sub-fields: YYYY-MM-DDThh:mm:ss and [Z/±HH:mm]
1384
- */
1385
- time?: Time;
1386
1619
  /**
1387
1620
  * The timestamp of a value for a time series property.
1388
1621
  */
@@ -1391,6 +1624,10 @@ declare namespace IoTTwinMaker {
1391
1624
  * An object that specifies a value for a time series property.
1392
1625
  */
1393
1626
  value: DataValue;
1627
+ /**
1628
+ * ISO8601 DateTime of a value for a time series property. The time for when the property value was recorded in ISO 8601 format: YYYY-MM-DDThh:mm:ss[.SSSSSSSSS][Z/±HH:mm]. [YYYY]: year [MM]: month [DD]: day [hh]: hour [mm]: minute [ss]: seconds [.SSSSSSSSS]: additional precision, where precedence is maintained. For example: [.573123] is equal to 573123000 nanoseconds. Z: default timezone UTC ± HH:mm: time zone offset in Hours and Minutes. Required sub-fields: YYYY-MM-DDThh:mm:ss and [Z/±HH:mm]
1629
+ */
1630
+ time?: Time;
1394
1631
  }
1395
1632
  export interface PropertyValueEntry {
1396
1633
  /**
@@ -1414,28 +1651,40 @@ declare namespace IoTTwinMaker {
1414
1651
  }
1415
1652
  export type PropertyValueList = PropertyValueHistory[];
1416
1653
  export type PropertyValues = PropertyValue[];
1654
+ export interface QueryResultValue {
1655
+ }
1656
+ export type QueryServiceMaxResults = number;
1657
+ export type QueryStatement = string;
1417
1658
  export interface Relationship {
1418
- /**
1419
- * The type of the relationship.
1420
- */
1421
- relationshipType?: String;
1422
1659
  /**
1423
1660
  * The ID of the target component type associated with this relationship.
1424
1661
  */
1425
1662
  targetComponentTypeId?: ComponentTypeId;
1426
- }
1427
- export interface RelationshipValue {
1428
1663
  /**
1429
- * The name of the target component associated with the relationship value.
1664
+ * The type of the relationship.
1430
1665
  */
1431
- targetComponentName?: Name;
1666
+ relationshipType?: String;
1667
+ }
1668
+ export interface RelationshipValue {
1432
1669
  /**
1433
1670
  * The ID of the target entity associated with this relationship value.
1434
1671
  */
1435
1672
  targetEntityId?: EntityId;
1673
+ /**
1674
+ * The name of the target component associated with the relationship value.
1675
+ */
1676
+ targetComponentName?: Name;
1436
1677
  }
1437
1678
  export type RequiredProperties = Name[];
1438
1679
  export type RoleArn = string;
1680
+ export interface Row {
1681
+ /**
1682
+ * The data in a row of query results.
1683
+ */
1684
+ rowData?: RowData;
1685
+ }
1686
+ export type RowData = QueryResultValue[];
1687
+ export type Rows = Row[];
1439
1688
  export type S3Location = string;
1440
1689
  export type S3Url = string;
1441
1690
  export type SceneCapabilities = SceneCapability[];
@@ -1443,44 +1692,56 @@ declare namespace IoTTwinMaker {
1443
1692
  export type SceneSummaries = SceneSummary[];
1444
1693
  export interface SceneSummary {
1445
1694
  /**
1446
- * The ARN of the scene.
1695
+ * The ID of the scene.
1447
1696
  */
1448
- arn: TwinMakerArn;
1697
+ sceneId: Id;
1449
1698
  /**
1450
1699
  * The relative path that specifies the location of the content definition file.
1451
1700
  */
1452
1701
  contentLocation: S3Url;
1453
1702
  /**
1454
- * The date and time when the scene was created.
1455
- */
1456
- creationDateTime: Timestamp;
1457
- /**
1458
- * The scene description.
1703
+ * The ARN of the scene.
1459
1704
  */
1460
- description?: Description;
1705
+ arn: TwinMakerArn;
1461
1706
  /**
1462
- * The ID of the scene.
1707
+ * The date and time when the scene was created.
1463
1708
  */
1464
- sceneId: Id;
1709
+ creationDateTime: Timestamp;
1465
1710
  /**
1466
1711
  * The date and time when the scene was last updated.
1467
1712
  */
1468
1713
  updateDateTime: Timestamp;
1714
+ /**
1715
+ * The scene description.
1716
+ */
1717
+ description?: Description;
1469
1718
  }
1470
1719
  export type Scope = "ENTITY"|"WORKSPACE"|string;
1471
1720
  export type SelectedPropertyList = String[];
1472
1721
  export type State = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|"ERROR"|string;
1473
1722
  export interface Status {
1723
+ /**
1724
+ * The current state of the entity, component, component type, or workspace.
1725
+ */
1726
+ state?: State;
1474
1727
  /**
1475
1728
  * The error message.
1476
1729
  */
1477
1730
  error?: ErrorDetails;
1731
+ }
1732
+ export type String = string;
1733
+ export interface TabularConditions {
1478
1734
  /**
1479
- * The current state of the entity, component, component type, or workspace.
1735
+ * Filter criteria that orders the output. It can be sorted in ascending or descending order.
1480
1736
  */
1481
- state?: State;
1737
+ orderBy?: OrderByList;
1738
+ /**
1739
+ * You can filter the request using various logical operators and a key-value format. For example: {"key": "serverType", "value": "webServer"}
1740
+ */
1741
+ propertyFilters?: PropertyFilters;
1482
1742
  }
1483
- export type String = string;
1743
+ export type TabularPropertyValue = PropertyTableValue[];
1744
+ export type TabularPropertyValues = TabularPropertyValue[];
1484
1745
  export type TagKey = string;
1485
1746
  export type TagKeyList = TagKey[];
1486
1747
  export type TagMap = {[key: string]: TagValue};
@@ -1514,6 +1775,14 @@ declare namespace IoTTwinMaker {
1514
1775
  export interface UntagResourceResponse {
1515
1776
  }
1516
1777
  export interface UpdateComponentTypeRequest {
1778
+ /**
1779
+ * The ID of the workspace that contains the component type.
1780
+ */
1781
+ workspaceId: Id;
1782
+ /**
1783
+ * A Boolean value that specifies whether an entity can have more than one component of this type.
1784
+ */
1785
+ isSingleton?: Boolean;
1517
1786
  /**
1518
1787
  * The ID of the component type.
1519
1788
  */
@@ -1522,6 +1791,10 @@ declare namespace IoTTwinMaker {
1522
1791
  * The description of the component type.
1523
1792
  */
1524
1793
  description?: Description;
1794
+ /**
1795
+ * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
1796
+ */
1797
+ propertyDefinitions?: PropertyDefinitionsRequest;
1525
1798
  /**
1526
1799
  * Specifies the component type that this component type extends.
1527
1800
  */
@@ -1531,19 +1804,15 @@ declare namespace IoTTwinMaker {
1531
1804
  */
1532
1805
  functions?: FunctionsRequest;
1533
1806
  /**
1534
- * A Boolean value that specifies whether an entity can have more than one component of this type.
1535
- */
1536
- isSingleton?: Boolean;
1537
- /**
1538
- * An object that maps strings to the property definitions in the component type. Each string in the mapping must be unique to this object.
1807
+ * The property groups
1539
1808
  */
1540
- propertyDefinitions?: PropertyDefinitionsRequest;
1809
+ propertyGroups?: PropertyGroupsRequest;
1810
+ }
1811
+ export interface UpdateComponentTypeResponse {
1541
1812
  /**
1542
1813
  * The ID of the workspace that contains the component type.
1543
1814
  */
1544
1815
  workspaceId: Id;
1545
- }
1546
- export interface UpdateComponentTypeResponse {
1547
1816
  /**
1548
1817
  * The ARN of the component type.
1549
1818
  */
@@ -1556,20 +1825,12 @@ declare namespace IoTTwinMaker {
1556
1825
  * The current state of the component type.
1557
1826
  */
1558
1827
  state: State;
1559
- /**
1560
- * The ID of the workspace that contains the component type.
1561
- */
1562
- workspaceId: Id;
1563
1828
  }
1564
1829
  export interface UpdateEntityRequest {
1565
1830
  /**
1566
- * An object that maps strings to the component updates in the request. Each string in the mapping must be unique to this object.
1567
- */
1568
- componentUpdates?: ComponentUpdatesMapRequest;
1569
- /**
1570
- * The description of the entity.
1831
+ * The ID of the workspace that contains the entity.
1571
1832
  */
1572
- description?: Description;
1833
+ workspaceId: Id;
1573
1834
  /**
1574
1835
  * The ID of the entity.
1575
1836
  */
@@ -1579,29 +1840,58 @@ declare namespace IoTTwinMaker {
1579
1840
  */
1580
1841
  entityName?: EntityName;
1581
1842
  /**
1582
- * An object that describes the update request for a parent entity.
1843
+ * The description of the entity.
1583
1844
  */
1584
- parentEntityUpdate?: ParentEntityUpdateRequest;
1845
+ description?: Description;
1585
1846
  /**
1586
- * The ID of the workspace that contains the entity.
1847
+ * An object that maps strings to the component updates in the request. Each string in the mapping must be unique to this object.
1587
1848
  */
1588
- workspaceId: Id;
1849
+ componentUpdates?: ComponentUpdatesMapRequest;
1850
+ /**
1851
+ * An object that describes the update request for a parent entity.
1852
+ */
1853
+ parentEntityUpdate?: ParentEntityUpdateRequest;
1589
1854
  }
1590
1855
  export interface UpdateEntityResponse {
1856
+ /**
1857
+ * The date and time when the entity was last updated.
1858
+ */
1859
+ updateDateTime: Timestamp;
1591
1860
  /**
1592
1861
  * The current state of the entity update.
1593
1862
  */
1594
1863
  state: State;
1864
+ }
1865
+ export interface UpdatePricingPlanRequest {
1595
1866
  /**
1596
- * The date and time when the entity was last updated.
1867
+ * The pricing mode.
1597
1868
  */
1598
- updateDateTime: Timestamp;
1869
+ pricingMode: PricingMode;
1870
+ /**
1871
+ * The bundle names.
1872
+ */
1873
+ bundleNames?: PricingBundles;
1874
+ }
1875
+ export interface UpdatePricingPlanResponse {
1876
+ /**
1877
+ * Update the current pricing plan.
1878
+ */
1879
+ currentPricingPlan: PricingPlan;
1880
+ /**
1881
+ * Update the pending pricing plan.
1882
+ */
1883
+ pendingPricingPlan?: PricingPlan;
1599
1884
  }
1885
+ export type UpdateReason = "DEFAULT"|"PRICING_TIER_UPDATE"|"ENTITY_COUNT_UPDATE"|"PRICING_MODE_UPDATE"|"OVERWRITTEN"|string;
1600
1886
  export interface UpdateSceneRequest {
1601
1887
  /**
1602
- * A list of capabilities that the scene uses to render.
1888
+ * The ID of the workspace that contains the scene.
1603
1889
  */
1604
- capabilities?: SceneCapabilities;
1890
+ workspaceId: Id;
1891
+ /**
1892
+ * The ID of the scene.
1893
+ */
1894
+ sceneId: Id;
1605
1895
  /**
1606
1896
  * The relative path that specifies the location of the content definition file.
1607
1897
  */
@@ -1611,13 +1901,9 @@ declare namespace IoTTwinMaker {
1611
1901
  */
1612
1902
  description?: Description;
1613
1903
  /**
1614
- * The ID of the scene.
1615
- */
1616
- sceneId: Id;
1617
- /**
1618
- * The ID of the workspace that contains the scene.
1904
+ * A list of capabilities that the scene uses to render.
1619
1905
  */
1620
- workspaceId: Id;
1906
+ capabilities?: SceneCapabilities;
1621
1907
  }
1622
1908
  export interface UpdateSceneResponse {
1623
1909
  /**
@@ -1626,6 +1912,10 @@ declare namespace IoTTwinMaker {
1626
1912
  updateDateTime: Timestamp;
1627
1913
  }
1628
1914
  export interface UpdateWorkspaceRequest {
1915
+ /**
1916
+ * The ID of the workspace.
1917
+ */
1918
+ workspaceId: Id;
1629
1919
  /**
1630
1920
  * The description of the workspace.
1631
1921
  */
@@ -1634,10 +1924,6 @@ declare namespace IoTTwinMaker {
1634
1924
  * The ARN of the execution role associated with the workspace.
1635
1925
  */
1636
1926
  role?: RoleArn;
1637
- /**
1638
- * The ID of the workspace.
1639
- */
1640
- workspaceId: Id;
1641
1927
  }
1642
1928
  export interface UpdateWorkspaceResponse {
1643
1929
  /**
@@ -1650,25 +1936,25 @@ declare namespace IoTTwinMaker {
1650
1936
  export type WorkspaceSummaries = WorkspaceSummary[];
1651
1937
  export interface WorkspaceSummary {
1652
1938
  /**
1653
- * The ARN of the workspace.
1939
+ * The ID of the workspace.
1654
1940
  */
1655
- arn: TwinMakerArn;
1941
+ workspaceId: Id;
1656
1942
  /**
1657
- * The date and time when the workspace was created.
1943
+ * The ARN of the workspace.
1658
1944
  */
1659
- creationDateTime: Timestamp;
1945
+ arn: TwinMakerArn;
1660
1946
  /**
1661
1947
  * The description of the workspace.
1662
1948
  */
1663
1949
  description?: Description;
1664
1950
  /**
1665
- * The date and time when the workspace was last updated.
1951
+ * The date and time when the workspace was created.
1666
1952
  */
1667
- updateDateTime: Timestamp;
1953
+ creationDateTime: Timestamp;
1668
1954
  /**
1669
- * The ID of the workspace.
1955
+ * The date and time when the workspace was last updated.
1670
1956
  */
1671
- workspaceId: Id;
1957
+ updateDateTime: Timestamp;
1672
1958
  }
1673
1959
  /**
1674
1960
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.