@aws-sdk/client-securitylake 3.296.0 → 3.297.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.
- package/dist-types/SecurityLake.d.ts +31 -0
- package/dist-types/SecurityLakeClient.d.ts +24 -4
- package/dist-types/commands/CreateAwsLogSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +16 -0
- package/dist-types/commands/CreateDatalakeCommand.d.ts +16 -0
- package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +16 -0
- package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/CreateSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatalakeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +16 -0
- package/dist-types/commands/GetDatalakeCommand.d.ts +16 -0
- package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +16 -0
- package/dist-types/commands/GetDatalakeExceptionsSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/GetDatalakeStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +16 -0
- package/dist-types/commands/ListLogSourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListSubscribersCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatalakeCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +16 -0
- package/dist-types/models/SecurityLakeServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -0
- package/dist-types/pagination/GetDatalakeStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListDatalakeExceptionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLogSourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSubscribersPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDatalakeExceptionsExpiryRequest, GetDatalakeExceptionsExpiryResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatalakeExceptionsExpiryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatalakeExceptionsExpiryCommandInput extends GetDatalakeExceptionsExpiryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatalakeExceptionsExpiryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExceptionsExpiryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the expiration period and time-to-live (TTL) for which the exception message
|
|
18
23
|
* will remain. Exceptions are stored by default, for 2 weeks from when a record was created
|
|
19
24
|
* in Amazon Security Lake. This API does not take input parameters.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetDatalakeExceptionsExpiryCommandInput - {@link GetDatalakeExceptionsExpiryCommandInput}
|
|
36
|
+
* @returns {@link GetDatalakeExceptionsExpiryCommandOutput}
|
|
30
37
|
* @see {@link GetDatalakeExceptionsExpiryCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetDatalakeExceptionsExpiryCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
|
|
|
54
61
|
export declare class GetDatalakeExceptionsExpiryCommand extends $Command<GetDatalakeExceptionsExpiryCommandInput, GetDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
55
62
|
readonly input: GetDatalakeExceptionsExpiryCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetDatalakeExceptionsExpiryCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatalakeExceptionsExpiryCommandInput, GetDatalakeExceptionsExpiryCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDatalakeExceptionsSubscriptionRequest, GetDatalakeExceptionsSubscriptionResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatalakeExceptionsSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatalakeExceptionsSubscriptionCommandInput extends GetDatalakeExceptionsSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatalakeExceptionsSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatalakeExceptionsSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the details of exception notifications for the account in Amazon Security Lake.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetDatalakeExceptionsSubscriptionCommandInput - {@link GetDatalakeExceptionsSubscriptionCommandInput}
|
|
34
|
+
* @returns {@link GetDatalakeExceptionsSubscriptionCommandOutput}
|
|
28
35
|
* @see {@link GetDatalakeExceptionsSubscriptionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
|
|
|
52
59
|
export declare class GetDatalakeExceptionsSubscriptionCommand extends $Command<GetDatalakeExceptionsSubscriptionCommandInput, GetDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
53
60
|
readonly input: GetDatalakeExceptionsSubscriptionCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: GetDatalakeExceptionsSubscriptionCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatalakeExceptionsSubscriptionCommandInput, GetDatalakeExceptionsSubscriptionCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetDatalakeStatusRequest, GetDatalakeStatusResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatalakeStatusCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatalakeStatusCommandInput extends GetDatalakeStatusRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatalakeStatusCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a snapshot of the current Region, including whether Amazon Security Lake is enabled
|
|
18
23
|
* for those accounts and which sources Security Lake is collecting data from. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDatalakeStatusCommandInput - {@link GetDatalakeStatusCommandInput}
|
|
35
|
+
* @returns {@link GetDatalakeStatusCommandOutput}
|
|
29
36
|
* @see {@link GetDatalakeStatusCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDatalakeStatusCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
|
|
|
53
60
|
export declare class GetDatalakeStatusCommand extends $Command<GetDatalakeStatusCommandInput, GetDatalakeStatusCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
54
61
|
readonly input: GetDatalakeStatusCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetDatalakeStatusCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatalakeStatusCommandInput, GetDatalakeStatusCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetSubscriberRequest, GetSubscriberResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetSubscriberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetSubscriberCommandInput extends GetSubscriberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetSubscriberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the subscription information for the specified subscription ID. You can get
|
|
18
23
|
* information about a specific subscriber.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetSubscriberCommandInput - {@link GetSubscriberCommandInput}
|
|
35
|
+
* @returns {@link GetSubscriberCommandOutput}
|
|
29
36
|
* @see {@link GetSubscriberCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetSubscriberCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
|
|
|
57
64
|
export declare class GetSubscriberCommand extends $Command<GetSubscriberCommandInput, GetSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
58
65
|
readonly input: GetSubscriberCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: GetSubscriberCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSubscriberCommandInput, GetSubscriberCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListDatalakeExceptionsRequest, ListDatalakeExceptionsResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListDatalakeExceptionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListDatalakeExceptionsCommandInput extends ListDatalakeExceptionsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListDatalakeExceptionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExceptionsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the Amazon Security Lake exceptions that you can use to find the source of problems and
|
|
18
23
|
* fix them.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListDatalakeExceptionsCommandInput - {@link ListDatalakeExceptionsCommandInput}
|
|
35
|
+
* @returns {@link ListDatalakeExceptionsCommandOutput}
|
|
29
36
|
* @see {@link ListDatalakeExceptionsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListDatalakeExceptionsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
|
|
|
53
60
|
export declare class ListDatalakeExceptionsCommand extends $Command<ListDatalakeExceptionsCommandInput, ListDatalakeExceptionsCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
54
61
|
readonly input: ListDatalakeExceptionsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: ListDatalakeExceptionsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatalakeExceptionsCommandInput, ListDatalakeExceptionsCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListLogSourcesRequest, ListLogSourcesResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListLogSourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListLogSourcesCommandInput extends ListLogSourcesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListLogSourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the log sources in the current Amazon Web Services Region. </p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListLogSourcesCommandInput - {@link ListLogSourcesCommandInput}
|
|
34
|
+
* @returns {@link ListLogSourcesCommandOutput}
|
|
28
35
|
* @see {@link ListLogSourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListLogSourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
55
62
|
export declare class ListLogSourcesCommand extends $Command<ListLogSourcesCommandInput, ListLogSourcesCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
56
63
|
readonly input: ListLogSourcesCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ListLogSourcesCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLogSourcesCommandInput, ListLogSourcesCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListSubscribersRequest, ListSubscribersResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListSubscribersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListSubscribersCommandInput extends ListSubscribersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListSubscribersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListSubscribersCommandOutput extends ListSubscribersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List all subscribers for the specific Amazon Security Lake account ID. You can retrieve a list
|
|
18
23
|
* of subscriptions associated with a specific organization or Amazon Web Services account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListSubscribersCommandInput - {@link ListSubscribersCommandInput}
|
|
35
|
+
* @returns {@link ListSubscribersCommandOutput}
|
|
29
36
|
* @see {@link ListSubscribersCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListSubscribersCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
|
|
|
60
67
|
export declare class ListSubscribersCommand extends $Command<ListSubscribersCommandInput, ListSubscribersCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
61
68
|
readonly input: ListSubscribersCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: ListSubscribersCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSubscribersCommandInput, ListSubscribersCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateDatalakeRequest, UpdateDatalakeResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDatalakeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDatalakeCommandInput extends UpdateDatalakeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDatalakeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Specifies where to store your security data and for how long. You can add a rollup
|
|
18
23
|
* Region to consolidate data from multiple Amazon Web Services Regions. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateDatalakeCommandInput - {@link UpdateDatalakeCommandInput}
|
|
35
|
+
* @returns {@link UpdateDatalakeCommandOutput}
|
|
29
36
|
* @see {@link UpdateDatalakeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateDatalakeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
|
|
|
54
61
|
export declare class UpdateDatalakeCommand extends $Command<UpdateDatalakeCommandInput, UpdateDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
55
62
|
readonly input: UpdateDatalakeCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: UpdateDatalakeCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatalakeCommandInput, UpdateDatalakeCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateDatalakeExceptionsExpiryRequest, UpdateDatalakeExceptionsExpiryResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDatalakeExceptionsExpiryCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDatalakeExceptionsExpiryCommandInput extends UpdateDatalakeExceptionsExpiryRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDatalakeExceptionsExpiryCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatalakeExceptionsExpiryResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update the expiration period for the exception message to your preferred time, and
|
|
18
23
|
* control the time-to-live (TTL) for the exception message to remain. Exceptions are stored
|
|
19
24
|
* by default for 2 weeks from when a record was created in Amazon Security Lake. </p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateDatalakeExceptionsExpiryCommandInput - {@link UpdateDatalakeExceptionsExpiryCommandInput}
|
|
36
|
+
* @returns {@link UpdateDatalakeExceptionsExpiryCommandOutput}
|
|
30
37
|
* @see {@link UpdateDatalakeExceptionsExpiryCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateDatalakeExceptionsExpiryCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
|
|
|
54
61
|
export declare class UpdateDatalakeExceptionsExpiryCommand extends $Command<UpdateDatalakeExceptionsExpiryCommandInput, UpdateDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
55
62
|
readonly input: UpdateDatalakeExceptionsExpiryCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: UpdateDatalakeExceptionsExpiryCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatalakeExceptionsExpiryCommandInput, UpdateDatalakeExceptionsExpiryCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateDatalakeExceptionsSubscriptionRequest, UpdateDatalakeExceptionsSubscriptionResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDatalakeExceptionsSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDatalakeExceptionsSubscriptionCommandInput extends UpdateDatalakeExceptionsSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDatalakeExceptionsSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends UpdateDatalakeExceptionsSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates the specified notification subscription in Amazon Security Lake for the organization
|
|
18
23
|
* you specify.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateDatalakeExceptionsSubscriptionCommandInput - {@link UpdateDatalakeExceptionsSubscriptionCommandInput}
|
|
35
|
+
* @returns {@link UpdateDatalakeExceptionsSubscriptionCommandOutput}
|
|
29
36
|
* @see {@link UpdateDatalakeExceptionsSubscriptionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
|
|
|
53
60
|
export declare class UpdateDatalakeExceptionsSubscriptionCommand extends $Command<UpdateDatalakeExceptionsSubscriptionCommandInput, UpdateDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateDatalakeExceptionsSubscriptionCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateDatalakeExceptionsSubscriptionCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDatalakeExceptionsSubscriptionCommandInput, UpdateDatalakeExceptionsSubscriptionCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateSubscriberRequest, UpdateSubscriberResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSubscriberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSubscriberCommandInput extends UpdateSubscriberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSubscriberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing subscription for the given Amazon Security Lake account ID. You can update
|
|
18
23
|
* a subscriber by changing the sources that the subscriber consumes data from. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateSubscriberCommandInput - {@link UpdateSubscriberCommandInput}
|
|
35
|
+
* @returns {@link UpdateSubscriberCommandOutput}
|
|
29
36
|
* @see {@link UpdateSubscriberCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateSubscriberCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
63
70
|
export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
64
71
|
readonly input: UpdateSubscriberCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: UpdateSubscriberCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateSubscriptionNotificationConfigurationRequest, UpdateSubscriptionNotificationConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSubscriptionNotificationConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSubscriptionNotificationConfigurationCommandInput extends UpdateSubscriptionNotificationConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSubscriptionNotificationConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSubscriptionNotificationConfigurationCommandOutput extends UpdateSubscriptionNotificationConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an existing notification method for the subscription (SQS or HTTPs endpoint) or
|
|
18
23
|
* switches the notification subscription endpoint for a subscriber.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateSubscriptionNotificationConfigurationCommandInput - {@link UpdateSubscriptionNotificationConfigurationCommandInput}
|
|
35
|
+
* @returns {@link UpdateSubscriptionNotificationConfigurationCommandOutput}
|
|
29
36
|
* @see {@link UpdateSubscriptionNotificationConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
63
70
|
export declare class UpdateSubscriptionNotificationConfigurationCommand extends $Command<UpdateSubscriptionNotificationConfigurationCommandInput, UpdateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
64
71
|
readonly input: UpdateSubscriptionNotificationConfigurationCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: UpdateSubscriptionNotificationConfigurationCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSubscriptionNotificationConfigurationCommandInput, UpdateSubscriptionNotificationConfigurationCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from SecurityLake service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class SecurityLakeServiceException extends __ServiceException {
|