@aws-sdk/client-securitylake 3.428.0 → 3.429.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.
|
@@ -83,7 +83,7 @@ export interface AwsLogSourceConfiguration {
|
|
|
83
83
|
* @public
|
|
84
84
|
* <p>The name for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
85
85
|
*/
|
|
86
|
-
sourceName: AwsLogSourceName |
|
|
86
|
+
sourceName: AwsLogSourceName | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* @public
|
|
89
89
|
* <p>The version for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
@@ -99,7 +99,7 @@ export interface AwsLogSourceResource {
|
|
|
99
99
|
* @public
|
|
100
100
|
* <p>The name for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
101
101
|
*/
|
|
102
|
-
sourceName?: AwsLogSourceName
|
|
102
|
+
sourceName?: AwsLogSourceName;
|
|
103
103
|
/**
|
|
104
104
|
* @public
|
|
105
105
|
* <p>The version for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
@@ -727,7 +727,7 @@ export interface DataLakeUpdateStatus {
|
|
|
727
727
|
* <p>The status of the last <code>UpdateDataLake</code> or <code>DeleteDataLake</code> API
|
|
728
728
|
* request that was requested.</p>
|
|
729
729
|
*/
|
|
730
|
-
status?: DataLakeStatus
|
|
730
|
+
status?: DataLakeStatus;
|
|
731
731
|
/**
|
|
732
732
|
* @public
|
|
733
733
|
* <p>The details of the last <code>UpdateDataLake</code>or <code>DeleteDataLake</code> API
|
|
@@ -774,7 +774,7 @@ export interface DataLakeResource {
|
|
|
774
774
|
* @public
|
|
775
775
|
* <p>Retrieves the status of the configuration operation for an account in Amazon Security Lake.</p>
|
|
776
776
|
*/
|
|
777
|
-
createStatus?: DataLakeStatus
|
|
777
|
+
createStatus?: DataLakeStatus;
|
|
778
778
|
/**
|
|
779
779
|
* @public
|
|
780
780
|
* <p>The status of the last <code>UpdateDataLake </code>or <code>DeleteDataLake</code> API
|
|
@@ -922,7 +922,7 @@ export interface CreateSubscriberRequest {
|
|
|
922
922
|
* @public
|
|
923
923
|
* <p>The Amazon S3 or Lake Formation access type.</p>
|
|
924
924
|
*/
|
|
925
|
-
accessTypes?:
|
|
925
|
+
accessTypes?: AccessType[];
|
|
926
926
|
/**
|
|
927
927
|
* @public
|
|
928
928
|
* <p>An array of objects, one for each tag to associate with the subscriber. For each tag, you must specify both a tag key and a tag value. A tag
|
|
@@ -992,7 +992,7 @@ export interface SubscriberResource {
|
|
|
992
992
|
* Amazon S3 bucket through services like Amazon Athena. This subscription
|
|
993
993
|
* type is defined as <code>LAKEFORMATION</code>.</p>
|
|
994
994
|
*/
|
|
995
|
-
accessTypes?:
|
|
995
|
+
accessTypes?: AccessType[];
|
|
996
996
|
/**
|
|
997
997
|
* @public
|
|
998
998
|
* <p>The Amazon Resource Name (ARN) specifying the role of the subscriber.</p>
|
|
@@ -1012,7 +1012,7 @@ export interface SubscriberResource {
|
|
|
1012
1012
|
* @public
|
|
1013
1013
|
* <p>The subscriber status of the Amazon Security Lake subscriber account.</p>
|
|
1014
1014
|
*/
|
|
1015
|
-
subscriberStatus?: SubscriberStatus
|
|
1015
|
+
subscriberStatus?: SubscriberStatus;
|
|
1016
1016
|
/**
|
|
1017
1017
|
* @public
|
|
1018
1018
|
* <p>The Amazon Resource Name (ARN) which uniquely defines the AWS RAM resource share. Before
|
|
@@ -1085,7 +1085,7 @@ export interface HttpsNotificationConfiguration {
|
|
|
1085
1085
|
* @public
|
|
1086
1086
|
* <p>The HTTPS method used for the notification subscription.</p>
|
|
1087
1087
|
*/
|
|
1088
|
-
httpMethod?: HttpMethod
|
|
1088
|
+
httpMethod?: HttpMethod;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* @public
|
|
1091
1091
|
* <p>The Amazon Resource Name (ARN) of the EventBridge API destinations IAM role that you
|
|
@@ -1310,7 +1310,7 @@ export interface DataLakeSourceStatus {
|
|
|
1310
1310
|
* @public
|
|
1311
1311
|
* <p>The health status of services, including error codes and patterns.</p>
|
|
1312
1312
|
*/
|
|
1313
|
-
status?: SourceCollectionStatus
|
|
1313
|
+
status?: SourceCollectionStatus;
|
|
1314
1314
|
}
|
|
1315
1315
|
/**
|
|
1316
1316
|
* @public
|
|
@@ -30,11 +30,11 @@ export type AwsLogSourceName =
|
|
|
30
30
|
export interface AwsLogSourceConfiguration {
|
|
31
31
|
accounts?: string[];
|
|
32
32
|
regions: string[] | undefined;
|
|
33
|
-
sourceName: AwsLogSourceName |
|
|
33
|
+
sourceName: AwsLogSourceName | undefined;
|
|
34
34
|
sourceVersion?: string;
|
|
35
35
|
}
|
|
36
36
|
export interface AwsLogSourceResource {
|
|
37
|
-
sourceName?: AwsLogSourceName
|
|
37
|
+
sourceName?: AwsLogSourceName;
|
|
38
38
|
sourceVersion?: string;
|
|
39
39
|
}
|
|
40
40
|
export declare class BadRequestException extends __BaseException {
|
|
@@ -165,7 +165,7 @@ export interface DataLakeUpdateException {
|
|
|
165
165
|
}
|
|
166
166
|
export interface DataLakeUpdateStatus {
|
|
167
167
|
requestId?: string;
|
|
168
|
-
status?: DataLakeStatus
|
|
168
|
+
status?: DataLakeStatus;
|
|
169
169
|
exception?: DataLakeUpdateException;
|
|
170
170
|
}
|
|
171
171
|
export interface DataLakeResource {
|
|
@@ -175,7 +175,7 @@ export interface DataLakeResource {
|
|
|
175
175
|
encryptionConfiguration?: DataLakeEncryptionConfiguration;
|
|
176
176
|
lifecycleConfiguration?: DataLakeLifecycleConfiguration;
|
|
177
177
|
replicationConfiguration?: DataLakeReplicationConfiguration;
|
|
178
|
-
createStatus?: DataLakeStatus
|
|
178
|
+
createStatus?: DataLakeStatus;
|
|
179
179
|
updateStatus?: DataLakeUpdateStatus;
|
|
180
180
|
}
|
|
181
181
|
export interface CreateDataLakeResponse {
|
|
@@ -227,7 +227,7 @@ export interface CreateSubscriberRequest {
|
|
|
227
227
|
subscriberName: string | undefined;
|
|
228
228
|
subscriberDescription?: string;
|
|
229
229
|
sources: LogSourceResource[] | undefined;
|
|
230
|
-
accessTypes?:
|
|
230
|
+
accessTypes?: AccessType[];
|
|
231
231
|
tags?: Tag[];
|
|
232
232
|
}
|
|
233
233
|
export declare const SubscriberStatus: {
|
|
@@ -245,11 +245,11 @@ export interface SubscriberResource {
|
|
|
245
245
|
subscriberName: string | undefined;
|
|
246
246
|
subscriberDescription?: string;
|
|
247
247
|
sources: LogSourceResource[] | undefined;
|
|
248
|
-
accessTypes?:
|
|
248
|
+
accessTypes?: AccessType[];
|
|
249
249
|
roleArn?: string;
|
|
250
250
|
s3BucketArn?: string;
|
|
251
251
|
subscriberEndpoint?: string;
|
|
252
|
-
subscriberStatus?: SubscriberStatus
|
|
252
|
+
subscriberStatus?: SubscriberStatus;
|
|
253
253
|
resourceShareArn?: string;
|
|
254
254
|
resourceShareName?: string;
|
|
255
255
|
createdAt?: Date;
|
|
@@ -267,7 +267,7 @@ export interface HttpsNotificationConfiguration {
|
|
|
267
267
|
endpoint: string | undefined;
|
|
268
268
|
authorizationApiKeyName?: string;
|
|
269
269
|
authorizationApiKeyValue?: string;
|
|
270
|
-
httpMethod?: HttpMethod
|
|
270
|
+
httpMethod?: HttpMethod;
|
|
271
271
|
targetRoleArn: string | undefined;
|
|
272
272
|
}
|
|
273
273
|
export interface SqsNotificationConfiguration {}
|
|
@@ -344,7 +344,7 @@ export type SourceCollectionStatus =
|
|
|
344
344
|
(typeof SourceCollectionStatus)[keyof typeof SourceCollectionStatus];
|
|
345
345
|
export interface DataLakeSourceStatus {
|
|
346
346
|
resource?: string;
|
|
347
|
-
status?: SourceCollectionStatus
|
|
347
|
+
status?: SourceCollectionStatus;
|
|
348
348
|
}
|
|
349
349
|
export interface DataLakeSource {
|
|
350
350
|
account?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-securitylake",
|
|
3
3
|
"description": "AWS SDK for JavaScript Securitylake Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|