@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 { CreateSubscriberRequest, CreateSubscriberResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSubscriberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSubscriberCommandInput extends CreateSubscriberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSubscriberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a subscription permission for accounts that are already enabled in
|
|
18
23
|
* Amazon Security Lake. You can create a subscriber with access to data in the current Amazon Web Services Region.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateSubscriberCommandInput - {@link CreateSubscriberCommandInput}
|
|
35
|
+
* @returns {@link CreateSubscriberCommandOutput}
|
|
29
36
|
* @see {@link CreateSubscriberCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateSubscriberCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
67
74
|
export declare class CreateSubscriberCommand extends $Command<CreateSubscriberCommandInput, CreateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
68
75
|
readonly input: CreateSubscriberCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: CreateSubscriberCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSubscriberCommandInput, CreateSubscriberCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateSubscriptionNotificationConfigurationRequest, CreateSubscriptionNotificationConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSubscriptionNotificationConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSubscriptionNotificationConfigurationCommandInput extends CreateSubscriptionNotificationConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSubscriptionNotificationConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSubscriptionNotificationConfigurationCommandOutput extends CreateSubscriptionNotificationConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Notifies the subscriber when new data is written to the data lake for the sources that
|
|
18
23
|
* the subscriber consumes in Security Lake. You can create only one subscriber notification per
|
|
19
24
|
* subscriber.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateSubscriptionNotificationConfigurationCommandInput - {@link CreateSubscriptionNotificationConfigurationCommandInput}
|
|
36
|
+
* @returns {@link CreateSubscriptionNotificationConfigurationCommandOutput}
|
|
30
37
|
* @see {@link CreateSubscriptionNotificationConfigurationCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -64,11 +71,20 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
64
71
|
export declare class CreateSubscriptionNotificationConfigurationCommand extends $Command<CreateSubscriptionNotificationConfigurationCommandInput, CreateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
65
72
|
readonly input: CreateSubscriptionNotificationConfigurationCommandInput;
|
|
66
73
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
67
77
|
constructor(input: CreateSubscriptionNotificationConfigurationCommandInput);
|
|
68
78
|
/**
|
|
69
79
|
* @internal
|
|
70
80
|
*/
|
|
71
81
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSubscriptionNotificationConfigurationCommandInput, CreateSubscriptionNotificationConfigurationCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
72
85
|
private serialize;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
73
89
|
private deserialize;
|
|
74
90
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteAwsLogSourceRequest, DeleteAwsLogSourceResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteAwsLogSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteAwsLogSourceCommandInput extends DeleteAwsLogSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteAwsLogSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a natively supported Amazon Web Service as an Amazon Security Lake source. When
|
|
18
23
|
* you remove the source, Security Lake stops collecting data from that source, and subscribers
|
|
19
24
|
* can no longer consume new data from the source. Subscribers can still consume data that
|
|
@@ -39,6 +44,8 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param DeleteAwsLogSourceCommandInput - {@link DeleteAwsLogSourceCommandInput}
|
|
48
|
+
* @returns {@link DeleteAwsLogSourceCommandOutput}
|
|
42
49
|
* @see {@link DeleteAwsLogSourceCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link DeleteAwsLogSourceCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
66
73
|
export declare class DeleteAwsLogSourceCommand extends $Command<DeleteAwsLogSourceCommandInput, DeleteAwsLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
67
74
|
readonly input: DeleteAwsLogSourceCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: DeleteAwsLogSourceCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAwsLogSourceCommandInput, DeleteAwsLogSourceCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteCustomLogSourceRequest, DeleteCustomLogSourceResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCustomLogSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCustomLogSourceCommandInput extends DeleteCustomLogSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCustomLogSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a custom log source from 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 DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteCustomLogSourceCommandInput - {@link DeleteCustomLogSourceCommandInput}
|
|
34
|
+
* @returns {@link DeleteCustomLogSourceCommandOutput}
|
|
28
35
|
* @see {@link DeleteCustomLogSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteCustomLogSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
|
|
|
62
69
|
export declare class DeleteCustomLogSourceCommand extends $Command<DeleteCustomLogSourceCommandInput, DeleteCustomLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
63
70
|
readonly input: DeleteCustomLogSourceCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: DeleteCustomLogSourceCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomLogSourceCommandInput, DeleteCustomLogSourceCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteDatalakeAutoEnableRequest, DeleteDatalakeAutoEnableResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDatalakeAutoEnableCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDatalakeAutoEnableCommandInput extends DeleteDatalakeAutoEnableRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDatalakeAutoEnableCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAutoEnableResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>
|
|
18
23
|
* <code>DeleteDatalakeAutoEnable</code> removes automatic enablement of configuration
|
|
19
24
|
* settings for new member accounts (but keeps settings for the delegated administrator) from
|
|
@@ -30,6 +35,8 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteDatalakeAutoEnableCommandInput - {@link DeleteDatalakeAutoEnableCommandInput}
|
|
39
|
+
* @returns {@link DeleteDatalakeAutoEnableCommandOutput}
|
|
33
40
|
* @see {@link DeleteDatalakeAutoEnableCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteDatalakeAutoEnableCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
|
|
|
57
64
|
export declare class DeleteDatalakeAutoEnableCommand extends $Command<DeleteDatalakeAutoEnableCommandInput, DeleteDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
58
65
|
readonly input: DeleteDatalakeAutoEnableCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DeleteDatalakeAutoEnableCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatalakeAutoEnableCommandInput, DeleteDatalakeAutoEnableCommandOutput>;
|
|
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 { DeleteDatalakeRequest, DeleteDatalakeResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDatalakeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDatalakeCommandInput extends DeleteDatalakeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDatalakeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>When you delete Amazon Security Lake from your account, Security Lake is disabled in all Amazon Web Services Regions. Also, this API automatically takes steps to remove the account from
|
|
18
23
|
* Security Lake . </p>
|
|
19
24
|
* <p>This operation disables security data collection from sources, deletes data stored, and
|
|
@@ -32,6 +37,8 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DeleteDatalakeCommandInput - {@link DeleteDatalakeCommandInput}
|
|
41
|
+
* @returns {@link DeleteDatalakeCommandOutput}
|
|
35
42
|
* @see {@link DeleteDatalakeCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DeleteDatalakeCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
|
|
|
70
77
|
export declare class DeleteDatalakeCommand extends $Command<DeleteDatalakeCommandInput, DeleteDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
71
78
|
readonly input: DeleteDatalakeCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: DeleteDatalakeCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatalakeCommandInput, DeleteDatalakeCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteDatalakeDelegatedAdminRequest, DeleteDatalakeDelegatedAdminResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDatalakeDelegatedAdminCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDatalakeDelegatedAdminCommandInput extends DeleteDatalakeDelegatedAdminRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDatalakeDelegatedAdminCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalakeDelegatedAdminResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the Amazon Security Lake delegated administrator account for the organization. This API
|
|
18
23
|
* can only be called by the organization management account. The organization management
|
|
19
24
|
* account cannot be the delegated administrator account.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteDatalakeDelegatedAdminCommandInput - {@link DeleteDatalakeDelegatedAdminCommandInput}
|
|
36
|
+
* @returns {@link DeleteDatalakeDelegatedAdminCommandOutput}
|
|
30
37
|
* @see {@link DeleteDatalakeDelegatedAdminCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteDatalakeDelegatedAdminCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
|
|
|
52
59
|
export declare class DeleteDatalakeDelegatedAdminCommand extends $Command<DeleteDatalakeDelegatedAdminCommandInput, DeleteDatalakeDelegatedAdminCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteDatalakeDelegatedAdminCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteDatalakeDelegatedAdminCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatalakeDelegatedAdminCommandInput, DeleteDatalakeDelegatedAdminCommandOutput>;
|
|
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 { DeleteDatalakeExceptionsSubscriptionRequest, DeleteDatalakeExceptionsSubscriptionResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDatalakeExceptionsSubscriptionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDatalakeExceptionsSubscriptionCommandInput extends DeleteDatalakeExceptionsSubscriptionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDatalakeExceptionsSubscriptionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends DeleteDatalakeExceptionsSubscriptionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteDatalakeExceptionsSubscriptionCommandInput - {@link DeleteDatalakeExceptionsSubscriptionCommandInput}
|
|
35
|
+
* @returns {@link DeleteDatalakeExceptionsSubscriptionCommandOutput}
|
|
29
36
|
* @see {@link DeleteDatalakeExceptionsSubscriptionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
|
|
|
53
60
|
export declare class DeleteDatalakeExceptionsSubscriptionCommand extends $Command<DeleteDatalakeExceptionsSubscriptionCommandInput, DeleteDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
54
61
|
readonly input: DeleteDatalakeExceptionsSubscriptionCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: DeleteDatalakeExceptionsSubscriptionCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDatalakeExceptionsSubscriptionCommandInput, DeleteDatalakeExceptionsSubscriptionCommandOutput>;
|
|
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 { DeleteSubscriberRequest, DeleteSubscriberResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSubscriberCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSubscriberCommandInput extends DeleteSubscriberRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSubscriberCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the subscription permission for accounts that are already enabled in
|
|
18
23
|
* Amazon Security Lake. You can delete a subscriber and remove access to data in the current Amazon Web Services
|
|
19
24
|
* Region.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeleteSubscriberCommandInput - {@link DeleteSubscriberCommandInput}
|
|
36
|
+
* @returns {@link DeleteSubscriberCommandOutput}
|
|
30
37
|
* @see {@link DeleteSubscriberCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeleteSubscriberCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
68
75
|
export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
69
76
|
readonly input: DeleteSubscriberCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: DeleteSubscriberCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteSubscriptionNotificationConfigurationRequest, DeleteSubscriptionNotificationConfigurationResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSubscriptionNotificationConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSubscriptionNotificationConfigurationCommandInput extends DeleteSubscriptionNotificationConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSubscriptionNotificationConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSubscriptionNotificationConfigurationCommandOutput extends DeleteSubscriptionNotificationConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes 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 DeleteSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteSubscriptionNotificationConfigurationCommandInput - {@link DeleteSubscriptionNotificationConfigurationCommandInput}
|
|
35
|
+
* @returns {@link DeleteSubscriptionNotificationConfigurationCommandOutput}
|
|
29
36
|
* @see {@link DeleteSubscriptionNotificationConfigurationCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DeleteSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
63
70
|
export declare class DeleteSubscriptionNotificationConfigurationCommand extends $Command<DeleteSubscriptionNotificationConfigurationCommandInput, DeleteSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
64
71
|
readonly input: DeleteSubscriptionNotificationConfigurationCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DeleteSubscriptionNotificationConfigurationCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSubscriptionNotificationConfigurationCommandInput, DeleteSubscriptionNotificationConfigurationCommandOutput>;
|
|
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 { GetDatalakeAutoEnableRequest, GetDatalakeAutoEnableResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatalakeAutoEnableCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatalakeAutoEnableCommandInput extends GetDatalakeAutoEnableRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatalakeAutoEnableCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnableResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the configuration that will be automatically set up for accounts added to the
|
|
18
23
|
* organization after the organization has onboarded to Amazon Security Lake. This API does not take
|
|
19
24
|
* input parameters.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetDatalakeAutoEnableCommandInput - {@link GetDatalakeAutoEnableCommandInput}
|
|
36
|
+
* @returns {@link GetDatalakeAutoEnableCommandOutput}
|
|
30
37
|
* @see {@link GetDatalakeAutoEnableCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetDatalakeAutoEnableCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
|
|
|
54
61
|
export declare class GetDatalakeAutoEnableCommand extends $Command<GetDatalakeAutoEnableCommandInput, GetDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
55
62
|
readonly input: GetDatalakeAutoEnableCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: GetDatalakeAutoEnableCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatalakeAutoEnableCommandInput, GetDatalakeAutoEnableCommandOutput>;
|
|
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 { GetDatalakeRequest, GetDatalakeResponse } from "../models/models_0";
|
|
5
5
|
import { SecurityLakeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SecurityLakeClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDatalakeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDatalakeCommandInput extends GetDatalakeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDatalakeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves the Amazon Security Lake configuration object for the specified Amazon Web Services account ID. You can use the <code>GetDatalake</code> API to know whether
|
|
18
23
|
* Security Lake is enabled for the current Region. This API does not take input parameters. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param GetDatalakeCommandInput - {@link GetDatalakeCommandInput}
|
|
35
|
+
* @returns {@link GetDatalakeCommandOutput}
|
|
29
36
|
* @see {@link GetDatalakeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link GetDatalakeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
|
|
|
56
63
|
export declare class GetDatalakeCommand extends $Command<GetDatalakeCommandInput, GetDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
57
64
|
readonly input: GetDatalakeCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: GetDatalakeCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SecurityLakeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDatalakeCommandInput, GetDatalakeCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|