@aws-sdk/client-securitylake 3.321.1 → 3.326.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/commands/CreateAwsLogSourceCommand.d.ts +11 -0
- package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +10 -0
- package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +4 -0
- package/dist-types/commands/CreateDatalakeCommand.d.ts +4 -0
- package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +4 -0
- package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/CreateSubscriberCommand.d.ts +11 -0
- package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +6 -0
- package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +11 -0
- package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDatalakeCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +4 -0
- package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +13 -0
- package/dist-types/commands/GetDatalakeCommand.d.ts +33 -0
- package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +6 -0
- package/dist-types/commands/GetDatalakeExceptionsSubscriptionCommand.d.ts +9 -0
- package/dist-types/commands/GetDatalakeStatusCommand.d.ts +19 -0
- package/dist-types/commands/GetSubscriberCommand.d.ts +31 -0
- package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +18 -0
- package/dist-types/commands/ListLogSourcesCommand.d.ts +15 -0
- package/dist-types/commands/ListSubscribersCommand.d.ts +34 -0
- package/dist-types/commands/UpdateDatalakeCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +31 -0
- package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +6 -0
- package/package.json +16 -16
|
@@ -62,6 +62,15 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new CreateAwsLogSourceCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // { // CreateAwsLogSourceResponse
|
|
66
|
+
* // processing: [ // AccountList
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // failed: [
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
65
74
|
* ```
|
|
66
75
|
*
|
|
67
76
|
* @param CreateAwsLogSourceCommandInput - {@link CreateAwsLogSourceCommandInput}
|
|
@@ -97,6 +106,8 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo
|
|
|
97
106
|
* @throws {@link ValidationException} (client fault)
|
|
98
107
|
* <p>Your signing certificate could not be validated. </p>
|
|
99
108
|
*
|
|
109
|
+
* @throws {@link SecurityLakeServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
100
111
|
*
|
|
101
112
|
*/
|
|
102
113
|
export declare class CreateAwsLogSourceCommand extends $Command<CreateAwsLogSourceCommandInput, CreateAwsLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -39,6 +39,14 @@ export interface CreateCustomLogSourceCommandOutput extends CreateCustomLogSourc
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateCustomLogSourceCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateCustomLogSourceResponse
|
|
43
|
+
* // customDataLocation: "STRING_VALUE", // required
|
|
44
|
+
* // glueCrawlerName: "STRING_VALUE", // required
|
|
45
|
+
* // glueTableName: "STRING_VALUE", // required
|
|
46
|
+
* // glueDatabaseName: "STRING_VALUE", // required
|
|
47
|
+
* // logProviderAccessRoleArn: "STRING_VALUE", // required
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
42
50
|
* ```
|
|
43
51
|
*
|
|
44
52
|
* @param CreateCustomLogSourceCommandInput - {@link CreateCustomLogSourceCommandInput}
|
|
@@ -75,6 +83,8 @@ export interface CreateCustomLogSourceCommandOutput extends CreateCustomLogSourc
|
|
|
75
83
|
* @throws {@link ValidationException} (client fault)
|
|
76
84
|
* <p>Your signing certificate could not be validated. </p>
|
|
77
85
|
*
|
|
86
|
+
* @throws {@link SecurityLakeServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
78
88
|
*
|
|
79
89
|
*/
|
|
80
90
|
export declare class CreateCustomLogSourceCommand extends $Command<CreateCustomLogSourceCommandInput, CreateCustomLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -40,6 +40,8 @@ export interface CreateDatalakeAutoEnableCommandOutput extends CreateDatalakeAut
|
|
|
40
40
|
* };
|
|
41
41
|
* const command = new CreateDatalakeAutoEnableCommand(input);
|
|
42
42
|
* const response = await client.send(command);
|
|
43
|
+
* // {};
|
|
44
|
+
*
|
|
43
45
|
* ```
|
|
44
46
|
*
|
|
45
47
|
* @param CreateDatalakeAutoEnableCommandInput - {@link CreateDatalakeAutoEnableCommandInput}
|
|
@@ -66,6 +68,8 @@ export interface CreateDatalakeAutoEnableCommandOutput extends CreateDatalakeAut
|
|
|
66
68
|
* @throws {@link ValidationException} (client fault)
|
|
67
69
|
* <p>Your signing certificate could not be validated. </p>
|
|
68
70
|
*
|
|
71
|
+
* @throws {@link SecurityLakeServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
69
73
|
*
|
|
70
74
|
*/
|
|
71
75
|
export declare class CreateDatalakeAutoEnableCommand extends $Command<CreateDatalakeAutoEnableCommandInput, CreateDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -68,6 +68,8 @@ export interface CreateDatalakeCommandOutput extends CreateDatalakeResponse, __M
|
|
|
68
68
|
* };
|
|
69
69
|
* const command = new CreateDatalakeCommand(input);
|
|
70
70
|
* const response = await client.send(command);
|
|
71
|
+
* // {};
|
|
72
|
+
*
|
|
71
73
|
* ```
|
|
72
74
|
*
|
|
73
75
|
* @param CreateDatalakeCommandInput - {@link CreateDatalakeCommandInput}
|
|
@@ -105,6 +107,8 @@ export interface CreateDatalakeCommandOutput extends CreateDatalakeResponse, __M
|
|
|
105
107
|
* @throws {@link ValidationException} (client fault)
|
|
106
108
|
* <p>Your signing certificate could not be validated. </p>
|
|
107
109
|
*
|
|
110
|
+
* @throws {@link SecurityLakeServiceException}
|
|
111
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
108
112
|
*
|
|
109
113
|
*/
|
|
110
114
|
export declare class CreateDatalakeCommand extends $Command<CreateDatalakeCommandInput, CreateDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface CreateDatalakeDelegatedAdminCommandOutput extends CreateDatalak
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateDatalakeDelegatedAdminCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param CreateDatalakeDelegatedAdminCommandInput - {@link CreateDatalakeDelegatedAdminCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface CreateDatalakeDelegatedAdminCommandOutput extends CreateDatalak
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>Your signing certificate could not be validated. </p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link SecurityLakeServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class CreateDatalakeDelegatedAdminCommand extends $Command<CreateDatalakeDelegatedAdminCommandInput, CreateDatalakeDelegatedAdminCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface CreateDatalakeExceptionsSubscriptionCommandOutput extends Creat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateDatalakeExceptionsSubscriptionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param CreateDatalakeExceptionsSubscriptionCommandInput - {@link CreateDatalakeExceptionsSubscriptionCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface CreateDatalakeExceptionsSubscriptionCommandOutput extends Creat
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>Your signing certificate could not be validated. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link SecurityLakeServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class CreateDatalakeExceptionsSubscriptionCommand extends $Command<CreateDatalakeExceptionsSubscriptionCommandInput, CreateDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -44,6 +44,15 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateSubscriberCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateSubscriberResponse
|
|
48
|
+
* // subscriptionId: "STRING_VALUE", // required
|
|
49
|
+
* // roleArn: "STRING_VALUE",
|
|
50
|
+
* // snsArn: "STRING_VALUE",
|
|
51
|
+
* // s3BucketArn: "STRING_VALUE",
|
|
52
|
+
* // resourceShareArn: "STRING_VALUE",
|
|
53
|
+
* // resourceShareName: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
47
56
|
* ```
|
|
48
57
|
*
|
|
49
58
|
* @param CreateSubscriberCommandInput - {@link CreateSubscriberCommandInput}
|
|
@@ -84,6 +93,8 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
84
93
|
* @throws {@link ValidationException} (client fault)
|
|
85
94
|
* <p>Your signing certificate could not be validated. </p>
|
|
86
95
|
*
|
|
96
|
+
* @throws {@link SecurityLakeServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
87
98
|
*
|
|
88
99
|
*/
|
|
89
100
|
export declare class CreateSubscriberCommand extends $Command<CreateSubscriberCommandInput, CreateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -39,6 +39,10 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateSubscriptionNotificationConfigurationCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateSubscriptionNotificationConfigurationResponse
|
|
43
|
+
* // queueArn: "STRING_VALUE",
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
42
46
|
* ```
|
|
43
47
|
*
|
|
44
48
|
* @param CreateSubscriptionNotificationConfigurationCommandInput - {@link CreateSubscriptionNotificationConfigurationCommandInput}
|
|
@@ -75,6 +79,8 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
75
79
|
* @throws {@link ValidationException} (client fault)
|
|
76
80
|
* <p>Your signing certificate could not be validated. </p>
|
|
77
81
|
*
|
|
82
|
+
* @throws {@link SecurityLakeServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
78
84
|
*
|
|
79
85
|
*/
|
|
80
86
|
export declare class CreateSubscriptionNotificationConfigurationCommand extends $Command<CreateSubscriptionNotificationConfigurationCommandInput, CreateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -62,6 +62,15 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
62
62
|
* };
|
|
63
63
|
* const command = new DeleteAwsLogSourceCommand(input);
|
|
64
64
|
* const response = await client.send(command);
|
|
65
|
+
* // { // DeleteAwsLogSourceResponse
|
|
66
|
+
* // processing: [ // AccountList
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // failed: [
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // };
|
|
73
|
+
*
|
|
65
74
|
* ```
|
|
66
75
|
*
|
|
67
76
|
* @param DeleteAwsLogSourceCommandInput - {@link DeleteAwsLogSourceCommandInput}
|
|
@@ -88,6 +97,8 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
88
97
|
* @throws {@link ValidationException} (client fault)
|
|
89
98
|
* <p>Your signing certificate could not be validated. </p>
|
|
90
99
|
*
|
|
100
|
+
* @throws {@link SecurityLakeServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
91
102
|
*
|
|
92
103
|
*/
|
|
93
104
|
export declare class DeleteAwsLogSourceCommand extends $Command<DeleteAwsLogSourceCommandInput, DeleteAwsLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCustomLogSourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DeleteCustomLogSourceResponse
|
|
35
|
+
* // customDataLocation: "STRING_VALUE", // required
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param DeleteCustomLogSourceCommandInput - {@link DeleteCustomLogSourceCommandInput}
|
|
@@ -67,6 +71,8 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
|
|
|
67
71
|
* @throws {@link ValidationException} (client fault)
|
|
68
72
|
* <p>Your signing certificate could not be validated. </p>
|
|
69
73
|
*
|
|
74
|
+
* @throws {@link SecurityLakeServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
70
76
|
*
|
|
71
77
|
*/
|
|
72
78
|
export declare class DeleteCustomLogSourceCommand extends $Command<DeleteCustomLogSourceCommandInput, DeleteCustomLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -43,6 +43,8 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new DeleteDatalakeAutoEnableCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
46
48
|
* ```
|
|
47
49
|
*
|
|
48
50
|
* @param DeleteDatalakeAutoEnableCommandInput - {@link DeleteDatalakeAutoEnableCommandInput}
|
|
@@ -69,6 +71,8 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
|
|
|
69
71
|
* @throws {@link ValidationException} (client fault)
|
|
70
72
|
* <p>Your signing certificate could not be validated. </p>
|
|
71
73
|
*
|
|
74
|
+
* @throws {@link SecurityLakeServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
72
76
|
*
|
|
73
77
|
*/
|
|
74
78
|
export declare class DeleteDatalakeAutoEnableCommand extends $Command<DeleteDatalakeAutoEnableCommandInput, DeleteDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -36,6 +36,8 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
|
|
|
36
36
|
* const input = {};
|
|
37
37
|
* const command = new DeleteDatalakeCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // {};
|
|
40
|
+
*
|
|
39
41
|
* ```
|
|
40
42
|
*
|
|
41
43
|
* @param DeleteDatalakeCommandInput - {@link DeleteDatalakeCommandInput}
|
|
@@ -73,6 +75,8 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
|
|
|
73
75
|
* @throws {@link ValidationException} (client fault)
|
|
74
76
|
* <p>Your signing certificate could not be validated. </p>
|
|
75
77
|
*
|
|
78
|
+
* @throws {@link SecurityLakeServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
76
80
|
*
|
|
77
81
|
*/
|
|
78
82
|
export declare class DeleteDatalakeCommand extends $Command<DeleteDatalakeCommandInput, DeleteDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteDatalakeDelegatedAdminCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteDatalakeDelegatedAdminCommandInput - {@link DeleteDatalakeDelegatedAdminCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* <p>Your signing certificate could not be validated. </p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link SecurityLakeServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class DeleteDatalakeDelegatedAdminCommand extends $Command<DeleteDatalakeDelegatedAdminCommandInput, DeleteDatalakeDelegatedAdminCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -30,6 +30,10 @@ export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new DeleteDatalakeExceptionsSubscriptionCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // DeleteDatalakeExceptionsSubscriptionResponse
|
|
34
|
+
* // status: "STRING_VALUE", // required
|
|
35
|
+
* // };
|
|
36
|
+
*
|
|
33
37
|
* ```
|
|
34
38
|
*
|
|
35
39
|
* @param DeleteDatalakeExceptionsSubscriptionCommandInput - {@link DeleteDatalakeExceptionsSubscriptionCommandInput}
|
|
@@ -56,6 +60,8 @@ export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
|
|
|
56
60
|
* @throws {@link ValidationException} (client fault)
|
|
57
61
|
* <p>Your signing certificate could not be validated. </p>
|
|
58
62
|
*
|
|
63
|
+
* @throws {@link SecurityLakeServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
59
65
|
*
|
|
60
66
|
*/
|
|
61
67
|
export declare class DeleteDatalakeExceptionsSubscriptionCommand extends $Command<DeleteDatalakeExceptionsSubscriptionCommandInput, DeleteDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteSubscriberCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteSubscriberCommandInput - {@link DeleteSubscriberCommandInput}
|
|
@@ -73,6 +75,8 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
73
75
|
* @throws {@link ValidationException} (client fault)
|
|
74
76
|
* <p>Your signing certificate could not be validated. </p>
|
|
75
77
|
*
|
|
78
|
+
* @throws {@link SecurityLakeServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
76
80
|
*
|
|
77
81
|
*/
|
|
78
82
|
export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteSubscriptionNotificationConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteSubscriptionNotificationConfigurationCommandInput - {@link DeleteSubscriptionNotificationConfigurationCommandInput}
|
|
@@ -68,6 +70,8 @@ export interface DeleteSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
68
70
|
* @throws {@link ValidationException} (client fault)
|
|
69
71
|
* <p>Your signing certificate could not be validated. </p>
|
|
70
72
|
*
|
|
73
|
+
* @throws {@link SecurityLakeServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
71
75
|
*
|
|
72
76
|
*/
|
|
73
77
|
export declare class DeleteSubscriptionNotificationConfigurationCommand extends $Command<DeleteSubscriptionNotificationConfigurationCommandInput, DeleteSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -31,6 +31,17 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
|
|
|
31
31
|
* const input = {};
|
|
32
32
|
* const command = new GetDatalakeAutoEnableCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDatalakeAutoEnableResponse
|
|
35
|
+
* // autoEnableNewAccounts: [ // AutoEnableNewRegionConfigurationList // required
|
|
36
|
+
* // { // AutoEnableNewRegionConfiguration
|
|
37
|
+
* // region: "STRING_VALUE", // required
|
|
38
|
+
* // sources: [ // AwsSourceTypeList // required
|
|
39
|
+
* // "STRING_VALUE",
|
|
40
|
+
* // ],
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
34
45
|
* ```
|
|
35
46
|
*
|
|
36
47
|
* @param GetDatalakeAutoEnableCommandInput - {@link GetDatalakeAutoEnableCommandInput}
|
|
@@ -57,6 +68,8 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
|
|
|
57
68
|
* @throws {@link ValidationException} (client fault)
|
|
58
69
|
* <p>Your signing certificate could not be validated. </p>
|
|
59
70
|
*
|
|
71
|
+
* @throws {@link SecurityLakeServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
60
73
|
*
|
|
61
74
|
*/
|
|
62
75
|
export declare class GetDatalakeAutoEnableCommand extends $Command<GetDatalakeAutoEnableCommandInput, GetDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -30,6 +30,37 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
|
|
|
30
30
|
* const input = {};
|
|
31
31
|
* const command = new GetDatalakeCommand(input);
|
|
32
32
|
* const response = await client.send(command);
|
|
33
|
+
* // { // GetDatalakeResponse
|
|
34
|
+
* // configurations: { // LakeConfigurationResponseMap // required
|
|
35
|
+
* // "<keys>": { // LakeConfigurationResponse
|
|
36
|
+
* // encryptionKey: "STRING_VALUE",
|
|
37
|
+
* // retentionSettings: [ // RetentionSettingList
|
|
38
|
+
* // { // RetentionSetting
|
|
39
|
+
* // storageClass: "STRING_VALUE",
|
|
40
|
+
* // retentionPeriod: Number("int"),
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // tagsMap: { // TagsMap
|
|
44
|
+
* // "<keys>": "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // replicationDestinationRegions: [ // RegionSet
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // replicationRoleArn: "STRING_VALUE",
|
|
50
|
+
* // s3BucketArn: "STRING_VALUE",
|
|
51
|
+
* // status: "STRING_VALUE",
|
|
52
|
+
* // updateStatus: { // UpdateStatus
|
|
53
|
+
* // lastUpdateRequestId: "STRING_VALUE",
|
|
54
|
+
* // lastUpdateStatus: "STRING_VALUE",
|
|
55
|
+
* // lastUpdateFailure: { // LastUpdateFailure
|
|
56
|
+
* // reason: "STRING_VALUE",
|
|
57
|
+
* // code: "STRING_VALUE",
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
33
64
|
* ```
|
|
34
65
|
*
|
|
35
66
|
* @param GetDatalakeCommandInput - {@link GetDatalakeCommandInput}
|
|
@@ -59,6 +90,8 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
|
|
|
59
90
|
* @throws {@link ValidationException} (client fault)
|
|
60
91
|
* <p>Your signing certificate could not be validated. </p>
|
|
61
92
|
*
|
|
93
|
+
* @throws {@link SecurityLakeServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
62
95
|
*
|
|
63
96
|
*/
|
|
64
97
|
export declare class GetDatalakeCommand extends $Command<GetDatalakeCommandInput, GetDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -31,6 +31,10 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
|
|
|
31
31
|
* const input = {};
|
|
32
32
|
* const command = new GetDatalakeExceptionsExpiryCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // GetDatalakeExceptionsExpiryResponse
|
|
35
|
+
* // exceptionMessageExpiry: Number("long"), // required
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
34
38
|
* ```
|
|
35
39
|
*
|
|
36
40
|
* @param GetDatalakeExceptionsExpiryCommandInput - {@link GetDatalakeExceptionsExpiryCommandInput}
|
|
@@ -57,6 +61,8 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
|
|
|
57
61
|
* @throws {@link ValidationException} (client fault)
|
|
58
62
|
* <p>Your signing certificate could not be validated. </p>
|
|
59
63
|
*
|
|
64
|
+
* @throws {@link SecurityLakeServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
60
66
|
*
|
|
61
67
|
*/
|
|
62
68
|
export declare class GetDatalakeExceptionsExpiryCommand extends $Command<GetDatalakeExceptionsExpiryCommandInput, GetDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -29,6 +29,13 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new GetDatalakeExceptionsSubscriptionCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // GetDatalakeExceptionsSubscriptionResponse
|
|
33
|
+
* // protocolAndNotificationEndpoint: { // ProtocolAndNotificationEndpoint
|
|
34
|
+
* // protocol: "STRING_VALUE",
|
|
35
|
+
* // endpoint: "STRING_VALUE",
|
|
36
|
+
* // },
|
|
37
|
+
* // };
|
|
38
|
+
*
|
|
32
39
|
* ```
|
|
33
40
|
*
|
|
34
41
|
* @param GetDatalakeExceptionsSubscriptionCommandInput - {@link GetDatalakeExceptionsSubscriptionCommandInput}
|
|
@@ -55,6 +62,8 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
|
|
|
55
62
|
* @throws {@link ValidationException} (client fault)
|
|
56
63
|
* <p>Your signing certificate could not be validated. </p>
|
|
57
64
|
*
|
|
65
|
+
* @throws {@link SecurityLakeServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
58
67
|
*
|
|
59
68
|
*/
|
|
60
69
|
export declare class GetDatalakeExceptionsSubscriptionCommand extends $Command<GetDatalakeExceptionsSubscriptionCommandInput, GetDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -36,6 +36,23 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new GetDatalakeStatusCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // GetDatalakeStatusResponse
|
|
40
|
+
* // accountSourcesList: [ // AccountSourcesList // required
|
|
41
|
+
* // { // AccountSources
|
|
42
|
+
* // account: "STRING_VALUE", // required
|
|
43
|
+
* // sourceType: "STRING_VALUE", // required
|
|
44
|
+
* // logsStatus: [ // LogsStatusList
|
|
45
|
+
* // { // LogsStatus
|
|
46
|
+
* // pathToLogs: "STRING_VALUE", // required
|
|
47
|
+
* // healthStatus: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // eventClass: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
39
56
|
* ```
|
|
40
57
|
*
|
|
41
58
|
* @param GetDatalakeStatusCommandInput - {@link GetDatalakeStatusCommandInput}
|
|
@@ -62,6 +79,8 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
|
|
|
62
79
|
* @throws {@link ValidationException} (client fault)
|
|
63
80
|
* <p>Your signing certificate could not be validated. </p>
|
|
64
81
|
*
|
|
82
|
+
* @throws {@link SecurityLakeServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
65
84
|
*
|
|
66
85
|
*/
|
|
67
86
|
export declare class GetDatalakeStatusCommand extends $Command<GetDatalakeStatusCommandInput, GetDatalakeStatusCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -32,6 +32,35 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSubscriberCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // GetSubscriberResponse
|
|
36
|
+
* // subscriber: { // SubscriberResource
|
|
37
|
+
* // subscriptionId: "STRING_VALUE", // required
|
|
38
|
+
* // sourceTypes: [ // SourceTypeList // required
|
|
39
|
+
* // { // SourceType Union: only one key present
|
|
40
|
+
* // awsSourceType: "STRING_VALUE",
|
|
41
|
+
* // customSourceType: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // ],
|
|
44
|
+
* // accountId: "STRING_VALUE", // required
|
|
45
|
+
* // subscriberName: "STRING_VALUE",
|
|
46
|
+
* // subscriberDescription: "STRING_VALUE",
|
|
47
|
+
* // subscriptionStatus: "STRING_VALUE",
|
|
48
|
+
* // roleArn: "STRING_VALUE",
|
|
49
|
+
* // snsArn: "STRING_VALUE",
|
|
50
|
+
* // s3BucketArn: "STRING_VALUE",
|
|
51
|
+
* // accessTypes: [ // AccessTypeList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // subscriptionEndpoint: "STRING_VALUE",
|
|
55
|
+
* // subscriptionProtocol: "STRING_VALUE",
|
|
56
|
+
* // externalId: "STRING_VALUE",
|
|
57
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
59
|
+
* // resourceShareArn: "STRING_VALUE",
|
|
60
|
+
* // resourceShareName: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
35
64
|
* ```
|
|
36
65
|
*
|
|
37
66
|
* @param GetSubscriberCommandInput - {@link GetSubscriberCommandInput}
|
|
@@ -62,6 +91,8 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
|
|
|
62
91
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
92
|
* <p>The resource could not be found.</p>
|
|
64
93
|
*
|
|
94
|
+
* @throws {@link SecurityLakeServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
65
96
|
*
|
|
66
97
|
*/
|
|
67
98
|
export declare class GetSubscriberCommand extends $Command<GetSubscriberCommandInput, GetSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -36,6 +36,22 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new ListDatalakeExceptionsCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // ListDatalakeExceptionsResponse
|
|
40
|
+
* // nonRetryableFailures: [ // FailuresResponseList // required
|
|
41
|
+
* // { // FailuresResponse
|
|
42
|
+
* // region: "STRING_VALUE",
|
|
43
|
+
* // failures: [ // Failureslist
|
|
44
|
+
* // { // Failures
|
|
45
|
+
* // exceptionMessage: "STRING_VALUE", // required
|
|
46
|
+
* // remediation: "STRING_VALUE", // required
|
|
47
|
+
* // timestamp: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // nextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
39
55
|
* ```
|
|
40
56
|
*
|
|
41
57
|
* @param ListDatalakeExceptionsCommandInput - {@link ListDatalakeExceptionsCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p>Your signing certificate could not be validated. </p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link SecurityLakeServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class ListDatalakeExceptionsCommand extends $Command<ListDatalakeExceptionsCommandInput, ListDatalakeExceptionsCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -50,6 +50,19 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new ListLogSourcesCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // { // ListLogSourcesResponse
|
|
54
|
+
* // regionSourceTypesAccountsList: [ // RegionSourceTypesAccountsList // required
|
|
55
|
+
* // { // AllDimensionsMap
|
|
56
|
+
* // "<keys>": { // TwoDimensionsMap
|
|
57
|
+
* // "<keys>": [ // ValueSet
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // nextToken: "STRING_VALUE",
|
|
64
|
+
* // };
|
|
65
|
+
*
|
|
53
66
|
* ```
|
|
54
67
|
*
|
|
55
68
|
* @param ListLogSourcesCommandInput - {@link ListLogSourcesCommandInput}
|
|
@@ -79,6 +92,8 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
79
92
|
* @throws {@link ValidationException} (client fault)
|
|
80
93
|
* <p>Your signing certificate could not be validated. </p>
|
|
81
94
|
*
|
|
95
|
+
* @throws {@link SecurityLakeServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
82
97
|
*
|
|
83
98
|
*/
|
|
84
99
|
export declare class ListLogSourcesCommand extends $Command<ListLogSourcesCommandInput, ListLogSourcesCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,38 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListSubscribersCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListSubscribersResponse
|
|
37
|
+
* // subscribers: [ // SubscriberList // required
|
|
38
|
+
* // { // SubscriberResource
|
|
39
|
+
* // subscriptionId: "STRING_VALUE", // required
|
|
40
|
+
* // sourceTypes: [ // SourceTypeList // required
|
|
41
|
+
* // { // SourceType Union: only one key present
|
|
42
|
+
* // awsSourceType: "STRING_VALUE",
|
|
43
|
+
* // customSourceType: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // ],
|
|
46
|
+
* // accountId: "STRING_VALUE", // required
|
|
47
|
+
* // subscriberName: "STRING_VALUE",
|
|
48
|
+
* // subscriberDescription: "STRING_VALUE",
|
|
49
|
+
* // subscriptionStatus: "STRING_VALUE",
|
|
50
|
+
* // roleArn: "STRING_VALUE",
|
|
51
|
+
* // snsArn: "STRING_VALUE",
|
|
52
|
+
* // s3BucketArn: "STRING_VALUE",
|
|
53
|
+
* // accessTypes: [ // AccessTypeList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // subscriptionEndpoint: "STRING_VALUE",
|
|
57
|
+
* // subscriptionProtocol: "STRING_VALUE",
|
|
58
|
+
* // externalId: "STRING_VALUE",
|
|
59
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
60
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
61
|
+
* // resourceShareArn: "STRING_VALUE",
|
|
62
|
+
* // resourceShareName: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // nextToken: "STRING_VALUE",
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
36
68
|
* ```
|
|
37
69
|
*
|
|
38
70
|
* @param ListSubscribersCommandInput - {@link ListSubscribersCommandInput}
|
|
@@ -66,6 +98,8 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
|
|
|
66
98
|
* @throws {@link ValidationException} (client fault)
|
|
67
99
|
* <p>Your signing certificate could not be validated. </p>
|
|
68
100
|
*
|
|
101
|
+
* @throws {@link SecurityLakeServiceException}
|
|
102
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
69
103
|
*
|
|
70
104
|
*/
|
|
71
105
|
export declare class ListSubscribersCommand extends $Command<ListSubscribersCommandInput, ListSubscribersCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -49,6 +49,8 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateDatalakeCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // {};
|
|
53
|
+
*
|
|
52
54
|
* ```
|
|
53
55
|
*
|
|
54
56
|
* @param UpdateDatalakeCommandInput - {@link UpdateDatalakeCommandInput}
|
|
@@ -76,6 +78,8 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
|
|
|
76
78
|
* @throws {@link ValidationException} (client fault)
|
|
77
79
|
* <p>Your signing certificate could not be validated. </p>
|
|
78
80
|
*
|
|
81
|
+
* @throws {@link SecurityLakeServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
79
83
|
*
|
|
80
84
|
*/
|
|
81
85
|
export declare class UpdateDatalakeCommand extends $Command<UpdateDatalakeCommandInput, UpdateDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateDatalakeExceptionsExpiryCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param UpdateDatalakeExceptionsExpiryCommandInput - {@link UpdateDatalakeExceptionsExpiryCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>Your signing certificate could not be validated. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link SecurityLakeServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class UpdateDatalakeExceptionsExpiryCommand extends $Command<UpdateDatalakeExceptionsExpiryCommandInput, UpdateDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateDatalakeExceptionsSubscriptionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param UpdateDatalakeExceptionsSubscriptionCommandInput - {@link UpdateDatalakeExceptionsSubscriptionCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* <p>Your signing certificate could not be validated. </p>
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link SecurityLakeServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class UpdateDatalakeExceptionsSubscriptionCommand extends $Command<UpdateDatalakeExceptionsSubscriptionCommandInput, UpdateDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -41,6 +41,35 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new UpdateSubscriberCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // UpdateSubscriberResponse
|
|
45
|
+
* // subscriber: { // SubscriberResource
|
|
46
|
+
* // subscriptionId: "STRING_VALUE", // required
|
|
47
|
+
* // sourceTypes: [ // SourceTypeList // required
|
|
48
|
+
* // { // SourceType Union: only one key present
|
|
49
|
+
* // awsSourceType: "STRING_VALUE",
|
|
50
|
+
* // customSourceType: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // accountId: "STRING_VALUE", // required
|
|
54
|
+
* // subscriberName: "STRING_VALUE",
|
|
55
|
+
* // subscriberDescription: "STRING_VALUE",
|
|
56
|
+
* // subscriptionStatus: "STRING_VALUE",
|
|
57
|
+
* // roleArn: "STRING_VALUE",
|
|
58
|
+
* // snsArn: "STRING_VALUE",
|
|
59
|
+
* // s3BucketArn: "STRING_VALUE",
|
|
60
|
+
* // accessTypes: [ // AccessTypeList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // subscriptionEndpoint: "STRING_VALUE",
|
|
64
|
+
* // subscriptionProtocol: "STRING_VALUE",
|
|
65
|
+
* // externalId: "STRING_VALUE",
|
|
66
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
67
|
+
* // updatedAt: new Date("TIMESTAMP"),
|
|
68
|
+
* // resourceShareArn: "STRING_VALUE",
|
|
69
|
+
* // resourceShareName: "STRING_VALUE",
|
|
70
|
+
* // },
|
|
71
|
+
* // };
|
|
72
|
+
*
|
|
44
73
|
* ```
|
|
45
74
|
*
|
|
46
75
|
* @param UpdateSubscriberCommandInput - {@link UpdateSubscriberCommandInput}
|
|
@@ -77,6 +106,8 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
77
106
|
* @throws {@link ValidationException} (client fault)
|
|
78
107
|
* <p>Your signing certificate could not be validated. </p>
|
|
79
108
|
*
|
|
109
|
+
* @throws {@link SecurityLakeServiceException}
|
|
110
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
80
111
|
*
|
|
81
112
|
*/
|
|
82
113
|
export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
|
|
@@ -38,6 +38,10 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new UpdateSubscriptionNotificationConfigurationCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // UpdateSubscriptionNotificationConfigurationResponse
|
|
42
|
+
* // queueArn: "STRING_VALUE",
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
41
45
|
* ```
|
|
42
46
|
*
|
|
43
47
|
* @param UpdateSubscriptionNotificationConfigurationCommandInput - {@link UpdateSubscriptionNotificationConfigurationCommandInput}
|
|
@@ -74,6 +78,8 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
74
78
|
* @throws {@link ValidationException} (client fault)
|
|
75
79
|
* <p>Your signing certificate could not be validated. </p>
|
|
76
80
|
*
|
|
81
|
+
* @throws {@link SecurityLakeServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from SecurityLake service.</p>
|
|
77
83
|
*
|
|
78
84
|
*/
|
|
79
85
|
export declare class UpdateSubscriptionNotificationConfigurationCommand extends $Command<UpdateSubscriptionNotificationConfigurationCommandInput, UpdateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
|
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.326.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,33 +21,33 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|