cdk-lambda-subminute 2.0.427 → 2.0.428

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.
@@ -1,5 +1,266 @@
1
1
  {
2
2
  "version": "1.0",
3
3
  "examples": {
4
+ "CreateBillOfMaterialsImportJob": [
5
+ {
6
+ "input": {
7
+ "clientToken": "550e8400-e29b-41d4-a716-446655440000",
8
+ "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243",
9
+ "s3uri": "s3://mybucketname/pathelemene/file.csv"
10
+ },
11
+ "output": {
12
+ "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4"
13
+ },
14
+ "id": "example-1",
15
+ "title": "Invoke CreateBillOfMaterialsImportJob"
16
+ }
17
+ ],
18
+ "GetBillOfMaterialsImportJob": [
19
+ {
20
+ "input": {
21
+ "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243",
22
+ "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4"
23
+ },
24
+ "output": {
25
+ "job": {
26
+ "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243",
27
+ "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4",
28
+ "message": "Import job completed successfully.",
29
+ "s3uri": "s3://mybucketname/pathelemene/file.csv",
30
+ "status": "SUCCESS"
31
+ }
32
+ },
33
+ "id": "example-1",
34
+ "title": "Invoke GetBillOfMaterialsImportJob for a successful job"
35
+ },
36
+ {
37
+ "input": {
38
+ "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243",
39
+ "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4"
40
+ },
41
+ "output": {
42
+ "job": {
43
+ "instanceId": "60f82bbd-71f7-4fcd-a941-472f574c5243",
44
+ "jobId": "f79b359b-1515-4436-a3bf-bae7b33e47b4",
45
+ "s3uri": "s3://mybucketname/pathelemene/file.csv",
46
+ "status": "IN_PROGRESS"
47
+ }
48
+ },
49
+ "id": "example-2",
50
+ "title": "Invoke GetBillOfMaterialsImportJob for an in-progress job"
51
+ }
52
+ ],
53
+ "SendDataIntegrationEvent": [
54
+ {
55
+ "input": {
56
+ "data": "{\"id\": \"inbound-order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\" }",
57
+ "eventGroupId": "inboundOrderId",
58
+ "eventTimestamp": 1515531081.123,
59
+ "eventType": "scn.data.inboundorder",
60
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
61
+ },
62
+ "output": {
63
+ "eventId": "c4132c1d-8f60-44a2-9932-f723c4f7b8a7"
64
+ },
65
+ "id": "example-1",
66
+ "title": "Successful SendDataIntegrationEvent for inboundorder event type"
67
+ },
68
+ {
69
+ "input": {
70
+ "data": "{\"id\": \"inbound-order-line-id-test-123\", \"order_id\": \"order-id-test-123\", \"tpartner_id\": \"partner-id-test-123\", \"product_id\": \"product-id-test-123\", \"quantity_submitted\": \"100.0\" }",
71
+ "eventGroupId": "inboundOrderLineId",
72
+ "eventTimestamp": 1515531081.123,
73
+ "eventType": "scn.data.inboundorderline",
74
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
75
+ },
76
+ "output": {
77
+ "eventId": "45d95db2-d106-40e0-aa98-f1204230a691"
78
+ },
79
+ "id": "example-2",
80
+ "title": "Successful SendDataIntegrationEvent for inboundorderline event type"
81
+ },
82
+ {
83
+ "input": {
84
+ "data": "{\"id\": \"inbound-order-line-schedule-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"product_id\": \"product-id-test-123\"}",
85
+ "eventGroupId": "inboundOrderLineScheduleId",
86
+ "eventTimestamp": 1515531081.123,
87
+ "eventType": "scn.data.inboundorderlineschedule",
88
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
89
+ },
90
+ "output": {
91
+ "eventId": "5abba995-7735-4d1e-95c4-7cc93e48cf9f"
92
+ },
93
+ "id": "example-3",
94
+ "title": "Successful SendDataIntegrationEvent for inboundorderlineschedule event type"
95
+ },
96
+ {
97
+ "input": {
98
+ "data": "{\"snapshot_date\": \"1672470400000\", \"product_id\": \"product-id-test-123\", \"site_id\": \"site-id-test-123\", \"region_id\": \"region-id-test-123\", \"product_group_id\": \"product-group-id-test-123\", \"forecast_start_dttm\": \"1672470400000\", \"forecast_end_dttm\": \"1672470400000\" }",
99
+ "eventGroupId": "forecastId",
100
+ "eventTimestamp": 1515531081.123,
101
+ "eventType": "scn.data.forecast",
102
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
103
+ },
104
+ "output": {
105
+ "eventId": "29312d5b-f499-4dcd-b017-3dab3cd34d61"
106
+ },
107
+ "id": "example-4",
108
+ "title": "Successful SendDataIntegrationEvent for forecast event type"
109
+ },
110
+ {
111
+ "input": {
112
+ "data": "{\"snapshot_date\": \"1672470400000\", \"site_id\": \"site-id-test-123\", \"product_id\": \"product-id-test-123\", \"on_hand_inventory\": \"100.0\", \"inv_condition\": \"good\", \"lot_number\": \"lot-number-test-123\"}",
113
+ "eventGroupId": "inventoryLevelId",
114
+ "eventTimestamp": 1515531081.123,
115
+ "eventType": "scn.data.inventorylevel",
116
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
117
+ },
118
+ "output": {
119
+ "eventId": "3aa78324-acd8-4fdd-a19e-231ea003c2b3"
120
+ },
121
+ "id": "example-5",
122
+ "title": "Successful SendDataIntegrationEvent for inventorylevel event type"
123
+ },
124
+ {
125
+ "input": {
126
+ "data": "{\"id\": \"outbound-orderline-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"product_id\": \"product-id-test-123\" }",
127
+ "eventGroupId": "outboundOrderLineId",
128
+ "eventTimestamp": 1515531081.123,
129
+ "eventType": "scn.data.outboundorderline",
130
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
131
+ },
132
+ "output": {
133
+ "eventId": "959b7ef9-5e2d-4795-b1ca-5b16a3eb6b89"
134
+ },
135
+ "id": "example-6",
136
+ "title": "Successful SendDataIntegrationEvent for outboundorderline event type"
137
+ },
138
+ {
139
+ "input": {
140
+ "data": "{\"id\": \"outbound-shipment-id-test-123\", \"cust_order_id\": \"cust-order-id-test-123\", \"cust_order_line_id\": \"cust-order-line-id-test-123\", \"product_id\": \"product-id-test-123\" }",
141
+ "eventGroupId": "outboundShipmentId",
142
+ "eventTimestamp": 1515531081.123,
143
+ "eventType": "scn.data.outboundshipment",
144
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
145
+ },
146
+ "output": {
147
+ "eventId": "59feded3-5e46-4126-81bf-0137ca176ee0"
148
+ },
149
+ "id": "example-7",
150
+ "title": "Successful SendDataIntegrationEvent for outboundshipment event type"
151
+ },
152
+ {
153
+ "input": {
154
+ "data": "{\"process_id\": \"process-id-test-123\" }",
155
+ "eventGroupId": "processHeaderId",
156
+ "eventTimestamp": 1515531081.123,
157
+ "eventType": "scn.data.processheader",
158
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
159
+ },
160
+ "output": {
161
+ "eventId": "564130eb-2d8a-4550-a768-ddf0daf7b4a9"
162
+ },
163
+ "id": "example-8",
164
+ "title": "Successful SendDataIntegrationEvent for processheader event type"
165
+ },
166
+ {
167
+ "input": {
168
+ "data": "{\"process_operation_id\": \"process-operation-id-test-123\", \"process_id\": \"process-id-test-123\" }",
169
+ "eventGroupId": "processOperationId",
170
+ "eventTimestamp": 1515531081.123,
171
+ "eventType": "scn.data.processoperation",
172
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
173
+ },
174
+ "output": {
175
+ "eventId": "db5df408-89c7-4b9f-a326-016f6c2b3396"
176
+ },
177
+ "id": "example-9",
178
+ "title": "Successful SendDataIntegrationEvent for processoperation event type"
179
+ },
180
+ {
181
+ "input": {
182
+ "data": "{\"process_product_id\": \"process-product-id-test-123\", \"process_id\": \"process-id-test-123\" }",
183
+ "eventGroupId": "processProductId",
184
+ "eventTimestamp": 1515531081.123,
185
+ "eventType": "scn.data.processproduct",
186
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
187
+ },
188
+ "output": {
189
+ "eventId": "6929b275-485e-4035-a798-99077ca6d669"
190
+ },
191
+ "id": "example-10",
192
+ "title": "Successful SendDataIntegrationEvent for processproduct event type"
193
+ },
194
+ {
195
+ "input": {
196
+ "data": "{\"reservation_id\": \"reservation-id-test-123\", \"reservation_detail_id\": \"reservation-detail-id-test-123\" }",
197
+ "eventGroupId": "reservationId",
198
+ "eventTimestamp": 1515531081.123,
199
+ "eventType": "scn.data.reservation",
200
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
201
+ },
202
+ "output": {
203
+ "eventId": "f6c55a8b-fde2-44f6-848a-9b4336c77209"
204
+ },
205
+ "id": "example-11",
206
+ "title": "Successful SendDataIntegrationEvent for reservation event type"
207
+ },
208
+ {
209
+ "input": {
210
+ "data": "{\"id\": \"shipment-id-test-123\", \"supplier_tpartner_id\": \"supplier-tpartner-id-test-123\", \"product_id\": \"product-id-test-123\", \"order_id\": \"order-id-test-123\", \"order_line_id\": \"order-line-id-test-123\", \"package_id\": \"package-id-test-123\" }",
211
+ "eventGroupId": "shipmentId",
212
+ "eventTimestamp": 1515531081.123,
213
+ "eventType": "scn.data.shipment",
214
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
215
+ },
216
+ "output": {
217
+ "eventId": "61d079d8-3f56-49bb-b35a-c0271a4e4f0a"
218
+ },
219
+ "id": "example-12",
220
+ "title": "Successful SendDataIntegrationEvent for shipment event type"
221
+ },
222
+ {
223
+ "input": {
224
+ "data": "{\"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }",
225
+ "eventGroupId": "shipmentStopId",
226
+ "eventTimestamp": 1515531081.123,
227
+ "eventType": "scn.data.shipmentstop",
228
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
229
+ },
230
+ "output": {
231
+ "eventId": "3610992a-fc2f-4da4-9beb-724994622ba1"
232
+ },
233
+ "id": "example-13",
234
+ "title": "Successful SendDataIntegrationEvent for shipmentstop event type"
235
+ },
236
+ {
237
+ "input": {
238
+ "data": "{\"shipment_stop_order_id\": \"shipment-stop-order-id-test-123\", \"shipment_stop_id\": \"shipment-stop-id-test-123\", \"shipment_id\": \"shipment-id-test-123\" }",
239
+ "eventGroupId": "shipmentStopOrderId",
240
+ "eventTimestamp": 1515531081.123,
241
+ "eventType": "scn.data.shipmentstoporder",
242
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
243
+ },
244
+ "output": {
245
+ "eventId": "1d550a60-9321-4d25-a132-9dd4b2d9e934"
246
+ },
247
+ "id": "example-14",
248
+ "title": "Successful SendDataIntegrationEvent for shipmentstoporder event type"
249
+ },
250
+ {
251
+ "input": {
252
+ "data": "{\"supply_plan_id\": \"supply-plan-id-test-123\" }",
253
+ "eventGroupId": "supplyPlanId",
254
+ "eventTimestamp": 1515531081.123,
255
+ "eventType": "scn.data.supplyplan",
256
+ "instanceId": "8928ae12-15e5-4441-825d-ec2184f0a43a"
257
+ },
258
+ "output": {
259
+ "eventId": "9abaee56-5dc4-4c31-8250-3206a651d8a1"
260
+ },
261
+ "id": "example-15",
262
+ "title": "Successful SendDataIntegrationEvent for supplyplan event type"
263
+ }
264
+ ]
4
265
  }
5
266
  }
@@ -92,6 +92,50 @@
92
92
  }
93
93
  }
94
94
  }
95
+ },
96
+ "SendDataIntegrationEvent": {
97
+ "http": {
98
+ "requestUri": "/api-data/data-integration/instance/{instanceId}/data-integration-events",
99
+ "responseCode": 200
100
+ },
101
+ "input": {
102
+ "type": "structure",
103
+ "required": [
104
+ "instanceId",
105
+ "eventType",
106
+ "data",
107
+ "eventGroupId"
108
+ ],
109
+ "members": {
110
+ "instanceId": {
111
+ "location": "uri",
112
+ "locationName": "instanceId"
113
+ },
114
+ "eventType": {},
115
+ "data": {
116
+ "type": "string",
117
+ "sensitive": true
118
+ },
119
+ "eventGroupId": {},
120
+ "eventTimestamp": {
121
+ "type": "timestamp",
122
+ "timestampFormat": "unixTimestamp"
123
+ },
124
+ "clientToken": {
125
+ "idempotencyToken": true
126
+ }
127
+ }
128
+ },
129
+ "output": {
130
+ "type": "structure",
131
+ "required": [
132
+ "eventId"
133
+ ],
134
+ "members": {
135
+ "eventId": {}
136
+ }
137
+ },
138
+ "idempotent": true
95
139
  }
96
140
  },
97
141
  "shapes": {}
@@ -178,7 +178,7 @@
178
178
  "id": {},
179
179
  "serialNumber": {},
180
180
  "name": {
181
- "shape": "S11"
181
+ "shape": "S10"
182
182
  },
183
183
  "model": {},
184
184
  "environmentId": {},
@@ -206,7 +206,7 @@
206
206
  "arn": {},
207
207
  "kmsKeyArn": {},
208
208
  "tags": {
209
- "shape": "Sp"
209
+ "shape": "Sh"
210
210
  }
211
211
  }
212
212
  }
@@ -271,7 +271,7 @@
271
271
  "arn": {},
272
272
  "kmsKeyArn": {},
273
273
  "tags": {
274
- "shape": "Sp"
274
+ "shape": "Sh"
275
275
  }
276
276
  }
277
277
  }
@@ -324,7 +324,10 @@
324
324
  }
325
325
  }
326
326
  },
327
- "arn": {}
327
+ "arn": {},
328
+ "tags": {
329
+ "shape": "Sh"
330
+ }
328
331
  }
329
332
  }
330
333
  }
@@ -359,7 +362,7 @@
359
362
  "devices": {
360
363
  "type": "list",
361
364
  "member": {
362
- "shape": "S1l"
365
+ "shape": "S1k"
363
366
  }
364
367
  },
365
368
  "nextToken": {}
@@ -564,7 +567,7 @@
564
567
  "locationName": "id"
565
568
  },
566
569
  "name": {
567
- "shape": "S11"
570
+ "shape": "S10"
568
571
  },
569
572
  "desiredSoftwareSetId": {},
570
573
  "softwareSetUpdateSchedule": {}
@@ -574,7 +577,7 @@
574
577
  "type": "structure",
575
578
  "members": {
576
579
  "device": {
577
- "shape": "S1l"
580
+ "shape": "S1k"
578
581
  }
579
582
  }
580
583
  },
@@ -721,31 +724,20 @@
721
724
  "updatedAt": {
722
725
  "type": "timestamp"
723
726
  },
724
- "arn": {},
725
- "tags": {
726
- "shape": "Sp"
727
- }
727
+ "arn": {}
728
728
  }
729
729
  },
730
- "Sp": {
731
- "type": "structure",
732
- "members": {
733
- "resourceArn": {},
734
- "internalId": {}
735
- },
736
- "sensitive": true
737
- },
738
- "S11": {
730
+ "S10": {
739
731
  "type": "string",
740
732
  "sensitive": true
741
733
  },
742
- "S1l": {
734
+ "S1k": {
743
735
  "type": "structure",
744
736
  "members": {
745
737
  "id": {},
746
738
  "serialNumber": {},
747
739
  "name": {
748
- "shape": "S11"
740
+ "shape": "S10"
749
741
  },
750
742
  "model": {},
751
743
  "environmentId": {},
@@ -766,10 +758,7 @@
766
758
  "updatedAt": {
767
759
  "type": "timestamp"
768
760
  },
769
- "arn": {},
770
- "tags": {
771
- "shape": "Sp"
772
- }
761
+ "arn": {}
773
762
  }
774
763
  }
775
764
  }
@@ -746,6 +746,10 @@ declare namespace CleanRooms {
746
746
  * The parameters of the analysis template.
747
747
  */
748
748
  analysisParameters?: AnalysisParameterList;
749
+ /**
750
+ * Information about the validations performed on the analysis template.
751
+ */
752
+ validations?: AnalysisTemplateValidationStatusDetailList;
749
753
  }
750
754
  export type AnalysisTemplateArn = string;
751
755
  export type AnalysisTemplateArnList = AnalysisTemplateArn[];
@@ -795,6 +799,30 @@ declare namespace CleanRooms {
795
799
  }
796
800
  export type AnalysisTemplateSummaryList = AnalysisTemplateSummary[];
797
801
  export type AnalysisTemplateText = string;
802
+ export type AnalysisTemplateValidationStatus = "VALID"|"INVALID"|"UNABLE_TO_VALIDATE"|string;
803
+ export interface AnalysisTemplateValidationStatusDetail {
804
+ /**
805
+ * The type of validation that was performed.
806
+ */
807
+ type: AnalysisTemplateValidationType;
808
+ /**
809
+ * The status of the validation.
810
+ */
811
+ status: AnalysisTemplateValidationStatus;
812
+ /**
813
+ * The reasons for the validation results.
814
+ */
815
+ reasons?: AnalysisTemplateValidationStatusReasonList;
816
+ }
817
+ export type AnalysisTemplateValidationStatusDetailList = AnalysisTemplateValidationStatusDetail[];
818
+ export interface AnalysisTemplateValidationStatusReason {
819
+ /**
820
+ * The validation message.
821
+ */
822
+ message: String;
823
+ }
824
+ export type AnalysisTemplateValidationStatusReasonList = AnalysisTemplateValidationStatusReason[];
825
+ export type AnalysisTemplateValidationType = "DIFFERENTIAL_PRIVACY"|string;
798
826
  export interface BatchGetCollaborationAnalysisTemplateError {
799
827
  /**
800
828
  * The Amazon Resource Name (ARN) of the analysis template.
@@ -1013,6 +1041,10 @@ declare namespace CleanRooms {
1013
1041
  * The analysis parameters that have been specified in the analysis template.
1014
1042
  */
1015
1043
  analysisParameters?: AnalysisParameterList;
1044
+ /**
1045
+ * The validations that were performed.
1046
+ */
1047
+ validations?: AnalysisTemplateValidationStatusDetailList;
1016
1048
  }
1017
1049
  export type CollaborationAnalysisTemplateList = CollaborationAnalysisTemplate[];
1018
1050
  export interface CollaborationAnalysisTemplateSummary {
@@ -1966,7 +1966,7 @@ declare namespace Connect {
1966
1966
  */
1967
1967
  ActionType: ActionType;
1968
1968
  }
1969
- export type ActionType = "CREATE_TASK"|"ASSIGN_CONTACT_CATEGORY"|"GENERATE_EVENTBRIDGE_EVENT"|"SEND_NOTIFICATION"|"CREATE_CASE"|"UPDATE_CASE"|"END_ASSOCIATED_TASKS"|string;
1969
+ export type ActionType = "CREATE_TASK"|"ASSIGN_CONTACT_CATEGORY"|"GENERATE_EVENTBRIDGE_EVENT"|"SEND_NOTIFICATION"|"CREATE_CASE"|"UPDATE_CASE"|"END_ASSOCIATED_TASKS"|"SUBMIT_AUTO_EVALUATION"|string;
1970
1970
  export interface ActivateEvaluationFormRequest {
1971
1971
  /**
1972
1972
  * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
@@ -3680,7 +3680,7 @@ declare namespace Connect {
3680
3680
  */
3681
3681
  TagRestrictedResources?: TagRestrictedResourceList;
3682
3682
  /**
3683
- * This API is in preview release for Amazon Connect and is subject to change. A list of third-party applications that the security profile will give access to.
3683
+ * A list of third-party applications that the security profile will give access to.
3684
3684
  */
3685
3685
  Applications?: Applications;
3686
3686
  /**
@@ -5188,6 +5188,7 @@ declare namespace Connect {
5188
5188
  ScoringStrategy?: EvaluationFormScoringStrategy;
5189
5189
  }
5190
5190
  export type EvaluationFormDescription = string;
5191
+ export type EvaluationFormId = string;
5191
5192
  export interface EvaluationFormItem {
5192
5193
  /**
5193
5194
  * The information of the section.
@@ -7579,7 +7580,7 @@ declare namespace Connect {
7579
7580
  }
7580
7581
  export interface ListSecurityProfileApplicationsResponse {
7581
7582
  /**
7582
- * This API is in preview release for Amazon Connect and is subject to change. A list of the third-party application's metadata.
7583
+ * A list of the third-party application's metadata.
7583
7584
  */
7584
7585
  Applications?: Applications;
7585
7586
  /**
@@ -9294,6 +9295,10 @@ declare namespace Connect {
9294
9295
  * Information about the end associated tasks action. Supported only for TriggerEventSource values: OnCaseUpdate.
9295
9296
  */
9296
9297
  EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
9298
+ /**
9299
+ * Information about the submit automated evaluation action.
9300
+ */
9301
+ SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition;
9297
9302
  }
9298
9303
  export type RuleActions = RuleAction[];
9299
9304
  export type RuleFunction = string;
@@ -10500,6 +10505,12 @@ declare namespace Connect {
10500
10505
  Value?: ReferenceValue;
10501
10506
  }
10502
10507
  export type Subject = string;
10508
+ export interface SubmitAutoEvaluationActionDefinition {
10509
+ /**
10510
+ * The identifier of the auto-evaluation enabled form.
10511
+ */
10512
+ EvaluationFormId: EvaluationFormId;
10513
+ }
10503
10514
  export interface SubmitContactEvaluationRequest {
10504
10515
  /**
10505
10516
  * The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
@@ -11639,7 +11650,7 @@ declare namespace Connect {
11639
11650
  */
11640
11651
  TagRestrictedResources?: TagRestrictedResourceList;
11641
11652
  /**
11642
- * This API is in preview release for Amazon Connect and is subject to change. A list of the third-party application's metadata.
11653
+ * A list of the third-party application's metadata.
11643
11654
  */
11644
11655
  Applications?: Applications;
11645
11656
  /**