@aws-sdk/client-iottwinmaker 3.686.0 → 3.691.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.
@@ -22,23 +22,23 @@ export interface EntityPropertyReference {
22
22
  * <p>The name of the component.</p>
23
23
  * @public
24
24
  */
25
- componentName?: string;
25
+ componentName?: string | undefined;
26
26
  /**
27
27
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
28
28
  * @public
29
29
  */
30
- componentPath?: string;
30
+ componentPath?: string | undefined;
31
31
  /**
32
32
  * <p>A mapping of external IDs to property names. External IDs uniquely identify properties
33
33
  * from external data stores.</p>
34
34
  * @public
35
35
  */
36
- externalIdProperty?: Record<string, string>;
36
+ externalIdProperty?: Record<string, string> | undefined;
37
37
  /**
38
38
  * <p>The ID of the entity.</p>
39
39
  * @public
40
40
  */
41
- entityId?: string;
41
+ entityId?: string | undefined;
42
42
  /**
43
43
  * <p>The name of the property.</p>
44
44
  * @public
@@ -54,12 +54,12 @@ export interface RelationshipValue {
54
54
  * <p>The ID of the target entity associated with this relationship value.</p>
55
55
  * @public
56
56
  */
57
- targetEntityId?: string;
57
+ targetEntityId?: string | undefined;
58
58
  /**
59
59
  * <p>The name of the target component associated with the relationship value.</p>
60
60
  * @public
61
61
  */
62
- targetComponentName?: string;
62
+ targetComponentName?: string | undefined;
63
63
  }
64
64
  /**
65
65
  * <p>An unexpected error has occurred.</p>
@@ -128,22 +128,22 @@ export interface MetadataTransferJobProgress {
128
128
  * <p>The total count. [of what]</p>
129
129
  * @public
130
130
  */
131
- totalCount?: number;
131
+ totalCount?: number | undefined;
132
132
  /**
133
133
  * <p>The succeeded count.</p>
134
134
  * @public
135
135
  */
136
- succeededCount?: number;
136
+ succeededCount?: number | undefined;
137
137
  /**
138
138
  * <p>The skipped count.</p>
139
139
  * @public
140
140
  */
141
- skippedCount?: number;
141
+ skippedCount?: number | undefined;
142
142
  /**
143
143
  * <p>The failed count.</p>
144
144
  * @public
145
145
  */
146
- failedCount?: number;
146
+ failedCount?: number | undefined;
147
147
  }
148
148
  /**
149
149
  * @public
@@ -172,12 +172,12 @@ export interface ErrorDetails {
172
172
  * <p>The error code.</p>
173
173
  * @public
174
174
  */
175
- code?: ErrorCode;
175
+ code?: ErrorCode | undefined;
176
176
  /**
177
177
  * <p>The error message.</p>
178
178
  * @public
179
179
  */
180
- message?: string;
180
+ message?: string | undefined;
181
181
  }
182
182
  /**
183
183
  * @public
@@ -205,17 +205,17 @@ export interface MetadataTransferJobStatus {
205
205
  * <p>The metadata transfer job state.</p>
206
206
  * @public
207
207
  */
208
- state?: MetadataTransferJobState;
208
+ state?: MetadataTransferJobState | undefined;
209
209
  /**
210
210
  * <p>The metadata transfer job error.</p>
211
211
  * @public
212
212
  */
213
- error?: ErrorDetails;
213
+ error?: ErrorDetails | undefined;
214
214
  /**
215
215
  * <p>The queued position.</p>
216
216
  * @public
217
217
  */
218
- queuedPosition?: number;
218
+ queuedPosition?: number | undefined;
219
219
  }
220
220
  /**
221
221
  * @public
@@ -245,7 +245,7 @@ export interface CancelMetadataTransferJobResponse {
245
245
  * <p>The metadata transfer job's progress.</p>
246
246
  * @public
247
247
  */
248
- progress?: MetadataTransferJobProgress;
248
+ progress?: MetadataTransferJobProgress | undefined;
249
249
  }
250
250
  /**
251
251
  * <p>A conflict occurred.</p>
@@ -268,7 +268,7 @@ export interface CompositeComponentTypeRequest {
268
268
  * <p>This is the <code>componentTypeId</code> that the <code>compositeComponentType</code> refers to.</p>
269
269
  * @public
270
270
  */
271
- componentTypeId?: string;
271
+ componentTypeId?: string | undefined;
272
272
  }
273
273
  /**
274
274
  * <p>The Lambda function.</p>
@@ -290,13 +290,13 @@ export interface DataConnector {
290
290
  * <p>The Lambda function associated with this data connector.</p>
291
291
  * @public
292
292
  */
293
- lambda?: LambdaFunction;
293
+ lambda?: LambdaFunction | undefined;
294
294
  /**
295
295
  * <p>A Boolean value that specifies whether the data connector is native to IoT
296
296
  * TwinMaker.</p>
297
297
  * @public
298
298
  */
299
- isNative?: boolean;
299
+ isNative?: boolean | undefined;
300
300
  }
301
301
  /**
302
302
  * @public
@@ -319,17 +319,17 @@ export interface FunctionRequest {
319
319
  * <p>The required properties of the function.</p>
320
320
  * @public
321
321
  */
322
- requiredProperties?: string[];
322
+ requiredProperties?: string[] | undefined;
323
323
  /**
324
324
  * <p>The scope of the function.</p>
325
325
  * @public
326
326
  */
327
- scope?: Scope;
327
+ scope?: Scope | undefined;
328
328
  /**
329
329
  * <p>The data connector.</p>
330
330
  * @public
331
331
  */
332
- implementedBy?: DataConnector;
332
+ implementedBy?: DataConnector | undefined;
333
333
  }
334
334
  /**
335
335
  * <p>An object that specifies a relationship with another component type.</p>
@@ -340,12 +340,12 @@ export interface Relationship {
340
340
  * <p>The ID of the target component type associated with this relationship.</p>
341
341
  * @public
342
342
  */
343
- targetComponentTypeId?: string;
343
+ targetComponentTypeId?: string | undefined;
344
344
  /**
345
345
  * <p>The type of the relationship.</p>
346
346
  * @public
347
347
  */
348
- relationshipType?: string;
348
+ relationshipType?: string | undefined;
349
349
  }
350
350
  /**
351
351
  * @public
@@ -385,12 +385,12 @@ export interface PropertyGroupRequest {
385
385
  * <p>The group type.</p>
386
386
  * @public
387
387
  */
388
- groupType?: GroupType;
388
+ groupType?: GroupType | undefined;
389
389
  /**
390
390
  * <p>The names of properties.</p>
391
391
  * @public
392
392
  */
393
- propertyNames?: string[];
393
+ propertyNames?: string[] | undefined;
394
394
  }
395
395
  /**
396
396
  * @public
@@ -475,17 +475,17 @@ export interface ComponentPropertyGroupRequest {
475
475
  * <p>The group type.</p>
476
476
  * @public
477
477
  */
478
- groupType?: GroupType;
478
+ groupType?: GroupType | undefined;
479
479
  /**
480
480
  * <p>The property names.</p>
481
481
  * @public
482
482
  */
483
- propertyNames?: string[];
483
+ propertyNames?: string[] | undefined;
484
484
  /**
485
485
  * <p>The update type.</p>
486
486
  * @public
487
487
  */
488
- updateType?: PropertyGroupUpdateType;
488
+ updateType?: PropertyGroupUpdateType | undefined;
489
489
  }
490
490
  /**
491
491
  * @public
@@ -561,12 +561,12 @@ export interface DestinationConfiguration {
561
561
  * <p>The metadata transfer job S3 configuration. [need to add S3 entity]</p>
562
562
  * @public
563
563
  */
564
- s3Configuration?: S3DestinationConfiguration;
564
+ s3Configuration?: S3DestinationConfiguration | undefined;
565
565
  /**
566
566
  * <p>The metadata transfer job Amazon Web Services IoT TwinMaker configuration.</p>
567
567
  * @public
568
568
  */
569
- iotTwinMakerConfiguration?: IotTwinMakerDestinationConfiguration;
569
+ iotTwinMakerConfiguration?: IotTwinMakerDestinationConfiguration | undefined;
570
570
  }
571
571
  /**
572
572
  * <p>Filter by asset. [TwinMaker asset]</p>
@@ -577,22 +577,22 @@ export interface FilterByAsset {
577
577
  * <p>Filter by asset Id.</p>
578
578
  * @public
579
579
  */
580
- assetId?: string;
580
+ assetId?: string | undefined;
581
581
  /**
582
582
  * <p>The external-Id property of an asset. </p>
583
583
  * @public
584
584
  */
585
- assetExternalId?: string;
585
+ assetExternalId?: string | undefined;
586
586
  /**
587
587
  * <p>Includes sub-assets.[need description hekp for this]</p>
588
588
  * @public
589
589
  */
590
- includeOffspring?: boolean;
590
+ includeOffspring?: boolean | undefined;
591
591
  /**
592
592
  * <p>Boolean to include the asset model.</p>
593
593
  * @public
594
594
  */
595
- includeAssetModel?: boolean;
595
+ includeAssetModel?: boolean | undefined;
596
596
  }
597
597
  /**
598
598
  * <p>Filter by asset model.</p>
@@ -603,22 +603,22 @@ export interface FilterByAssetModel {
603
603
  * <p>The asset model Id.</p>
604
604
  * @public
605
605
  */
606
- assetModelId?: string;
606
+ assetModelId?: string | undefined;
607
607
  /**
608
608
  * <p>The external-Id property of an asset model.</p>
609
609
  * @public
610
610
  */
611
- assetModelExternalId?: string;
611
+ assetModelExternalId?: string | undefined;
612
612
  /**
613
613
  * <p>Include asset offspring. [need desc.]</p>
614
614
  * @public
615
615
  */
616
- includeOffspring?: boolean;
616
+ includeOffspring?: boolean | undefined;
617
617
  /**
618
618
  * <p>Bolean to include assets.</p>
619
619
  * @public
620
620
  */
621
- includeAssets?: boolean;
621
+ includeAssets?: boolean | undefined;
622
622
  }
623
623
  /**
624
624
  * <p>The AWS IoT SiteWise soucre configuration filter.[need held with desc here]</p>
@@ -671,7 +671,7 @@ export interface IotSiteWiseSourceConfiguration {
671
671
  * <p>The AWS IoT SiteWise soucre configuration filters.</p>
672
672
  * @public
673
673
  */
674
- filters?: IotSiteWiseSourceConfigurationFilter[];
674
+ filters?: IotSiteWiseSourceConfigurationFilter[] | undefined;
675
675
  }
676
676
  /**
677
677
  * <p>Filter by component type.</p>
@@ -751,7 +751,7 @@ export interface IotTwinMakerSourceConfiguration {
751
751
  * <p>The metadata transfer job AWS IoT TwinMaker source configuration filters.</p>
752
752
  * @public
753
753
  */
754
- filters?: IotTwinMakerSourceConfigurationFilter[];
754
+ filters?: IotTwinMakerSourceConfigurationFilter[] | undefined;
755
755
  }
756
756
  /**
757
757
  * <p>The S3 destination source configuration.</p>
@@ -791,17 +791,17 @@ export interface SourceConfiguration {
791
791
  * <p>The source configuration S3 configuration.</p>
792
792
  * @public
793
793
  */
794
- s3Configuration?: S3SourceConfiguration;
794
+ s3Configuration?: S3SourceConfiguration | undefined;
795
795
  /**
796
796
  * <p>The source configuration IoT SiteWise configuration.</p>
797
797
  * @public
798
798
  */
799
- iotSiteWiseConfiguration?: IotSiteWiseSourceConfiguration;
799
+ iotSiteWiseConfiguration?: IotSiteWiseSourceConfiguration | undefined;
800
800
  /**
801
801
  * <p>The source configuration IoT TwinMaker configuration.</p>
802
802
  * @public
803
803
  */
804
- iotTwinMakerConfiguration?: IotTwinMakerSourceConfiguration;
804
+ iotTwinMakerConfiguration?: IotTwinMakerSourceConfiguration | undefined;
805
805
  }
806
806
  /**
807
807
  * @public
@@ -811,12 +811,12 @@ export interface CreateMetadataTransferJobRequest {
811
811
  * <p>The metadata transfer job Id.</p>
812
812
  * @public
813
813
  */
814
- metadataTransferJobId?: string;
814
+ metadataTransferJobId?: string | undefined;
815
815
  /**
816
816
  * <p>The metadata transfer job description.</p>
817
817
  * @public
818
818
  */
819
- description?: string;
819
+ description?: string | undefined;
820
820
  /**
821
821
  * <p>The metadata transfer job sources.</p>
822
822
  * @public
@@ -876,22 +876,22 @@ export interface CreateSceneRequest {
876
876
  * <p>The description for this scene.</p>
877
877
  * @public
878
878
  */
879
- description?: string;
879
+ description?: string | undefined;
880
880
  /**
881
881
  * <p>A list of capabilities that the scene uses to render itself.</p>
882
882
  * @public
883
883
  */
884
- capabilities?: string[];
884
+ capabilities?: string[] | undefined;
885
885
  /**
886
886
  * <p>Metadata that you can use to manage the scene.</p>
887
887
  * @public
888
888
  */
889
- tags?: Record<string, string>;
889
+ tags?: Record<string, string> | undefined;
890
890
  /**
891
891
  * <p>The request metadata.</p>
892
892
  * @public
893
893
  */
894
- sceneMetadata?: Record<string, string>;
894
+ sceneMetadata?: Record<string, string> | undefined;
895
895
  }
896
896
  /**
897
897
  * @public
@@ -935,7 +935,7 @@ export interface CreateSyncJobRequest {
935
935
  * <p>The SyncJob tags.</p>
936
936
  * @public
937
937
  */
938
- tags?: Record<string, string>;
938
+ tags?: Record<string, string> | undefined;
939
939
  }
940
940
  /**
941
941
  * @public
@@ -985,23 +985,23 @@ export interface CreateWorkspaceRequest {
985
985
  * <p>The description of the workspace.</p>
986
986
  * @public
987
987
  */
988
- description?: string;
988
+ description?: string | undefined;
989
989
  /**
990
990
  * <p>The ARN of the S3 bucket where resources associated with the workspace are
991
991
  * stored.</p>
992
992
  * @public
993
993
  */
994
- s3Location?: string;
994
+ s3Location?: string | undefined;
995
995
  /**
996
996
  * <p>The ARN of the execution role associated with the workspace.</p>
997
997
  * @public
998
998
  */
999
- role?: string;
999
+ role?: string | undefined;
1000
1000
  /**
1001
1001
  * <p>Metadata that you can use to manage the workspace</p>
1002
1002
  * @public
1003
1003
  */
1004
- tags?: Record<string, string>;
1004
+ tags?: Record<string, string> | undefined;
1005
1005
  }
1006
1006
  /**
1007
1007
  * @public
@@ -1061,7 +1061,7 @@ export interface DeleteEntityRequest {
1061
1061
  * <p>A Boolean value that specifies whether the operation deletes child entities.</p>
1062
1062
  * @public
1063
1063
  */
1064
- isRecursive?: boolean;
1064
+ isRecursive?: boolean | undefined;
1065
1065
  }
1066
1066
  /**
1067
1067
  * @public
@@ -1139,7 +1139,7 @@ export interface DeleteWorkspaceResponse {
1139
1139
  * <p>The string that specifies the delete result for the workspace.</p>
1140
1140
  * @public
1141
1141
  */
1142
- message?: string;
1142
+ message?: string | undefined;
1143
1143
  }
1144
1144
  /**
1145
1145
  * @public
@@ -1159,12 +1159,12 @@ export interface ExecuteQueryRequest {
1159
1159
  * <p>The maximum number of results to return at one time. The default is 50.</p>
1160
1160
  * @public
1161
1161
  */
1162
- maxResults?: number;
1162
+ maxResults?: number | undefined;
1163
1163
  /**
1164
1164
  * <p>The string that specifies the next page of results.</p>
1165
1165
  * @public
1166
1166
  */
1167
- nextToken?: string;
1167
+ nextToken?: string | undefined;
1168
1168
  }
1169
1169
  /**
1170
1170
  * @public
@@ -1188,12 +1188,12 @@ export interface ColumnDescription {
1188
1188
  * <p>The name of the column description.</p>
1189
1189
  * @public
1190
1190
  */
1191
- name?: string;
1191
+ name?: string | undefined;
1192
1192
  /**
1193
1193
  * <p>The type of the column description.</p>
1194
1194
  * @public
1195
1195
  */
1196
- type?: ColumnType;
1196
+ type?: ColumnType | undefined;
1197
1197
  }
1198
1198
  /**
1199
1199
  * <p>Represents a single row in the query results.</p>
@@ -1204,7 +1204,7 @@ export interface Row {
1204
1204
  * <p>The data in a row of query results.</p>
1205
1205
  * @public
1206
1206
  */
1207
- rowData?: __DocumentType[];
1207
+ rowData?: __DocumentType[] | undefined;
1208
1208
  }
1209
1209
  /**
1210
1210
  * @public
@@ -1214,17 +1214,17 @@ export interface ExecuteQueryResponse {
1214
1214
  * <p>A list of ColumnDescription objects.</p>
1215
1215
  * @public
1216
1216
  */
1217
- columnDescriptions?: ColumnDescription[];
1217
+ columnDescriptions?: ColumnDescription[] | undefined;
1218
1218
  /**
1219
1219
  * <p>Represents a single row in the query results.</p>
1220
1220
  * @public
1221
1221
  */
1222
- rows?: Row[];
1222
+ rows?: Row[] | undefined;
1223
1223
  /**
1224
1224
  * <p>The string that specifies the next page of results.</p>
1225
1225
  * @public
1226
1226
  */
1227
- nextToken?: string;
1227
+ nextToken?: string | undefined;
1228
1228
  }
1229
1229
  /**
1230
1230
  * <p>The query timeout exception.</p>
@@ -1263,12 +1263,12 @@ export interface CompositeComponentTypeResponse {
1263
1263
  * <p>This is the <code>componentTypeId</code> that this <code>compositeComponentType</code> refers to.</p>
1264
1264
  * @public
1265
1265
  */
1266
- componentTypeId?: string;
1266
+ componentTypeId?: string | undefined;
1267
1267
  /**
1268
1268
  * <p>This boolean indicates whether this <code>compositeComponentType</code> is inherited from its parent.</p>
1269
1269
  * @public
1270
1270
  */
1271
- isInherited?: boolean;
1271
+ isInherited?: boolean | undefined;
1272
1272
  }
1273
1273
  /**
1274
1274
  * <p>The function response.</p>
@@ -1279,22 +1279,22 @@ export interface FunctionResponse {
1279
1279
  * <p>The required properties of the function.</p>
1280
1280
  * @public
1281
1281
  */
1282
- requiredProperties?: string[];
1282
+ requiredProperties?: string[] | undefined;
1283
1283
  /**
1284
1284
  * <p>The scope of the function.</p>
1285
1285
  * @public
1286
1286
  */
1287
- scope?: Scope;
1287
+ scope?: Scope | undefined;
1288
1288
  /**
1289
1289
  * <p>The data connector.</p>
1290
1290
  * @public
1291
1291
  */
1292
- implementedBy?: DataConnector;
1292
+ implementedBy?: DataConnector | undefined;
1293
1293
  /**
1294
1294
  * <p>Indicates whether this function is inherited.</p>
1295
1295
  * @public
1296
1296
  */
1297
- isInherited?: boolean;
1297
+ isInherited?: boolean | undefined;
1298
1298
  }
1299
1299
  /**
1300
1300
  * <p>The property group response</p>
@@ -1328,12 +1328,12 @@ export interface Status {
1328
1328
  * <p>The current state of the entity, component, component type, or workspace.</p>
1329
1329
  * @public
1330
1330
  */
1331
- state?: State;
1331
+ state?: State | undefined;
1332
1332
  /**
1333
1333
  * <p>The error message.</p>
1334
1334
  * @public
1335
1335
  */
1336
- error?: ErrorDetails;
1336
+ error?: ErrorDetails | undefined;
1337
1337
  }
1338
1338
  /**
1339
1339
  * @public
@@ -1391,17 +1391,17 @@ export interface ComponentSummary {
1391
1391
  * <p>The name of the property definition set in the request.</p>
1392
1392
  * @public
1393
1393
  */
1394
- definedIn?: string;
1394
+ definedIn?: string | undefined;
1395
1395
  /**
1396
1396
  * <p>The description of the component request.</p>
1397
1397
  * @public
1398
1398
  */
1399
- description?: string;
1399
+ description?: string | undefined;
1400
1400
  /**
1401
1401
  * <p>The property groups.</p>
1402
1402
  * @public
1403
1403
  */
1404
- propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
1404
+ propertyGroups?: Record<string, ComponentPropertyGroupResponse> | undefined;
1405
1405
  /**
1406
1406
  * <p>The status of the component type.</p>
1407
1407
  * @public
@@ -1411,12 +1411,12 @@ export interface ComponentSummary {
1411
1411
  * <p>The <code>syncSource</code> of the sync job, if this entity was created by a sync job.</p>
1412
1412
  * @public
1413
1413
  */
1414
- syncSource?: string;
1414
+ syncSource?: string | undefined;
1415
1415
  /**
1416
1416
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
1417
1417
  * @public
1418
1418
  */
1419
- componentPath?: string;
1419
+ componentPath?: string | undefined;
1420
1420
  }
1421
1421
  /**
1422
1422
  * @public
@@ -1446,7 +1446,7 @@ export interface GetMetadataTransferJobResponse {
1446
1446
  * <p>The metadata transfer job description.</p>
1447
1447
  * @public
1448
1448
  */
1449
- description?: string;
1449
+ description?: string | undefined;
1450
1450
  /**
1451
1451
  * <p>The metadata transfer job's sources.</p>
1452
1452
  * @public
@@ -1466,7 +1466,7 @@ export interface GetMetadataTransferJobResponse {
1466
1466
  * <p>The metadata transfer job's report URL.</p>
1467
1467
  * @public
1468
1468
  */
1469
- reportUrl?: string;
1469
+ reportUrl?: string | undefined;
1470
1470
  /**
1471
1471
  * <p>The metadata transfer job's creation DateTime property.</p>
1472
1472
  * @public
@@ -1486,7 +1486,7 @@ export interface GetMetadataTransferJobResponse {
1486
1486
  * <p>The metadata transfer job's progress.</p>
1487
1487
  * @public
1488
1488
  */
1489
- progress?: MetadataTransferJobProgress;
1489
+ progress?: MetadataTransferJobProgress | undefined;
1490
1490
  }
1491
1491
  /**
1492
1492
  * @public
@@ -1521,7 +1521,7 @@ export interface BundleInformation {
1521
1521
  * <p>The pricing tier.</p>
1522
1522
  * @public
1523
1523
  */
1524
- pricingTier?: PricingTier;
1524
+ pricingTier?: PricingTier | undefined;
1525
1525
  }
1526
1526
  /**
1527
1527
  * @public
@@ -1560,12 +1560,12 @@ export interface PricingPlan {
1560
1560
  * <p>The billable entity count.</p>
1561
1561
  * @public
1562
1562
  */
1563
- billableEntityCount?: number;
1563
+ billableEntityCount?: number | undefined;
1564
1564
  /**
1565
1565
  * <p>The pricing plan's bundle information.</p>
1566
1566
  * @public
1567
1567
  */
1568
- bundleInformation?: BundleInformation;
1568
+ bundleInformation?: BundleInformation | undefined;
1569
1569
  /**
1570
1570
  * <p>The effective date and time of the pricing plan.</p>
1571
1571
  * @public
@@ -1600,7 +1600,7 @@ export interface GetPricingPlanResponse {
1600
1600
  * <p>The pending pricing plan.</p>
1601
1601
  * @public
1602
1602
  */
1603
- pendingPricingPlan?: PricingPlan;
1603
+ pendingPricingPlan?: PricingPlan | undefined;
1604
1604
  }
1605
1605
  /**
1606
1606
  * <p>The connector failed.</p>
@@ -1648,7 +1648,7 @@ export interface OrderBy {
1648
1648
  * <p>The set order that filters results.</p>
1649
1649
  * @public
1650
1650
  */
1651
- order?: Order;
1651
+ order?: Order | undefined;
1652
1652
  /**
1653
1653
  * <p>The property name.</p>
1654
1654
  * @public
@@ -1675,12 +1675,12 @@ export interface InterpolationParameters {
1675
1675
  * <p>The interpolation type.</p>
1676
1676
  * @public
1677
1677
  */
1678
- interpolationType?: InterpolationType;
1678
+ interpolationType?: InterpolationType | undefined;
1679
1679
  /**
1680
1680
  * <p>The interpolation time interval in seconds.</p>
1681
1681
  * @public
1682
1682
  */
1683
- intervalInSeconds?: number;
1683
+ intervalInSeconds?: number | undefined;
1684
1684
  }
1685
1685
  /**
1686
1686
  * @public
@@ -1729,12 +1729,12 @@ export interface SceneError {
1729
1729
  * <p>The SceneError code.</p>
1730
1730
  * @public
1731
1731
  */
1732
- code?: SceneErrorCode;
1732
+ code?: SceneErrorCode | undefined;
1733
1733
  /**
1734
1734
  * <p>The SceneError message.</p>
1735
1735
  * @public
1736
1736
  */
1737
- message?: string;
1737
+ message?: string | undefined;
1738
1738
  }
1739
1739
  /**
1740
1740
  * @public
@@ -1774,27 +1774,27 @@ export interface GetSceneResponse {
1774
1774
  * <p>The description of the scene.</p>
1775
1775
  * @public
1776
1776
  */
1777
- description?: string;
1777
+ description?: string | undefined;
1778
1778
  /**
1779
1779
  * <p>A list of capabilities that the scene uses to render.</p>
1780
1780
  * @public
1781
1781
  */
1782
- capabilities?: string[];
1782
+ capabilities?: string[] | undefined;
1783
1783
  /**
1784
1784
  * <p>The response metadata.</p>
1785
1785
  * @public
1786
1786
  */
1787
- sceneMetadata?: Record<string, string>;
1787
+ sceneMetadata?: Record<string, string> | undefined;
1788
1788
  /**
1789
1789
  * <p>The generated scene metadata.</p>
1790
1790
  * @public
1791
1791
  */
1792
- generatedSceneMetadata?: Record<string, string>;
1792
+ generatedSceneMetadata?: Record<string, string> | undefined;
1793
1793
  /**
1794
1794
  * <p>The SceneResponse error.</p>
1795
1795
  * @public
1796
1796
  */
1797
- error?: SceneError;
1797
+ error?: SceneError | undefined;
1798
1798
  }
1799
1799
  /**
1800
1800
  * @public
@@ -1812,7 +1812,7 @@ export interface GetSyncJobRequest {
1812
1812
  * <p>The workspace ID.</p>
1813
1813
  * @public
1814
1814
  */
1815
- workspaceId?: string;
1815
+ workspaceId?: string | undefined;
1816
1816
  }
1817
1817
  /**
1818
1818
  * <p>The SyncJob status.</p>
@@ -1823,12 +1823,12 @@ export interface SyncJobStatus {
1823
1823
  * <p>The SyncJob status state.</p>
1824
1824
  * @public
1825
1825
  */
1826
- state?: SyncJobState;
1826
+ state?: SyncJobState | undefined;
1827
1827
  /**
1828
1828
  * <p>The SyncJob error.</p>
1829
1829
  * @public
1830
1830
  */
1831
- error?: ErrorDetails;
1831
+ error?: ErrorDetails | undefined;
1832
1832
  }
1833
1833
  /**
1834
1834
  * @public
@@ -1901,23 +1901,23 @@ export interface GetWorkspaceResponse {
1901
1901
  * <p>The description of the workspace.</p>
1902
1902
  * @public
1903
1903
  */
1904
- description?: string;
1904
+ description?: string | undefined;
1905
1905
  /**
1906
1906
  * <p>A list of services that are linked to the workspace.</p>
1907
1907
  * @public
1908
1908
  */
1909
- linkedServices?: string[];
1909
+ linkedServices?: string[] | undefined;
1910
1910
  /**
1911
1911
  * <p>The ARN of the S3 bucket where resources associated with the workspace are
1912
1912
  * stored.</p>
1913
1913
  * @public
1914
1914
  */
1915
- s3Location?: string;
1915
+ s3Location?: string | undefined;
1916
1916
  /**
1917
1917
  * <p>The ARN of the execution role associated with the workspace.</p>
1918
1918
  * @public
1919
1919
  */
1920
- role?: string;
1920
+ role?: string | undefined;
1921
1921
  /**
1922
1922
  * <p>The date and time when the workspace was created.</p>
1923
1923
  * @public
@@ -1947,17 +1947,17 @@ export interface ListComponentsRequest {
1947
1947
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
1948
1948
  * @public
1949
1949
  */
1950
- componentPath?: string;
1950
+ componentPath?: string | undefined;
1951
1951
  /**
1952
1952
  * <p>The maximum number of results returned at one time. The default is 25.</p>
1953
1953
  * @public
1954
1954
  */
1955
- maxResults?: number;
1955
+ maxResults?: number | undefined;
1956
1956
  /**
1957
1957
  * <p>The string that specifies the next page of results.</p>
1958
1958
  * @public
1959
1959
  */
1960
- nextToken?: string;
1960
+ nextToken?: string | undefined;
1961
1961
  }
1962
1962
  /**
1963
1963
  * @public
@@ -1972,7 +1972,7 @@ export interface ListComponentsResponse {
1972
1972
  * <p>The string that specifies the next page of component results.</p>
1973
1973
  * @public
1974
1974
  */
1975
- nextToken?: string;
1975
+ nextToken?: string | undefined;
1976
1976
  }
1977
1977
  /**
1978
1978
  * <p>An object that filters items in a list of component types.</p>
@@ -2047,18 +2047,18 @@ export interface ListComponentTypesRequest {
2047
2047
  * <p>A list of objects that filter the request.</p>
2048
2048
  * @public
2049
2049
  */
2050
- filters?: ListComponentTypesFilter[];
2050
+ filters?: ListComponentTypesFilter[] | undefined;
2051
2051
  /**
2052
2052
  * <p>The string that specifies the next page of results.</p>
2053
2053
  * @public
2054
2054
  */
2055
- nextToken?: string;
2055
+ nextToken?: string | undefined;
2056
2056
  /**
2057
2057
  * <p>The maximum number of results to return at one time. The default is 25.</p>
2058
2058
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
2059
2059
  * @public
2060
2060
  */
2061
- maxResults?: number;
2061
+ maxResults?: number | undefined;
2062
2062
  }
2063
2063
  /**
2064
2064
  * <p>An object that contains information about a component type.</p>
@@ -2089,17 +2089,17 @@ export interface ComponentTypeSummary {
2089
2089
  * <p>The description of the component type.</p>
2090
2090
  * @public
2091
2091
  */
2092
- description?: string;
2092
+ description?: string | undefined;
2093
2093
  /**
2094
2094
  * <p>The current status of the component type.</p>
2095
2095
  * @public
2096
2096
  */
2097
- status?: Status;
2097
+ status?: Status | undefined;
2098
2098
  /**
2099
2099
  * <p>The component type name.</p>
2100
2100
  * @public
2101
2101
  */
2102
- componentTypeName?: string;
2102
+ componentTypeName?: string | undefined;
2103
2103
  }
2104
2104
  /**
2105
2105
  * @public
@@ -2119,12 +2119,12 @@ export interface ListComponentTypesResponse {
2119
2119
  * <p>The string that specifies the next page of results.</p>
2120
2120
  * @public
2121
2121
  */
2122
- nextToken?: string;
2122
+ nextToken?: string | undefined;
2123
2123
  /**
2124
2124
  * <p>Specifies the maximum number of results to display.</p>
2125
2125
  * @public
2126
2126
  */
2127
- maxResults?: number;
2127
+ maxResults?: number | undefined;
2128
2128
  }
2129
2129
  /**
2130
2130
  * <p>An object that filters items in a list of entities.</p>
@@ -2199,18 +2199,18 @@ export interface ListEntitiesRequest {
2199
2199
  * </note>
2200
2200
  * @public
2201
2201
  */
2202
- filters?: ListEntitiesFilter[];
2202
+ filters?: ListEntitiesFilter[] | undefined;
2203
2203
  /**
2204
2204
  * <p>The maximum number of results to return at one time. The default is 25.</p>
2205
2205
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
2206
2206
  * @public
2207
2207
  */
2208
- maxResults?: number;
2208
+ maxResults?: number | undefined;
2209
2209
  /**
2210
2210
  * <p>The string that specifies the next page of results.</p>
2211
2211
  * @public
2212
2212
  */
2213
- nextToken?: string;
2213
+ nextToken?: string | undefined;
2214
2214
  }
2215
2215
  /**
2216
2216
  * <p>An object that contains information about an entity.</p>
@@ -2236,7 +2236,7 @@ export interface EntitySummary {
2236
2236
  * <p>The ID of the parent entity.</p>
2237
2237
  * @public
2238
2238
  */
2239
- parentEntityId?: string;
2239
+ parentEntityId?: string | undefined;
2240
2240
  /**
2241
2241
  * <p>The current status of the entity.</p>
2242
2242
  * @public
@@ -2246,12 +2246,12 @@ export interface EntitySummary {
2246
2246
  * <p>The description of the entity.</p>
2247
2247
  * @public
2248
2248
  */
2249
- description?: string;
2249
+ description?: string | undefined;
2250
2250
  /**
2251
2251
  * <p>An <b>eventual</b> Boolean value that specifies whether the entity has child entities or not.</p>
2252
2252
  * @public
2253
2253
  */
2254
- hasChildEntities?: boolean;
2254
+ hasChildEntities?: boolean | undefined;
2255
2255
  /**
2256
2256
  * <p>The date and time when the entity was created.</p>
2257
2257
  * @public
@@ -2271,12 +2271,12 @@ export interface ListEntitiesResponse {
2271
2271
  * <p>A list of objects that contain information about the entities.</p>
2272
2272
  * @public
2273
2273
  */
2274
- entitySummaries?: EntitySummary[];
2274
+ entitySummaries?: EntitySummary[] | undefined;
2275
2275
  /**
2276
2276
  * <p>The string that specifies the next page of results.</p>
2277
2277
  * @public
2278
2278
  */
2279
- nextToken?: string;
2279
+ nextToken?: string | undefined;
2280
2280
  }
2281
2281
  /**
2282
2282
  * <p>The ListMetadataTransferJobs filter.</p>
@@ -2338,17 +2338,17 @@ export interface ListMetadataTransferJobsRequest {
2338
2338
  * <p>An object that filters metadata transfer jobs.</p>
2339
2339
  * @public
2340
2340
  */
2341
- filters?: ListMetadataTransferJobsFilter[];
2341
+ filters?: ListMetadataTransferJobsFilter[] | undefined;
2342
2342
  /**
2343
2343
  * <p>The string that specifies the next page of results.</p>
2344
2344
  * @public
2345
2345
  */
2346
- nextToken?: string;
2346
+ nextToken?: string | undefined;
2347
2347
  /**
2348
2348
  * <p>The maximum number of results to return at one time.</p>
2349
2349
  * @public
2350
2350
  */
2351
- maxResults?: number;
2351
+ maxResults?: number | undefined;
2352
2352
  }
2353
2353
  /**
2354
2354
  * <p>The metadata transfer job summary.</p>
@@ -2384,7 +2384,7 @@ export interface MetadataTransferJobSummary {
2384
2384
  * <p>The metadata transfer job summary progess.</p>
2385
2385
  * @public
2386
2386
  */
2387
- progress?: MetadataTransferJobProgress;
2387
+ progress?: MetadataTransferJobProgress | undefined;
2388
2388
  }
2389
2389
  /**
2390
2390
  * @public
@@ -2399,7 +2399,7 @@ export interface ListMetadataTransferJobsResponse {
2399
2399
  * <p>The string that specifies the next page of results.</p>
2400
2400
  * @public
2401
2401
  */
2402
- nextToken?: string;
2402
+ nextToken?: string | undefined;
2403
2403
  }
2404
2404
  /**
2405
2405
  * @public
@@ -2414,12 +2414,12 @@ export interface ListPropertiesRequest {
2414
2414
  * <p>The name of the component whose properties are returned by the operation.</p>
2415
2415
  * @public
2416
2416
  */
2417
- componentName?: string;
2417
+ componentName?: string | undefined;
2418
2418
  /**
2419
2419
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
2420
2420
  * @public
2421
2421
  */
2422
- componentPath?: string;
2422
+ componentPath?: string | undefined;
2423
2423
  /**
2424
2424
  * <p>The ID for the entity whose metadata (component/properties) is returned by the operation.</p>
2425
2425
  * @public
@@ -2429,12 +2429,12 @@ export interface ListPropertiesRequest {
2429
2429
  * <p>The maximum number of results returned at one time. The default is 25.</p>
2430
2430
  * @public
2431
2431
  */
2432
- maxResults?: number;
2432
+ maxResults?: number | undefined;
2433
2433
  /**
2434
2434
  * <p>The string that specifies the next page of results.</p>
2435
2435
  * @public
2436
2436
  */
2437
- nextToken?: string;
2437
+ nextToken?: string | undefined;
2438
2438
  }
2439
2439
  /**
2440
2440
  * @public
@@ -2449,12 +2449,12 @@ export interface ListScenesRequest {
2449
2449
  * <p>Specifies the maximum number of results to display.</p>
2450
2450
  * @public
2451
2451
  */
2452
- maxResults?: number;
2452
+ maxResults?: number | undefined;
2453
2453
  /**
2454
2454
  * <p>The string that specifies the next page of results.</p>
2455
2455
  * @public
2456
2456
  */
2457
- nextToken?: string;
2457
+ nextToken?: string | undefined;
2458
2458
  }
2459
2459
  /**
2460
2460
  * <p>An object that contains information about a scene.</p>
@@ -2490,7 +2490,7 @@ export interface SceneSummary {
2490
2490
  * <p>The scene description.</p>
2491
2491
  * @public
2492
2492
  */
2493
- description?: string;
2493
+ description?: string | undefined;
2494
2494
  }
2495
2495
  /**
2496
2496
  * @public
@@ -2500,12 +2500,12 @@ export interface ListScenesResponse {
2500
2500
  * <p>A list of objects that contain information about the scenes.</p>
2501
2501
  * @public
2502
2502
  */
2503
- sceneSummaries?: SceneSummary[];
2503
+ sceneSummaries?: SceneSummary[] | undefined;
2504
2504
  /**
2505
2505
  * <p>The string that specifies the next page of results.</p>
2506
2506
  * @public
2507
2507
  */
2508
- nextToken?: string;
2508
+ nextToken?: string | undefined;
2509
2509
  }
2510
2510
  /**
2511
2511
  * @public
@@ -2521,12 +2521,12 @@ export interface ListSyncJobsRequest {
2521
2521
  * <p>Valid Range: Minimum value of 0. Maximum value of 200.</p>
2522
2522
  * @public
2523
2523
  */
2524
- maxResults?: number;
2524
+ maxResults?: number | undefined;
2525
2525
  /**
2526
2526
  * <p>The string that specifies the next page of results.</p>
2527
2527
  * @public
2528
2528
  */
2529
- nextToken?: string;
2529
+ nextToken?: string | undefined;
2530
2530
  }
2531
2531
  /**
2532
2532
  * <p>The SyncJob summary.</p>
@@ -2537,32 +2537,32 @@ export interface SyncJobSummary {
2537
2537
  * <p>The SyncJob summary ARN.</p>
2538
2538
  * @public
2539
2539
  */
2540
- arn?: string;
2540
+ arn?: string | undefined;
2541
2541
  /**
2542
2542
  * <p>The ID of the workspace that contains the sync job.</p>
2543
2543
  * @public
2544
2544
  */
2545
- workspaceId?: string;
2545
+ workspaceId?: string | undefined;
2546
2546
  /**
2547
2547
  * <p>The sync source.</p>
2548
2548
  * @public
2549
2549
  */
2550
- syncSource?: string;
2550
+ syncSource?: string | undefined;
2551
2551
  /**
2552
2552
  * <p>The SyncJob summaries status.</p>
2553
2553
  * @public
2554
2554
  */
2555
- status?: SyncJobStatus;
2555
+ status?: SyncJobStatus | undefined;
2556
2556
  /**
2557
2557
  * <p>The creation date and time.</p>
2558
2558
  * @public
2559
2559
  */
2560
- creationDateTime?: Date;
2560
+ creationDateTime?: Date | undefined;
2561
2561
  /**
2562
2562
  * <p>The update date and time.</p>
2563
2563
  * @public
2564
2564
  */
2565
- updateDateTime?: Date;
2565
+ updateDateTime?: Date | undefined;
2566
2566
  }
2567
2567
  /**
2568
2568
  * @public
@@ -2572,12 +2572,12 @@ export interface ListSyncJobsResponse {
2572
2572
  * <p>The listed SyncJob summaries.</p>
2573
2573
  * @public
2574
2574
  */
2575
- syncJobSummaries?: SyncJobSummary[];
2575
+ syncJobSummaries?: SyncJobSummary[] | undefined;
2576
2576
  /**
2577
2577
  * <p>The string that specifies the next page of results.</p>
2578
2578
  * @public
2579
2579
  */
2580
- nextToken?: string;
2580
+ nextToken?: string | undefined;
2581
2581
  }
2582
2582
  /**
2583
2583
  * @public
@@ -2711,18 +2711,18 @@ export interface ListSyncResourcesRequest {
2711
2711
  * </ul>
2712
2712
  * @public
2713
2713
  */
2714
- filters?: SyncResourceFilter[];
2714
+ filters?: SyncResourceFilter[] | undefined;
2715
2715
  /**
2716
2716
  * <p>The maximum number of results to return at one time. The default is 50.</p>
2717
2717
  * <p>Valid Range: Minimum value of 0. Maximum value of 200.</p>
2718
2718
  * @public
2719
2719
  */
2720
- maxResults?: number;
2720
+ maxResults?: number | undefined;
2721
2721
  /**
2722
2722
  * <p>The string that specifies the next page of results.</p>
2723
2723
  * @public
2724
2724
  */
2725
- nextToken?: string;
2725
+ nextToken?: string | undefined;
2726
2726
  }
2727
2727
  /**
2728
2728
  * <p>The sync resource status.</p>
@@ -2733,12 +2733,12 @@ export interface SyncResourceStatus {
2733
2733
  * <p>The sync resource status state.</p>
2734
2734
  * @public
2735
2735
  */
2736
- state?: SyncResourceState;
2736
+ state?: SyncResourceState | undefined;
2737
2737
  /**
2738
2738
  * <p>The status error.</p>
2739
2739
  * @public
2740
2740
  */
2741
- error?: ErrorDetails;
2741
+ error?: ErrorDetails | undefined;
2742
2742
  }
2743
2743
  /**
2744
2744
  * <p>The sync resource summary.</p>
@@ -2749,27 +2749,27 @@ export interface SyncResourceSummary {
2749
2749
  * <p>The resource type.</p>
2750
2750
  * @public
2751
2751
  */
2752
- resourceType?: SyncResourceType;
2752
+ resourceType?: SyncResourceType | undefined;
2753
2753
  /**
2754
2754
  * <p>The external ID.</p>
2755
2755
  * @public
2756
2756
  */
2757
- externalId?: string;
2757
+ externalId?: string | undefined;
2758
2758
  /**
2759
2759
  * <p>The resource ID.</p>
2760
2760
  * @public
2761
2761
  */
2762
- resourceId?: string;
2762
+ resourceId?: string | undefined;
2763
2763
  /**
2764
2764
  * <p>The sync resource summary status.</p>
2765
2765
  * @public
2766
2766
  */
2767
- status?: SyncResourceStatus;
2767
+ status?: SyncResourceStatus | undefined;
2768
2768
  /**
2769
2769
  * <p>The update date and time.</p>
2770
2770
  * @public
2771
2771
  */
2772
- updateDateTime?: Date;
2772
+ updateDateTime?: Date | undefined;
2773
2773
  }
2774
2774
  /**
2775
2775
  * @public
@@ -2779,12 +2779,12 @@ export interface ListSyncResourcesResponse {
2779
2779
  * <p>The sync resources.</p>
2780
2780
  * @public
2781
2781
  */
2782
- syncResources?: SyncResourceSummary[];
2782
+ syncResources?: SyncResourceSummary[] | undefined;
2783
2783
  /**
2784
2784
  * <p>The string that specifies the next page of results.</p>
2785
2785
  * @public
2786
2786
  */
2787
- nextToken?: string;
2787
+ nextToken?: string | undefined;
2788
2788
  }
2789
2789
  /**
2790
2790
  * @public
@@ -2800,12 +2800,12 @@ export interface ListTagsForResourceRequest {
2800
2800
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
2801
2801
  * @public
2802
2802
  */
2803
- maxResults?: number;
2803
+ maxResults?: number | undefined;
2804
2804
  /**
2805
2805
  * <p>The string that specifies the next page of results.</p>
2806
2806
  * @public
2807
2807
  */
2808
- nextToken?: string;
2808
+ nextToken?: string | undefined;
2809
2809
  }
2810
2810
  /**
2811
2811
  * @public
@@ -2815,12 +2815,12 @@ export interface ListTagsForResourceResponse {
2815
2815
  * <p>Metadata that you can use to manage a resource.</p>
2816
2816
  * @public
2817
2817
  */
2818
- tags?: Record<string, string>;
2818
+ tags?: Record<string, string> | undefined;
2819
2819
  /**
2820
2820
  * <p>The string that specifies the next page of results.</p>
2821
2821
  * @public
2822
2822
  */
2823
- nextToken?: string;
2823
+ nextToken?: string | undefined;
2824
2824
  }
2825
2825
  /**
2826
2826
  * @public
@@ -2831,12 +2831,12 @@ export interface ListWorkspacesRequest {
2831
2831
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
2832
2832
  * @public
2833
2833
  */
2834
- maxResults?: number;
2834
+ maxResults?: number | undefined;
2835
2835
  /**
2836
2836
  * <p>The string that specifies the next page of results.</p>
2837
2837
  * @public
2838
2838
  */
2839
- nextToken?: string;
2839
+ nextToken?: string | undefined;
2840
2840
  }
2841
2841
  /**
2842
2842
  * <p>An object that contains information about a workspace.</p>
@@ -2857,12 +2857,12 @@ export interface WorkspaceSummary {
2857
2857
  * <p>The description of the workspace.</p>
2858
2858
  * @public
2859
2859
  */
2860
- description?: string;
2860
+ description?: string | undefined;
2861
2861
  /**
2862
2862
  * <p>A list of services that are linked to the workspace.</p>
2863
2863
  * @public
2864
2864
  */
2865
- linkedServices?: string[];
2865
+ linkedServices?: string[] | undefined;
2866
2866
  /**
2867
2867
  * <p>The date and time when the workspace was created.</p>
2868
2868
  * @public
@@ -2882,12 +2882,12 @@ export interface ListWorkspacesResponse {
2882
2882
  * <p>A list of objects that contain information about the workspaces.</p>
2883
2883
  * @public
2884
2884
  */
2885
- workspaceSummaries?: WorkspaceSummary[];
2885
+ workspaceSummaries?: WorkspaceSummary[] | undefined;
2886
2886
  /**
2887
2887
  * <p>The string that specifies the next page of results.</p>
2888
2888
  * @public
2889
2889
  */
2890
- nextToken?: string;
2890
+ nextToken?: string | undefined;
2891
2891
  }
2892
2892
  /**
2893
2893
  * @public
@@ -3006,7 +3006,7 @@ export interface ParentEntityUpdateRequest {
3006
3006
  * <p>The ID of the parent entity.</p>
3007
3007
  * @public
3008
3008
  */
3009
- parentEntityId?: string;
3009
+ parentEntityId?: string | undefined;
3010
3010
  }
3011
3011
  /**
3012
3012
  * @public
@@ -3036,7 +3036,7 @@ export interface UpdatePricingPlanRequest {
3036
3036
  * <p>The bundle names.</p>
3037
3037
  * @public
3038
3038
  */
3039
- bundleNames?: string[];
3039
+ bundleNames?: string[] | undefined;
3040
3040
  }
3041
3041
  /**
3042
3042
  * @public
@@ -3051,7 +3051,7 @@ export interface UpdatePricingPlanResponse {
3051
3051
  * <p>Update the pending pricing plan.</p>
3052
3052
  * @public
3053
3053
  */
3054
- pendingPricingPlan?: PricingPlan;
3054
+ pendingPricingPlan?: PricingPlan | undefined;
3055
3055
  }
3056
3056
  /**
3057
3057
  * @public
@@ -3071,22 +3071,22 @@ export interface UpdateSceneRequest {
3071
3071
  * <p>The relative path that specifies the location of the content definition file.</p>
3072
3072
  * @public
3073
3073
  */
3074
- contentLocation?: string;
3074
+ contentLocation?: string | undefined;
3075
3075
  /**
3076
3076
  * <p>The description of this scene.</p>
3077
3077
  * @public
3078
3078
  */
3079
- description?: string;
3079
+ description?: string | undefined;
3080
3080
  /**
3081
3081
  * <p>A list of capabilities that the scene uses to render.</p>
3082
3082
  * @public
3083
3083
  */
3084
- capabilities?: string[];
3084
+ capabilities?: string[] | undefined;
3085
3085
  /**
3086
3086
  * <p>The scene metadata.</p>
3087
3087
  * @public
3088
3088
  */
3089
- sceneMetadata?: Record<string, string>;
3089
+ sceneMetadata?: Record<string, string> | undefined;
3090
3090
  }
3091
3091
  /**
3092
3092
  * @public
@@ -3111,18 +3111,18 @@ export interface UpdateWorkspaceRequest {
3111
3111
  * <p>The description of the workspace.</p>
3112
3112
  * @public
3113
3113
  */
3114
- description?: string;
3114
+ description?: string | undefined;
3115
3115
  /**
3116
3116
  * <p>The ARN of the execution role associated with the workspace.</p>
3117
3117
  * @public
3118
3118
  */
3119
- role?: string;
3119
+ role?: string | undefined;
3120
3120
  /**
3121
3121
  * <p>The ARN of the S3 bucket where resources associated with the workspace are
3122
3122
  * stored.</p>
3123
3123
  * @public
3124
3124
  */
3125
- s3Location?: string;
3125
+ s3Location?: string | undefined;
3126
3126
  }
3127
3127
  /**
3128
3128
  * @public
@@ -3143,47 +3143,47 @@ export interface DataValue {
3143
3143
  * <p>A Boolean value.</p>
3144
3144
  * @public
3145
3145
  */
3146
- booleanValue?: boolean;
3146
+ booleanValue?: boolean | undefined;
3147
3147
  /**
3148
3148
  * <p>A double value.</p>
3149
3149
  * @public
3150
3150
  */
3151
- doubleValue?: number;
3151
+ doubleValue?: number | undefined;
3152
3152
  /**
3153
3153
  * <p>An integer value.</p>
3154
3154
  * @public
3155
3155
  */
3156
- integerValue?: number;
3156
+ integerValue?: number | undefined;
3157
3157
  /**
3158
3158
  * <p>A long value.</p>
3159
3159
  * @public
3160
3160
  */
3161
- longValue?: number;
3161
+ longValue?: number | undefined;
3162
3162
  /**
3163
3163
  * <p>A string value.</p>
3164
3164
  * @public
3165
3165
  */
3166
- stringValue?: string;
3166
+ stringValue?: string | undefined;
3167
3167
  /**
3168
3168
  * <p>A list of multiple values.</p>
3169
3169
  * @public
3170
3170
  */
3171
- listValue?: DataValue[];
3171
+ listValue?: DataValue[] | undefined;
3172
3172
  /**
3173
3173
  * <p>An object that maps strings to multiple <code>DataValue</code> objects.</p>
3174
3174
  * @public
3175
3175
  */
3176
- mapValue?: Record<string, DataValue>;
3176
+ mapValue?: Record<string, DataValue> | undefined;
3177
3177
  /**
3178
3178
  * <p>A value that relates a component to another component.</p>
3179
3179
  * @public
3180
3180
  */
3181
- relationshipValue?: RelationshipValue;
3181
+ relationshipValue?: RelationshipValue | undefined;
3182
3182
  /**
3183
3183
  * <p>An expression that produces the value.</p>
3184
3184
  * @public
3185
3185
  */
3186
- expression?: string;
3186
+ expression?: string | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * <p>An object that filters items returned by a property request.</p>
@@ -3194,17 +3194,17 @@ export interface PropertyFilter {
3194
3194
  * <p>The property name associated with this property filter.</p>
3195
3195
  * @public
3196
3196
  */
3197
- propertyName?: string;
3197
+ propertyName?: string | undefined;
3198
3198
  /**
3199
3199
  * <p>The operator associated with this property filter.</p>
3200
3200
  * @public
3201
3201
  */
3202
- operator?: string;
3202
+ operator?: string | undefined;
3203
3203
  /**
3204
3204
  * <p>The value associated with this property filter.</p>
3205
3205
  * @public
3206
3206
  */
3207
- value?: DataValue;
3207
+ value?: DataValue | undefined;
3208
3208
  }
3209
3209
  /**
3210
3210
  * <p>The latest value of the property.</p>
@@ -3220,7 +3220,7 @@ export interface PropertyLatestValue {
3220
3220
  * <p>The value of the property.</p>
3221
3221
  * @public
3222
3222
  */
3223
- propertyValue?: DataValue;
3223
+ propertyValue?: DataValue | undefined;
3224
3224
  }
3225
3225
  /**
3226
3226
  * <p>An object that contains information about a value for a time series property.</p>
@@ -3233,7 +3233,7 @@ export interface PropertyValue {
3233
3233
  * <p>The timestamp of a value for a time series property.</p>
3234
3234
  * @public
3235
3235
  */
3236
- timestamp?: Date;
3236
+ timestamp?: Date | undefined;
3237
3237
  /**
3238
3238
  * <p>An object that specifies a value for a time series property.</p>
3239
3239
  * @public
@@ -3286,7 +3286,7 @@ export interface PropertyValue {
3286
3286
  * <i>Required sub-fields</i>: YYYY-MM-DDThh:mm:ss and [Z/±HH:mm]</p>
3287
3287
  * @public
3288
3288
  */
3289
- time?: string;
3289
+ time?: string | undefined;
3290
3290
  }
3291
3291
  /**
3292
3292
  * <p>An object that specifies the data type of a property.</p>
@@ -3302,22 +3302,22 @@ export interface DataType {
3302
3302
  * <p>The nested type in the data type.</p>
3303
3303
  * @public
3304
3304
  */
3305
- nestedType?: DataType;
3305
+ nestedType?: DataType | undefined;
3306
3306
  /**
3307
3307
  * <p>The allowed values for this data type.</p>
3308
3308
  * @public
3309
3309
  */
3310
- allowedValues?: DataValue[];
3310
+ allowedValues?: DataValue[] | undefined;
3311
3311
  /**
3312
3312
  * <p>The unit of measure used in this data type.</p>
3313
3313
  * @public
3314
3314
  */
3315
- unitOfMeasure?: string;
3315
+ unitOfMeasure?: string | undefined;
3316
3316
  /**
3317
3317
  * <p>A relationship that associates a component with another component.</p>
3318
3318
  * @public
3319
3319
  */
3320
- relationship?: Relationship;
3320
+ relationship?: Relationship | undefined;
3321
3321
  }
3322
3322
  /**
3323
3323
  * @public
@@ -3332,22 +3332,22 @@ export interface GetPropertyValueHistoryRequest {
3332
3332
  * <p>The ID of the entity.</p>
3333
3333
  * @public
3334
3334
  */
3335
- entityId?: string;
3335
+ entityId?: string | undefined;
3336
3336
  /**
3337
3337
  * <p>The name of the component.</p>
3338
3338
  * @public
3339
3339
  */
3340
- componentName?: string;
3340
+ componentName?: string | undefined;
3341
3341
  /**
3342
3342
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
3343
3343
  * @public
3344
3344
  */
3345
- componentPath?: string;
3345
+ componentPath?: string | undefined;
3346
3346
  /**
3347
3347
  * <p>The ID of the component type.</p>
3348
3348
  * @public
3349
3349
  */
3350
- componentTypeId?: string;
3350
+ componentTypeId?: string | undefined;
3351
3351
  /**
3352
3352
  * <p>A list of properties whose value histories the request retrieves.</p>
3353
3353
  * @public
@@ -3357,55 +3357,55 @@ export interface GetPropertyValueHistoryRequest {
3357
3357
  * <p>A list of objects that filter the property value history request.</p>
3358
3358
  * @public
3359
3359
  */
3360
- propertyFilters?: PropertyFilter[];
3360
+ propertyFilters?: PropertyFilter[] | undefined;
3361
3361
  /**
3362
3362
  * @deprecated
3363
3363
  *
3364
3364
  * <p>The date and time of the earliest property value to return.</p>
3365
3365
  * @public
3366
3366
  */
3367
- startDateTime?: Date;
3367
+ startDateTime?: Date | undefined;
3368
3368
  /**
3369
3369
  * @deprecated
3370
3370
  *
3371
3371
  * <p>The date and time of the latest property value to return.</p>
3372
3372
  * @public
3373
3373
  */
3374
- endDateTime?: Date;
3374
+ endDateTime?: Date | undefined;
3375
3375
  /**
3376
3376
  * <p>An object that specifies the interpolation type and the interval over which to
3377
3377
  * interpolate data.</p>
3378
3378
  * @public
3379
3379
  */
3380
- interpolation?: InterpolationParameters;
3380
+ interpolation?: InterpolationParameters | undefined;
3381
3381
  /**
3382
3382
  * <p>The string that specifies the next page of results.</p>
3383
3383
  * @public
3384
3384
  */
3385
- nextToken?: string;
3385
+ nextToken?: string | undefined;
3386
3386
  /**
3387
3387
  * <p>The maximum number of results to return at one time. The default is 25.</p>
3388
3388
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
3389
3389
  * @public
3390
3390
  */
3391
- maxResults?: number;
3391
+ maxResults?: number | undefined;
3392
3392
  /**
3393
3393
  * <p>The time direction to use in the result order.</p>
3394
3394
  * @public
3395
3395
  */
3396
- orderByTime?: OrderByTime;
3396
+ orderByTime?: OrderByTime | undefined;
3397
3397
  /**
3398
3398
  * <p>The ISO8601 DateTime of the earliest property value to return.</p>
3399
3399
  * <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html">PropertyValue</a>.</p>
3400
3400
  * @public
3401
3401
  */
3402
- startTime?: string;
3402
+ startTime?: string | undefined;
3403
3403
  /**
3404
3404
  * <p>The ISO8601 DateTime of the latest property value to return.</p>
3405
3405
  * <p>For more information about the ISO8601 DateTime format, see the data type <a href="https://docs.aws.amazon.com/iot-twinmaker/latest/apireference/API_PropertyValue.html">PropertyValue</a>.</p>
3406
3406
  * @public
3407
3407
  */
3408
- endTime?: string;
3408
+ endTime?: string | undefined;
3409
3409
  }
3410
3410
  /**
3411
3411
  * <p>An object that specifies information about time series property values. This object is
@@ -3422,7 +3422,7 @@ export interface PropertyValueEntry {
3422
3422
  * <p>A list of objects that specify time series property values.</p>
3423
3423
  * @public
3424
3424
  */
3425
- propertyValues?: PropertyValue[];
3425
+ propertyValues?: PropertyValue[] | undefined;
3426
3426
  }
3427
3427
  /**
3428
3428
  * <p>The history of values for a time series property.</p>
@@ -3439,7 +3439,7 @@ export interface PropertyValueHistory {
3439
3439
  * series property.</p>
3440
3440
  * @public
3441
3441
  */
3442
- values?: PropertyValue[];
3442
+ values?: PropertyValue[] | undefined;
3443
3443
  }
3444
3444
  /**
3445
3445
  * <p>The tabular conditions.</p>
@@ -3451,7 +3451,7 @@ export interface TabularConditions {
3451
3451
  * order.</p>
3452
3452
  * @public
3453
3453
  */
3454
- orderBy?: OrderBy[];
3454
+ orderBy?: OrderBy[] | undefined;
3455
3455
  /**
3456
3456
  * <p>You can filter the request using various logical operators and a key-value format. For
3457
3457
  * example:</p>
@@ -3460,7 +3460,7 @@ export interface TabularConditions {
3460
3460
  * </p>
3461
3461
  * @public
3462
3462
  */
3463
- propertyFilters?: PropertyFilter[];
3463
+ propertyFilters?: PropertyFilter[] | undefined;
3464
3464
  }
3465
3465
  /**
3466
3466
  * <p>An error returned by the <code>BatchPutProperty</code> action.</p>
@@ -3492,22 +3492,22 @@ export interface GetPropertyValueRequest {
3492
3492
  * <p>The name of the component whose property values the operation returns.</p>
3493
3493
  * @public
3494
3494
  */
3495
- componentName?: string;
3495
+ componentName?: string | undefined;
3496
3496
  /**
3497
3497
  * <p>This string specifies the path to the composite component, starting from the top-level component.</p>
3498
3498
  * @public
3499
3499
  */
3500
- componentPath?: string;
3500
+ componentPath?: string | undefined;
3501
3501
  /**
3502
3502
  * <p>The ID of the component type whose property values the operation returns.</p>
3503
3503
  * @public
3504
3504
  */
3505
- componentTypeId?: string;
3505
+ componentTypeId?: string | undefined;
3506
3506
  /**
3507
3507
  * <p>The ID of the entity whose property values the operation returns.</p>
3508
3508
  * @public
3509
3509
  */
3510
- entityId?: string;
3510
+ entityId?: string | undefined;
3511
3511
  /**
3512
3512
  * <p>The properties whose values the operation returns.</p>
3513
3513
  * @public
@@ -3523,22 +3523,22 @@ export interface GetPropertyValueRequest {
3523
3523
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
3524
3524
  * @public
3525
3525
  */
3526
- maxResults?: number;
3526
+ maxResults?: number | undefined;
3527
3527
  /**
3528
3528
  * <p>The string that specifies the next page of results.</p>
3529
3529
  * @public
3530
3530
  */
3531
- nextToken?: string;
3531
+ nextToken?: string | undefined;
3532
3532
  /**
3533
3533
  * <p>The property group name.</p>
3534
3534
  * @public
3535
3535
  */
3536
- propertyGroupName?: string;
3536
+ propertyGroupName?: string | undefined;
3537
3537
  /**
3538
3538
  * <p>The tabular conditions.</p>
3539
3539
  * @public
3540
3540
  */
3541
- tabularConditions?: TabularConditions;
3541
+ tabularConditions?: TabularConditions | undefined;
3542
3542
  }
3543
3543
  /**
3544
3544
  * @public
@@ -3570,7 +3570,7 @@ export interface GetPropertyValueHistoryResponse {
3570
3570
  * <p>The string that specifies the next page of results.</p>
3571
3571
  * @public
3572
3572
  */
3573
- nextToken?: string;
3573
+ nextToken?: string | undefined;
3574
3574
  }
3575
3575
  /**
3576
3576
  * <p>An object that contains information about errors returned by the
@@ -3594,44 +3594,44 @@ export interface PropertyDefinitionRequest {
3594
3594
  * <p>An object that contains information about the data type.</p>
3595
3595
  * @public
3596
3596
  */
3597
- dataType?: DataType;
3597
+ dataType?: DataType | undefined;
3598
3598
  /**
3599
3599
  * <p>A Boolean value that specifies whether the property is required.</p>
3600
3600
  * @public
3601
3601
  */
3602
- isRequiredInEntity?: boolean;
3602
+ isRequiredInEntity?: boolean | undefined;
3603
3603
  /**
3604
3604
  * <p>A Boolean value that specifies whether the property ID comes from an external data
3605
3605
  * store.</p>
3606
3606
  * @public
3607
3607
  */
3608
- isExternalId?: boolean;
3608
+ isExternalId?: boolean | undefined;
3609
3609
  /**
3610
3610
  * <p>A Boolean value that specifies whether the property is stored externally.</p>
3611
3611
  * @public
3612
3612
  */
3613
- isStoredExternally?: boolean;
3613
+ isStoredExternally?: boolean | undefined;
3614
3614
  /**
3615
3615
  * <p>A Boolean value that specifies whether the property consists of time series data.</p>
3616
3616
  * @public
3617
3617
  */
3618
- isTimeSeries?: boolean;
3618
+ isTimeSeries?: boolean | undefined;
3619
3619
  /**
3620
3620
  * <p>An object that contains the default value.</p>
3621
3621
  * @public
3622
3622
  */
3623
- defaultValue?: DataValue;
3623
+ defaultValue?: DataValue | undefined;
3624
3624
  /**
3625
3625
  * <p>A mapping that specifies configuration information about the property. Use this field to
3626
3626
  * specify information that you read from and write to an external source.</p>
3627
3627
  * @public
3628
3628
  */
3629
- configuration?: Record<string, string>;
3629
+ configuration?: Record<string, string> | undefined;
3630
3630
  /**
3631
3631
  * <p>A friendly name for the property.</p>
3632
3632
  * @public
3633
3633
  */
3634
- displayName?: string;
3634
+ displayName?: string | undefined;
3635
3635
  }
3636
3636
  /**
3637
3637
  * <p>An object that contains response data from a property definition request.</p>
@@ -3685,17 +3685,17 @@ export interface PropertyDefinitionResponse {
3685
3685
  * <p>An object that contains the default value.</p>
3686
3686
  * @public
3687
3687
  */
3688
- defaultValue?: DataValue;
3688
+ defaultValue?: DataValue | undefined;
3689
3689
  /**
3690
3690
  * <p>A mapping that specifies configuration information about the property.</p>
3691
3691
  * @public
3692
3692
  */
3693
- configuration?: Record<string, string>;
3693
+ configuration?: Record<string, string> | undefined;
3694
3694
  /**
3695
3695
  * <p>A friendly name for the property.</p>
3696
3696
  * @public
3697
3697
  */
3698
- displayName?: string;
3698
+ displayName?: string | undefined;
3699
3699
  }
3700
3700
  /**
3701
3701
  * @public
@@ -3716,17 +3716,17 @@ export interface GetPropertyValueResponse {
3716
3716
  * response. Each string in the mapping must be unique to this object.</p>
3717
3717
  * @public
3718
3718
  */
3719
- propertyValues?: Record<string, PropertyLatestValue>;
3719
+ propertyValues?: Record<string, PropertyLatestValue> | undefined;
3720
3720
  /**
3721
3721
  * <p>The string that specifies the next page of results.</p>
3722
3722
  * @public
3723
3723
  */
3724
- nextToken?: string;
3724
+ nextToken?: string | undefined;
3725
3725
  /**
3726
3726
  * <p>A table of property values.</p>
3727
3727
  * @public
3728
3728
  */
3729
- tabularPropertyValues?: Record<string, DataValue>[][];
3729
+ tabularPropertyValues?: Record<string, DataValue>[][] | undefined;
3730
3730
  }
3731
3731
  /**
3732
3732
  * @public
@@ -3742,7 +3742,7 @@ export interface CreateComponentTypeRequest {
3742
3742
  * this type.</p>
3743
3743
  * @public
3744
3744
  */
3745
- isSingleton?: boolean;
3745
+ isSingleton?: boolean | undefined;
3746
3746
  /**
3747
3747
  * <p>The ID of the component type.</p>
3748
3748
  * @public
@@ -3752,45 +3752,45 @@ export interface CreateComponentTypeRequest {
3752
3752
  * <p>The description of the component type.</p>
3753
3753
  * @public
3754
3754
  */
3755
- description?: string;
3755
+ description?: string | undefined;
3756
3756
  /**
3757
3757
  * <p>An object that maps strings to the property definitions in the component type. Each
3758
3758
  * string in the mapping must be unique to this object.</p>
3759
3759
  * @public
3760
3760
  */
3761
- propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
3761
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest> | undefined;
3762
3762
  /**
3763
3763
  * <p>Specifies the parent component type to extend.</p>
3764
3764
  * @public
3765
3765
  */
3766
- extendsFrom?: string[];
3766
+ extendsFrom?: string[] | undefined;
3767
3767
  /**
3768
3768
  * <p>An object that maps strings to the functions in the component type. Each string in the
3769
3769
  * mapping must be unique to this object.</p>
3770
3770
  * @public
3771
3771
  */
3772
- functions?: Record<string, FunctionRequest>;
3772
+ functions?: Record<string, FunctionRequest> | undefined;
3773
3773
  /**
3774
3774
  * <p>Metadata that you can use to manage the component type.</p>
3775
3775
  * @public
3776
3776
  */
3777
- tags?: Record<string, string>;
3777
+ tags?: Record<string, string> | undefined;
3778
3778
  /**
3779
3779
  * <p/>
3780
3780
  * @public
3781
3781
  */
3782
- propertyGroups?: Record<string, PropertyGroupRequest>;
3782
+ propertyGroups?: Record<string, PropertyGroupRequest> | undefined;
3783
3783
  /**
3784
3784
  * <p>A friendly name for the component type.</p>
3785
3785
  * @public
3786
3786
  */
3787
- componentTypeName?: string;
3787
+ componentTypeName?: string | undefined;
3788
3788
  /**
3789
3789
  * <p>This is an object that maps strings to <code>compositeComponentTypes</code> of the <code>componentType</code>.
3790
3790
  * <code>CompositeComponentType</code> is referenced by <code>componentTypeId</code>.</p>
3791
3791
  * @public
3792
3792
  */
3793
- compositeComponentTypes?: Record<string, CompositeComponentTypeRequest>;
3793
+ compositeComponentTypes?: Record<string, CompositeComponentTypeRequest> | undefined;
3794
3794
  }
3795
3795
  /**
3796
3796
  * @public
@@ -3806,7 +3806,7 @@ export interface GetComponentTypeResponse {
3806
3806
  * this type.</p>
3807
3807
  * @public
3808
3808
  */
3809
- isSingleton?: boolean;
3809
+ isSingleton?: boolean | undefined;
3810
3810
  /**
3811
3811
  * <p>The ID of the component type.</p>
3812
3812
  * @public
@@ -3816,24 +3816,24 @@ export interface GetComponentTypeResponse {
3816
3816
  * <p>The description of the component type.</p>
3817
3817
  * @public
3818
3818
  */
3819
- description?: string;
3819
+ description?: string | undefined;
3820
3820
  /**
3821
3821
  * <p>An object that maps strings to the property definitions in the component type. Each
3822
3822
  * string in the mapping must be unique to this object.</p>
3823
3823
  * @public
3824
3824
  */
3825
- propertyDefinitions?: Record<string, PropertyDefinitionResponse>;
3825
+ propertyDefinitions?: Record<string, PropertyDefinitionResponse> | undefined;
3826
3826
  /**
3827
3827
  * <p>The name of the parent component type that this component type extends.</p>
3828
3828
  * @public
3829
3829
  */
3830
- extendsFrom?: string[];
3830
+ extendsFrom?: string[] | undefined;
3831
3831
  /**
3832
3832
  * <p>An object that maps strings to the functions in the component type. Each string in the
3833
3833
  * mapping must be unique to this object.</p>
3834
3834
  * @public
3835
3835
  */
3836
- functions?: Record<string, FunctionResponse>;
3836
+ functions?: Record<string, FunctionResponse> | undefined;
3837
3837
  /**
3838
3838
  * <p>The date and time when the component type was created.</p>
3839
3839
  * @public
@@ -3853,39 +3853,39 @@ export interface GetComponentTypeResponse {
3853
3853
  * <p>A Boolean value that specifies whether the component type is abstract.</p>
3854
3854
  * @public
3855
3855
  */
3856
- isAbstract?: boolean;
3856
+ isAbstract?: boolean | undefined;
3857
3857
  /**
3858
3858
  * <p>A Boolean value that specifies whether the component type has a schema initializer and
3859
3859
  * that the schema initializer has run.</p>
3860
3860
  * @public
3861
3861
  */
3862
- isSchemaInitialized?: boolean;
3862
+ isSchemaInitialized?: boolean | undefined;
3863
3863
  /**
3864
3864
  * <p>The current status of the component type.</p>
3865
3865
  * @public
3866
3866
  */
3867
- status?: Status;
3867
+ status?: Status | undefined;
3868
3868
  /**
3869
3869
  * <p>The maximum number of results to return at one time. The default is 25.</p>
3870
3870
  * <p>Valid Range: Minimum value of 1. Maximum value of 250.</p>
3871
3871
  * @public
3872
3872
  */
3873
- propertyGroups?: Record<string, PropertyGroupResponse>;
3873
+ propertyGroups?: Record<string, PropertyGroupResponse> | undefined;
3874
3874
  /**
3875
3875
  * <p>The syncSource of the SyncJob, if this entity was created by a SyncJob.</p>
3876
3876
  * @public
3877
3877
  */
3878
- syncSource?: string;
3878
+ syncSource?: string | undefined;
3879
3879
  /**
3880
3880
  * <p>The component type name.</p>
3881
3881
  * @public
3882
3882
  */
3883
- componentTypeName?: string;
3883
+ componentTypeName?: string | undefined;
3884
3884
  /**
3885
3885
  * <p>This is an object that maps strings to <code>compositeComponentTypes</code> of the <code>componentType</code>. <code>CompositeComponentType</code> is referenced by <code>componentTypeId</code>.</p>
3886
3886
  * @public
3887
3887
  */
3888
- compositeComponentTypes?: Record<string, CompositeComponentTypeResponse>;
3888
+ compositeComponentTypes?: Record<string, CompositeComponentTypeResponse> | undefined;
3889
3889
  }
3890
3890
  /**
3891
3891
  * @public
@@ -3901,7 +3901,7 @@ export interface UpdateComponentTypeRequest {
3901
3901
  * this type.</p>
3902
3902
  * @public
3903
3903
  */
3904
- isSingleton?: boolean;
3904
+ isSingleton?: boolean | undefined;
3905
3905
  /**
3906
3906
  * <p>The ID of the component type.</p>
3907
3907
  * @public
@@ -3911,40 +3911,40 @@ export interface UpdateComponentTypeRequest {
3911
3911
  * <p>The description of the component type.</p>
3912
3912
  * @public
3913
3913
  */
3914
- description?: string;
3914
+ description?: string | undefined;
3915
3915
  /**
3916
3916
  * <p>An object that maps strings to the property definitions in the component type. Each
3917
3917
  * string in the mapping must be unique to this object.</p>
3918
3918
  * @public
3919
3919
  */
3920
- propertyDefinitions?: Record<string, PropertyDefinitionRequest>;
3920
+ propertyDefinitions?: Record<string, PropertyDefinitionRequest> | undefined;
3921
3921
  /**
3922
3922
  * <p>Specifies the component type that this component type extends.</p>
3923
3923
  * @public
3924
3924
  */
3925
- extendsFrom?: string[];
3925
+ extendsFrom?: string[] | undefined;
3926
3926
  /**
3927
3927
  * <p>An object that maps strings to the functions in the component type. Each string in the
3928
3928
  * mapping must be unique to this object.</p>
3929
3929
  * @public
3930
3930
  */
3931
- functions?: Record<string, FunctionRequest>;
3931
+ functions?: Record<string, FunctionRequest> | undefined;
3932
3932
  /**
3933
3933
  * <p>The property groups.</p>
3934
3934
  * @public
3935
3935
  */
3936
- propertyGroups?: Record<string, PropertyGroupRequest>;
3936
+ propertyGroups?: Record<string, PropertyGroupRequest> | undefined;
3937
3937
  /**
3938
3938
  * <p>The component type name.</p>
3939
3939
  * @public
3940
3940
  */
3941
- componentTypeName?: string;
3941
+ componentTypeName?: string | undefined;
3942
3942
  /**
3943
3943
  * <p>This is an object that maps strings to <code>compositeComponentTypes</code> of the <code>componentType</code>.
3944
3944
  * <code>CompositeComponentType</code> is referenced by <code>componentTypeId</code>.</p>
3945
3945
  * @public
3946
3946
  */
3947
- compositeComponentTypes?: Record<string, CompositeComponentTypeRequest>;
3947
+ compositeComponentTypes?: Record<string, CompositeComponentTypeRequest> | undefined;
3948
3948
  }
3949
3949
  /**
3950
3950
  * <p>An object that sets information about a property.</p>
@@ -3955,17 +3955,17 @@ export interface PropertyRequest {
3955
3955
  * <p>An object that specifies information about a property.</p>
3956
3956
  * @public
3957
3957
  */
3958
- definition?: PropertyDefinitionRequest;
3958
+ definition?: PropertyDefinitionRequest | undefined;
3959
3959
  /**
3960
3960
  * <p>The value of the property.</p>
3961
3961
  * @public
3962
3962
  */
3963
- value?: DataValue;
3963
+ value?: DataValue | undefined;
3964
3964
  /**
3965
3965
  * <p>The update type of the update property request.</p>
3966
3966
  * @public
3967
3967
  */
3968
- updateType?: PropertyUpdateType;
3968
+ updateType?: PropertyUpdateType | undefined;
3969
3969
  }
3970
3970
  /**
3971
3971
  * <p>An object that contains information about a property response.</p>
@@ -3976,17 +3976,17 @@ export interface PropertyResponse {
3976
3976
  * <p>An object that specifies information about a property.</p>
3977
3977
  * @public
3978
3978
  */
3979
- definition?: PropertyDefinitionResponse;
3979
+ definition?: PropertyDefinitionResponse | undefined;
3980
3980
  /**
3981
3981
  * <p>The value of the property.</p>
3982
3982
  * @public
3983
3983
  */
3984
- value?: DataValue;
3984
+ value?: DataValue | undefined;
3985
3985
  /**
3986
3986
  * <p>This flag notes whether all values of a list or map type property are returned in the API response. The maximum number of values per property returned is 50.</p>
3987
3987
  * @public
3988
3988
  */
3989
- areAllPropertyValuesReturned?: boolean;
3989
+ areAllPropertyValuesReturned?: boolean | undefined;
3990
3990
  }
3991
3991
  /**
3992
3992
  * <p>This is an object that contains the information of a property.</p>
@@ -3997,7 +3997,7 @@ export interface PropertySummary {
3997
3997
  * <p>This is the schema for the property.</p>
3998
3998
  * @public
3999
3999
  */
4000
- definition?: PropertyDefinitionResponse;
4000
+ definition?: PropertyDefinitionResponse | undefined;
4001
4001
  /**
4002
4002
  * <p>This is the name of the property.</p>
4003
4003
  * @public
@@ -4007,13 +4007,13 @@ export interface PropertySummary {
4007
4007
  * <p>This is the value for the property.</p>
4008
4008
  * @public
4009
4009
  */
4010
- value?: DataValue;
4010
+ value?: DataValue | undefined;
4011
4011
  /**
4012
4012
  * <p>This flag notes whether all values of a list or map type property are returned in the API
4013
4013
  * response. The maximum number of values per property returned is 50.</p>
4014
4014
  * @public
4015
4015
  */
4016
- areAllPropertyValuesReturned?: boolean;
4016
+ areAllPropertyValuesReturned?: boolean | undefined;
4017
4017
  }
4018
4018
  /**
4019
4019
  * <p>An object that sets information about a component type create or update request.</p>
@@ -4024,23 +4024,23 @@ export interface ComponentRequest {
4024
4024
  * <p>The description of the component request.</p>
4025
4025
  * @public
4026
4026
  */
4027
- description?: string;
4027
+ description?: string | undefined;
4028
4028
  /**
4029
4029
  * <p>The ID of the component type.</p>
4030
4030
  * @public
4031
4031
  */
4032
- componentTypeId?: string;
4032
+ componentTypeId?: string | undefined;
4033
4033
  /**
4034
4034
  * <p>An object that maps strings to the properties to set in the component type. Each string
4035
4035
  * in the mapping must be unique to this object.</p>
4036
4036
  * @public
4037
4037
  */
4038
- properties?: Record<string, PropertyRequest>;
4038
+ properties?: Record<string, PropertyRequest> | undefined;
4039
4039
  /**
4040
4040
  * <p>The property groups.</p>
4041
4041
  * @public
4042
4042
  */
4043
- propertyGroups?: Record<string, ComponentPropertyGroupRequest>;
4043
+ propertyGroups?: Record<string, ComponentPropertyGroupRequest> | undefined;
4044
4044
  }
4045
4045
  /**
4046
4046
  * <p>An object that returns information about a component type create or update
@@ -4052,60 +4052,60 @@ export interface ComponentResponse {
4052
4052
  * <p>The name of the component.</p>
4053
4053
  * @public
4054
4054
  */
4055
- componentName?: string;
4055
+ componentName?: string | undefined;
4056
4056
  /**
4057
4057
  * <p>The description of the component type.</p>
4058
4058
  * @public
4059
4059
  */
4060
- description?: string;
4060
+ description?: string | undefined;
4061
4061
  /**
4062
4062
  * <p>The ID of the component type.</p>
4063
4063
  * @public
4064
4064
  */
4065
- componentTypeId?: string;
4065
+ componentTypeId?: string | undefined;
4066
4066
  /**
4067
4067
  * <p>The status of the component type.</p>
4068
4068
  * @public
4069
4069
  */
4070
- status?: Status;
4070
+ status?: Status | undefined;
4071
4071
  /**
4072
4072
  * <p>The name of the property definition set in the request.</p>
4073
4073
  * @public
4074
4074
  */
4075
- definedIn?: string;
4075
+ definedIn?: string | undefined;
4076
4076
  /**
4077
4077
  * <p>An object that maps strings to the properties to set in the component type. Each string
4078
4078
  * in the mapping must be unique to this object.</p>
4079
4079
  * @public
4080
4080
  */
4081
- properties?: Record<string, PropertyResponse>;
4081
+ properties?: Record<string, PropertyResponse> | undefined;
4082
4082
  /**
4083
4083
  * <p>The property groups.</p>
4084
4084
  * @public
4085
4085
  */
4086
- propertyGroups?: Record<string, ComponentPropertyGroupResponse>;
4086
+ propertyGroups?: Record<string, ComponentPropertyGroupResponse> | undefined;
4087
4087
  /**
4088
4088
  * <p>The syncSource of the sync job, if this entity was created by a sync job.</p>
4089
4089
  * @public
4090
4090
  */
4091
- syncSource?: string;
4091
+ syncSource?: string | undefined;
4092
4092
  /**
4093
4093
  * <p>This flag notes whether all properties of the component are returned in the API response.
4094
4094
  * The maximum number of properties returned is 800.</p>
4095
4095
  * @public
4096
4096
  */
4097
- areAllPropertiesReturned?: boolean;
4097
+ areAllPropertiesReturned?: boolean | undefined;
4098
4098
  /**
4099
4099
  * <p>This lists objects that contain information about the <code>compositeComponents</code>.</p>
4100
4100
  * @public
4101
4101
  */
4102
- compositeComponents?: Record<string, ComponentSummary>;
4102
+ compositeComponents?: Record<string, ComponentSummary> | undefined;
4103
4103
  /**
4104
4104
  * <p>This flag notes whether all <code>compositeComponents</code> are returned in the API
4105
4105
  * response.</p>
4106
4106
  * @public
4107
4107
  */
4108
- areAllCompositeComponentsReturned?: boolean;
4108
+ areAllCompositeComponentsReturned?: boolean | undefined;
4109
4109
  }
4110
4110
  /**
4111
4111
  * <p>The component update request.</p>
@@ -4116,28 +4116,28 @@ export interface ComponentUpdateRequest {
4116
4116
  * <p>The update type of the component update request.</p>
4117
4117
  * @public
4118
4118
  */
4119
- updateType?: ComponentUpdateType;
4119
+ updateType?: ComponentUpdateType | undefined;
4120
4120
  /**
4121
4121
  * <p>The description of the component type.</p>
4122
4122
  * @public
4123
4123
  */
4124
- description?: string;
4124
+ description?: string | undefined;
4125
4125
  /**
4126
4126
  * <p>The ID of the component type.</p>
4127
4127
  * @public
4128
4128
  */
4129
- componentTypeId?: string;
4129
+ componentTypeId?: string | undefined;
4130
4130
  /**
4131
4131
  * <p>An object that maps strings to the properties to set in the component type update. Each
4132
4132
  * string in the mapping must be unique to this object.</p>
4133
4133
  * @public
4134
4134
  */
4135
- propertyUpdates?: Record<string, PropertyRequest>;
4135
+ propertyUpdates?: Record<string, PropertyRequest> | undefined;
4136
4136
  /**
4137
4137
  * <p>The property group updates.</p>
4138
4138
  * @public
4139
4139
  */
4140
- propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest>;
4140
+ propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest> | undefined;
4141
4141
  }
4142
4142
  /**
4143
4143
  * <p>An object that sets information about the composite component update request.</p>
@@ -4148,18 +4148,18 @@ export interface CompositeComponentRequest {
4148
4148
  * <p>The description of the component type.</p>
4149
4149
  * @public
4150
4150
  */
4151
- description?: string;
4151
+ description?: string | undefined;
4152
4152
  /**
4153
4153
  * <p>This is an object that maps strings to the properties to set in the component type. Each string in
4154
4154
  * the mapping must be unique to this object.</p>
4155
4155
  * @public
4156
4156
  */
4157
- properties?: Record<string, PropertyRequest>;
4157
+ properties?: Record<string, PropertyRequest> | undefined;
4158
4158
  /**
4159
4159
  * <p>The property groups.</p>
4160
4160
  * @public
4161
4161
  */
4162
- propertyGroups?: Record<string, ComponentPropertyGroupRequest>;
4162
+ propertyGroups?: Record<string, ComponentPropertyGroupRequest> | undefined;
4163
4163
  }
4164
4164
  /**
4165
4165
  * <p>An object that sets information about the composite component update request.</p>
@@ -4170,22 +4170,22 @@ export interface CompositeComponentUpdateRequest {
4170
4170
  * <p>The update type of the component update request.</p>
4171
4171
  * @public
4172
4172
  */
4173
- updateType?: ComponentUpdateType;
4173
+ updateType?: ComponentUpdateType | undefined;
4174
4174
  /**
4175
4175
  * <p>The description of the component type.</p>
4176
4176
  * @public
4177
4177
  */
4178
- description?: string;
4178
+ description?: string | undefined;
4179
4179
  /**
4180
4180
  * <p>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.</p>
4181
4181
  * @public
4182
4182
  */
4183
- propertyUpdates?: Record<string, PropertyRequest>;
4183
+ propertyUpdates?: Record<string, PropertyRequest> | undefined;
4184
4184
  /**
4185
4185
  * <p>The property group updates.</p>
4186
4186
  * @public
4187
4187
  */
4188
- propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest>;
4188
+ propertyGroupUpdates?: Record<string, ComponentPropertyGroupRequest> | undefined;
4189
4189
  }
4190
4190
  /**
4191
4191
  * @public
@@ -4200,7 +4200,7 @@ export interface ListPropertiesResponse {
4200
4200
  * <p>The string that specifies the next page of property results.</p>
4201
4201
  * @public
4202
4202
  */
4203
- nextToken?: string;
4203
+ nextToken?: string | undefined;
4204
4204
  }
4205
4205
  /**
4206
4206
  * @public
@@ -4235,13 +4235,13 @@ export interface GetEntityResponse {
4235
4235
  * <p>The description of the entity.</p>
4236
4236
  * @public
4237
4237
  */
4238
- description?: string;
4238
+ description?: string | undefined;
4239
4239
  /**
4240
4240
  * <p>An object that maps strings to the components in the entity. Each string in the mapping
4241
4241
  * must be unique to this object.</p>
4242
4242
  * @public
4243
4243
  */
4244
- components?: Record<string, ComponentResponse>;
4244
+ components?: Record<string, ComponentResponse> | undefined;
4245
4245
  /**
4246
4246
  * <p>The ID of the parent entity for this entity.</p>
4247
4247
  * @public
@@ -4266,12 +4266,12 @@ export interface GetEntityResponse {
4266
4266
  * <p>The syncSource of the sync job, if this entity was created by a sync job.</p>
4267
4267
  * @public
4268
4268
  */
4269
- syncSource?: string;
4269
+ syncSource?: string | undefined;
4270
4270
  /**
4271
4271
  * <p>This flag notes whether all components are returned in the API response. The maximum number of components returned is 30.</p>
4272
4272
  * @public
4273
4273
  */
4274
- areAllComponentsReturned?: boolean;
4274
+ areAllComponentsReturned?: boolean | undefined;
4275
4275
  }
4276
4276
  /**
4277
4277
  * @public
@@ -4286,7 +4286,7 @@ export interface CreateEntityRequest {
4286
4286
  * <p>The ID of the entity.</p>
4287
4287
  * @public
4288
4288
  */
4289
- entityId?: string;
4289
+ entityId?: string | undefined;
4290
4290
  /**
4291
4291
  * <p>The name of the entity.</p>
4292
4292
  * @public
@@ -4296,29 +4296,29 @@ export interface CreateEntityRequest {
4296
4296
  * <p>The description of the entity.</p>
4297
4297
  * @public
4298
4298
  */
4299
- description?: string;
4299
+ description?: string | undefined;
4300
4300
  /**
4301
4301
  * <p>An object that maps strings to the components in the entity. Each string in the mapping
4302
4302
  * must be unique to this object.</p>
4303
4303
  * @public
4304
4304
  */
4305
- components?: Record<string, ComponentRequest>;
4305
+ components?: Record<string, ComponentRequest> | undefined;
4306
4306
  /**
4307
4307
  * <p>This is an object that maps strings to <code>compositeComponent</code> updates in the request.
4308
4308
  * Each key of the map represents the <code>componentPath</code> of the <code>compositeComponent</code>.</p>
4309
4309
  * @public
4310
4310
  */
4311
- compositeComponents?: Record<string, CompositeComponentRequest>;
4311
+ compositeComponents?: Record<string, CompositeComponentRequest> | undefined;
4312
4312
  /**
4313
4313
  * <p>The ID of the entity's parent entity.</p>
4314
4314
  * @public
4315
4315
  */
4316
- parentEntityId?: string;
4316
+ parentEntityId?: string | undefined;
4317
4317
  /**
4318
4318
  * <p>Metadata that you can use to manage the entity.</p>
4319
4319
  * @public
4320
4320
  */
4321
- tags?: Record<string, string>;
4321
+ tags?: Record<string, string> | undefined;
4322
4322
  }
4323
4323
  /**
4324
4324
  * @public
@@ -4338,27 +4338,27 @@ export interface UpdateEntityRequest {
4338
4338
  * <p>The name of the entity.</p>
4339
4339
  * @public
4340
4340
  */
4341
- entityName?: string;
4341
+ entityName?: string | undefined;
4342
4342
  /**
4343
4343
  * <p>The description of the entity.</p>
4344
4344
  * @public
4345
4345
  */
4346
- description?: string;
4346
+ description?: string | undefined;
4347
4347
  /**
4348
4348
  * <p>An object that maps strings to the component updates in the request. Each string in the
4349
4349
  * mapping must be unique to this object.</p>
4350
4350
  * @public
4351
4351
  */
4352
- componentUpdates?: Record<string, ComponentUpdateRequest>;
4352
+ componentUpdates?: Record<string, ComponentUpdateRequest> | undefined;
4353
4353
  /**
4354
4354
  * <p>This is an object that maps strings to <code>compositeComponent</code> updates in the request. Each key
4355
4355
  * of the map represents the <code>componentPath</code> of the <code>compositeComponent</code>.</p>
4356
4356
  * @public
4357
4357
  */
4358
- compositeComponentUpdates?: Record<string, CompositeComponentUpdateRequest>;
4358
+ compositeComponentUpdates?: Record<string, CompositeComponentUpdateRequest> | undefined;
4359
4359
  /**
4360
4360
  * <p>An object that describes the update request for a parent entity.</p>
4361
4361
  * @public
4362
4362
  */
4363
- parentEntityUpdate?: ParentEntityUpdateRequest;
4363
+ parentEntityUpdate?: ParentEntityUpdateRequest | undefined;
4364
4364
  }