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.
- package/.jsii +3 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +155 -123
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +330 -321
- package/node_modules/aws-sdk/apis/qconnect-2020-10-19.min.json +140 -56
- package/node_modules/aws-sdk/apis/rekognition-2016-06-27.min.json +16 -10
- package/node_modules/aws-sdk/apis/supplychain-2024-01-01.examples.json +261 -0
- package/node_modules/aws-sdk/apis/supplychain-2024-01-01.min.json +44 -0
- package/node_modules/aws-sdk/apis/workspaces-thin-client-2023-08-22.min.json +15 -26
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +32 -0
- package/node_modules/aws-sdk/clients/connect.d.ts +15 -4
- package/node_modules/aws-sdk/clients/networkmonitor.d.ts +26 -26
- package/node_modules/aws-sdk/clients/qconnect.d.ts +169 -96
- package/node_modules/aws-sdk/clients/rekognition.d.ts +5 -1
- package/node_modules/aws-sdk/clients/supplychain.d.ts +44 -0
- package/node_modules/aws-sdk/clients/workspacesthinclient.d.ts +6 -20
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +349 -334
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +83 -83
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +2 -2
@@ -969,6 +969,10 @@ declare namespace Rekognition {
|
|
969
969
|
* The time duration of a segment in milliseconds, I.e. time elapsed from StartTimestampMillis to EndTimestampMillis.
|
970
970
|
*/
|
971
971
|
DurationMillis?: ULong;
|
972
|
+
/**
|
973
|
+
* A list of predicted results for the type of content an image contains. For example, the image content might be from animation, sports, or a video game.
|
974
|
+
*/
|
975
|
+
ContentTypes?: ContentTypes;
|
972
976
|
}
|
973
977
|
export type ContentModerationDetections = ContentModerationDetection[];
|
974
978
|
export type ContentModerationSortBy = "NAME"|"TIMESTAMP"|string;
|
@@ -1099,7 +1103,7 @@ declare namespace Rekognition {
|
|
1099
1103
|
}
|
1100
1104
|
export interface CreateFaceLivenessSessionResponse {
|
1101
1105
|
/**
|
1102
|
-
* A unique 128-bit UUID identifying a Face Liveness session.
|
1106
|
+
* A unique 128-bit UUID identifying a Face Liveness session. A new sessionID must be used for every Face Liveness check. If a given sessionID is used for subsequent Face Liveness checks, the checks will fail. Additionally, a SessionId expires 3 minutes after it's sent, making all Liveness data associated with the session (e.g., sessionID, reference image, audit images, etc.) unavailable.
|
1103
1107
|
*/
|
1104
1108
|
SessionId: LivenessSessionId;
|
1105
1109
|
}
|
@@ -27,6 +27,14 @@ declare class SupplyChain extends Service {
|
|
27
27
|
* Get status and details of a BillOfMaterialsImportJob.
|
28
28
|
*/
|
29
29
|
getBillOfMaterialsImportJob(callback?: (err: AWSError, data: SupplyChain.Types.GetBillOfMaterialsImportJobResponse) => void): Request<SupplyChain.Types.GetBillOfMaterialsImportJobResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Send transactional data events with real-time data for analysis or monitoring.
|
32
|
+
*/
|
33
|
+
sendDataIntegrationEvent(params: SupplyChain.Types.SendDataIntegrationEventRequest, callback?: (err: AWSError, data: SupplyChain.Types.SendDataIntegrationEventResponse) => void): Request<SupplyChain.Types.SendDataIntegrationEventResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Send transactional data events with real-time data for analysis or monitoring.
|
36
|
+
*/
|
37
|
+
sendDataIntegrationEvent(callback?: (err: AWSError, data: SupplyChain.Types.SendDataIntegrationEventResponse) => void): Request<SupplyChain.Types.SendDataIntegrationEventResponse, AWSError>;
|
30
38
|
}
|
31
39
|
declare namespace SupplyChain {
|
32
40
|
export interface BillOfMaterialsImportJob {
|
@@ -74,6 +82,9 @@ declare namespace SupplyChain {
|
|
74
82
|
*/
|
75
83
|
jobId: UUID;
|
76
84
|
}
|
85
|
+
export type DataIntegrationEventData = string;
|
86
|
+
export type DataIntegrationEventGroupId = string;
|
87
|
+
export type DataIntegrationEventType = "scn.data.forecast"|"scn.data.inventorylevel"|"scn.data.inboundorder"|"scn.data.inboundorderline"|"scn.data.inboundorderlineschedule"|"scn.data.outboundorderline"|"scn.data.outboundshipment"|"scn.data.processheader"|"scn.data.processoperation"|"scn.data.processproduct"|"scn.data.reservation"|"scn.data.shipment"|"scn.data.shipmentstop"|"scn.data.shipmentstoporder"|"scn.data.supplyplan"|string;
|
77
88
|
export interface GetBillOfMaterialsImportJobRequest {
|
78
89
|
/**
|
79
90
|
* The AWS Supply Chain instance identifier.
|
@@ -90,7 +101,40 @@ declare namespace SupplyChain {
|
|
90
101
|
*/
|
91
102
|
job: BillOfMaterialsImportJob;
|
92
103
|
}
|
104
|
+
export interface SendDataIntegrationEventRequest {
|
105
|
+
/**
|
106
|
+
* The AWS Supply Chain instance identifier.
|
107
|
+
*/
|
108
|
+
instanceId: UUID;
|
109
|
+
/**
|
110
|
+
* The data event type.
|
111
|
+
*/
|
112
|
+
eventType: DataIntegrationEventType;
|
113
|
+
/**
|
114
|
+
* The data payload of the event.
|
115
|
+
*/
|
116
|
+
data: DataIntegrationEventData;
|
117
|
+
/**
|
118
|
+
* Event identifier (for example, orderId for InboundOrder) used for data sharing or partitioning.
|
119
|
+
*/
|
120
|
+
eventGroupId: DataIntegrationEventGroupId;
|
121
|
+
/**
|
122
|
+
* The event timestamp (in epoch seconds).
|
123
|
+
*/
|
124
|
+
eventTimestamp?: SyntheticTimestamp_epoch_seconds;
|
125
|
+
/**
|
126
|
+
* The idempotent client token.
|
127
|
+
*/
|
128
|
+
clientToken?: ClientToken;
|
129
|
+
}
|
130
|
+
export interface SendDataIntegrationEventResponse {
|
131
|
+
/**
|
132
|
+
* The unique event identifier.
|
133
|
+
*/
|
134
|
+
eventId: UUID;
|
135
|
+
}
|
93
136
|
export type String = string;
|
137
|
+
export type SyntheticTimestamp_epoch_seconds = Date;
|
94
138
|
export type UUID = string;
|
95
139
|
/**
|
96
140
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
@@ -321,7 +321,7 @@ declare namespace WorkSpacesThinClient {
|
|
321
321
|
/**
|
322
322
|
* The tag keys and optional values for the resource.
|
323
323
|
*/
|
324
|
-
tags?:
|
324
|
+
tags?: TagsMap;
|
325
325
|
}
|
326
326
|
export type DeviceId = string;
|
327
327
|
export type DeviceList = DeviceSummary[];
|
@@ -389,20 +389,6 @@ declare namespace WorkSpacesThinClient {
|
|
389
389
|
* The Amazon Resource Name (ARN) of the device.
|
390
390
|
*/
|
391
391
|
arn?: Arn;
|
392
|
-
/**
|
393
|
-
* The tag keys and optional values for the resource.
|
394
|
-
*/
|
395
|
-
tags?: EmbeddedTag;
|
396
|
-
}
|
397
|
-
export interface EmbeddedTag {
|
398
|
-
/**
|
399
|
-
* The Amazon Resource Name (ARN) of a resource to tag.
|
400
|
-
*/
|
401
|
-
resourceArn?: String;
|
402
|
-
/**
|
403
|
-
* The internal ID of a resource to tag.
|
404
|
-
*/
|
405
|
-
internalId?: String;
|
406
392
|
}
|
407
393
|
export interface Environment {
|
408
394
|
/**
|
@@ -480,7 +466,7 @@ declare namespace WorkSpacesThinClient {
|
|
480
466
|
/**
|
481
467
|
* The tag keys and optional values for the resource.
|
482
468
|
*/
|
483
|
-
tags?:
|
469
|
+
tags?: TagsMap;
|
484
470
|
}
|
485
471
|
export type EnvironmentId = string;
|
486
472
|
export type EnvironmentList = EnvironmentSummary[];
|
@@ -543,10 +529,6 @@ declare namespace WorkSpacesThinClient {
|
|
543
529
|
* The Amazon Resource Name (ARN) of the environment.
|
544
530
|
*/
|
545
531
|
arn?: Arn;
|
546
|
-
/**
|
547
|
-
* The tag keys and optional values for the resource.
|
548
|
-
*/
|
549
|
-
tags?: EmbeddedTag;
|
550
532
|
}
|
551
533
|
export interface GetDeviceRequest {
|
552
534
|
/**
|
@@ -733,6 +715,10 @@ declare namespace WorkSpacesThinClient {
|
|
733
715
|
* The Amazon Resource Name (ARN) of the software set.
|
734
716
|
*/
|
735
717
|
arn?: Arn;
|
718
|
+
/**
|
719
|
+
* The tag keys and optional values for the resource.
|
720
|
+
*/
|
721
|
+
tags?: TagsMap;
|
736
722
|
}
|
737
723
|
export type SoftwareSetId = string;
|
738
724
|
export type SoftwareSetIdOrEmptyString = string;
|