@aws-sdk/client-securitylake 3.298.0 → 3.300.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 +20 -0
- package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +10 -0
- package/dist-types/commands/CreateDatalakeCommand.d.ts +25 -0
- package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +3 -0
- package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/CreateSubscriberCommand.d.ts +15 -0
- package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +20 -0
- package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDatalakeCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +3 -0
- package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +1 -0
- package/dist-types/commands/GetDatalakeCommand.d.ts +1 -0
- package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +1 -0
- package/dist-types/commands/GetDatalakeExceptionsSubscriptionCommand.d.ts +1 -0
- package/dist-types/commands/GetDatalakeStatusCommand.d.ts +7 -0
- package/dist-types/commands/GetSubscriberCommand.d.ts +3 -0
- package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +7 -0
- package/dist-types/commands/ListLogSourcesCommand.d.ts +22 -0
- package/dist-types/commands/ListSubscribersCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDatalakeCommand.d.ts +20 -0
- package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +3 -0
- package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +12 -0
- package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +9 -0
- package/package.json +12 -12
|
@@ -40,6 +40,26 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo
|
|
|
40
40
|
* import { SecurityLakeClient, CreateAwsLogSourceCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
41
41
|
* // const { SecurityLakeClient, CreateAwsLogSourceCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
42
42
|
* const client = new SecurityLakeClient(config);
|
|
43
|
+
* const input = {
|
|
44
|
+
* inputOrder: [ // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* enableAllDimensions: {
|
|
48
|
+
* "<keys>": {
|
|
49
|
+
* "<keys>": [
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* enableTwoDimensions: {
|
|
55
|
+
* "<keys>": [
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* enableSingleDimension: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* };
|
|
43
63
|
* const command = new CreateAwsLogSourceCommand(input);
|
|
44
64
|
* const response = await client.send(command);
|
|
45
65
|
* ```
|
|
@@ -31,6 +31,12 @@ export interface CreateCustomLogSourceCommandOutput extends CreateCustomLogSourc
|
|
|
31
31
|
* import { SecurityLakeClient, CreateCustomLogSourceCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
32
32
|
* // const { SecurityLakeClient, CreateCustomLogSourceCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
33
33
|
* const client = new SecurityLakeClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* customSourceName: "STRING_VALUE", // required
|
|
36
|
+
* eventClass: "STRING_VALUE", // required
|
|
37
|
+
* glueInvocationRoleArn: "STRING_VALUE", // required
|
|
38
|
+
* logProviderAccountId: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
34
40
|
* const command = new CreateCustomLogSourceCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
|
@@ -28,6 +28,16 @@ export interface CreateDatalakeAutoEnableCommandOutput extends CreateDatalakeAut
|
|
|
28
28
|
* import { SecurityLakeClient, CreateDatalakeAutoEnableCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, CreateDatalakeAutoEnableCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* configurationForNewAccounts: [ // required
|
|
33
|
+
* {
|
|
34
|
+
* region: "STRING_VALUE", // required
|
|
35
|
+
* sources: [ // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
31
41
|
* const command = new CreateDatalakeAutoEnableCommand(input);
|
|
32
42
|
* const response = await client.send(command);
|
|
33
43
|
* ```
|
|
@@ -41,6 +41,31 @@ export interface CreateDatalakeCommandOutput extends CreateDatalakeResponse, __M
|
|
|
41
41
|
* import { SecurityLakeClient, CreateDatalakeCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
42
42
|
* // const { SecurityLakeClient, CreateDatalakeCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
43
43
|
* const client = new SecurityLakeClient(config);
|
|
44
|
+
* const input = {
|
|
45
|
+
* regions: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* configurations: {
|
|
49
|
+
* "<keys>": {
|
|
50
|
+
* encryptionKey: "STRING_VALUE",
|
|
51
|
+
* retentionSettings: [
|
|
52
|
+
* {
|
|
53
|
+
* storageClass: "STRING_VALUE",
|
|
54
|
+
* retentionPeriod: Number("int"),
|
|
55
|
+
* },
|
|
56
|
+
* ],
|
|
57
|
+
* tagsMap: {
|
|
58
|
+
* "<keys>": "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* replicationDestinationRegions: [
|
|
61
|
+
* "STRING_VALUE",
|
|
62
|
+
* ],
|
|
63
|
+
* replicationRoleArn: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* },
|
|
66
|
+
* enableAll: true || false,
|
|
67
|
+
* metaStoreManagerRoleArn: "STRING_VALUE",
|
|
68
|
+
* };
|
|
44
69
|
* const command = new CreateDatalakeCommand(input);
|
|
45
70
|
* const response = await client.send(command);
|
|
46
71
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface CreateDatalakeDelegatedAdminCommandOutput extends CreateDatalak
|
|
|
28
28
|
* import { SecurityLakeClient, CreateDatalakeDelegatedAdminCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, CreateDatalakeDelegatedAdminCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* account: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new CreateDatalakeDelegatedAdminCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface CreateDatalakeExceptionsSubscriptionCommandOutput extends Creat
|
|
|
27
27
|
* import { SecurityLakeClient, CreateDatalakeExceptionsSubscriptionCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, CreateDatalakeExceptionsSubscriptionCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* subscriptionProtocol: "STRING_VALUE", // required
|
|
32
|
+
* notificationEndpoint: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new CreateDatalakeExceptionsSubscriptionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,21 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
|
|
|
27
27
|
* import { SecurityLakeClient, CreateSubscriberCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, CreateSubscriberCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* sourceTypes: [ // required
|
|
32
|
+
* { // Union: only one key present
|
|
33
|
+
* awsSourceType: "STRING_VALUE",
|
|
34
|
+
* customSourceType: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* accountId: "STRING_VALUE", // required
|
|
38
|
+
* externalId: "STRING_VALUE", // required
|
|
39
|
+
* accessTypes: [
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* subscriberName: "STRING_VALUE", // required
|
|
43
|
+
* subscriberDescription: "STRING_VALUE",
|
|
44
|
+
* };
|
|
30
45
|
* const command = new CreateSubscriberCommand(input);
|
|
31
46
|
* const response = await client.send(command);
|
|
32
47
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
28
28
|
* import { SecurityLakeClient, CreateSubscriptionNotificationConfigurationCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, CreateSubscriptionNotificationConfigurationCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* subscriptionId: "STRING_VALUE", // required
|
|
33
|
+
* subscriptionEndpoint: "STRING_VALUE",
|
|
34
|
+
* httpsApiKeyName: "STRING_VALUE",
|
|
35
|
+
* httpsApiKeyValue: "STRING_VALUE",
|
|
36
|
+
* httpsMethod: "STRING_VALUE",
|
|
37
|
+
* createSqs: true || false,
|
|
38
|
+
* roleArn: "STRING_VALUE",
|
|
39
|
+
* };
|
|
31
40
|
* const command = new CreateSubscriptionNotificationConfigurationCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -40,6 +40,26 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
40
40
|
* import { SecurityLakeClient, DeleteAwsLogSourceCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
41
41
|
* // const { SecurityLakeClient, DeleteAwsLogSourceCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
42
42
|
* const client = new SecurityLakeClient(config);
|
|
43
|
+
* const input = {
|
|
44
|
+
* inputOrder: [ // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* disableAllDimensions: {
|
|
48
|
+
* "<keys>": {
|
|
49
|
+
* "<keys>": [
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* disableTwoDimensions: {
|
|
55
|
+
* "<keys>": [
|
|
56
|
+
* "STRING_VALUE",
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
59
|
+
* disableSingleDimension: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* };
|
|
43
63
|
* const command = new DeleteAwsLogSourceCommand(input);
|
|
44
64
|
* const response = await client.send(command);
|
|
45
65
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
|
|
|
26
26
|
* import { SecurityLakeClient, DeleteCustomLogSourceCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
27
27
|
* // const { SecurityLakeClient, DeleteCustomLogSourceCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
28
28
|
* const client = new SecurityLakeClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* customSourceName: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteCustomLogSourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -31,6 +31,16 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
|
|
|
31
31
|
* import { SecurityLakeClient, DeleteDatalakeAutoEnableCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
32
32
|
* // const { SecurityLakeClient, DeleteDatalakeAutoEnableCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
33
33
|
* const client = new SecurityLakeClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* removeFromConfigurationForNewAccounts: [ // required
|
|
36
|
+
* {
|
|
37
|
+
* region: "STRING_VALUE", // required
|
|
38
|
+
* sources: [ // required
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
34
44
|
* const command = new DeleteDatalakeAutoEnableCommand(input);
|
|
35
45
|
* const response = await client.send(command);
|
|
36
46
|
* ```
|
|
@@ -33,6 +33,7 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
|
|
|
33
33
|
* import { SecurityLakeClient, DeleteDatalakeCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
34
34
|
* // const { SecurityLakeClient, DeleteDatalakeCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
35
35
|
* const client = new SecurityLakeClient(config);
|
|
36
|
+
* const input = {};
|
|
36
37
|
* const command = new DeleteDatalakeCommand(input);
|
|
37
38
|
* const response = await client.send(command);
|
|
38
39
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
|
|
|
28
28
|
* import { SecurityLakeClient, DeleteDatalakeDelegatedAdminCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, DeleteDatalakeDelegatedAdminCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* account: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteDatalakeDelegatedAdminCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
|
|
|
27
27
|
* import { SecurityLakeClient, DeleteDatalakeExceptionsSubscriptionCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, DeleteDatalakeExceptionsSubscriptionCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new DeleteDatalakeExceptionsSubscriptionCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
|
|
|
28
28
|
* import { SecurityLakeClient, DeleteSubscriberCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, DeleteSubscriberCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteSubscriberCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
27
27
|
* import { SecurityLakeClient, DeleteSubscriptionNotificationConfigurationCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, DeleteSubscriptionNotificationConfigurationCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* subscriptionId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteSubscriptionNotificationConfigurationCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -28,6 +28,7 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
|
|
|
28
28
|
* import { SecurityLakeClient, GetDatalakeAutoEnableCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, GetDatalakeAutoEnableCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {};
|
|
31
32
|
* const command = new GetDatalakeAutoEnableCommand(input);
|
|
32
33
|
* const response = await client.send(command);
|
|
33
34
|
* ```
|
|
@@ -27,6 +27,7 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
|
|
|
27
27
|
* import { SecurityLakeClient, GetDatalakeCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, GetDatalakeCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {};
|
|
30
31
|
* const command = new GetDatalakeCommand(input);
|
|
31
32
|
* const response = await client.send(command);
|
|
32
33
|
* ```
|
|
@@ -28,6 +28,7 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
|
|
|
28
28
|
* import { SecurityLakeClient, GetDatalakeExceptionsExpiryCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, GetDatalakeExceptionsExpiryCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {};
|
|
31
32
|
* const command = new GetDatalakeExceptionsExpiryCommand(input);
|
|
32
33
|
* const response = await client.send(command);
|
|
33
34
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
|
|
|
26
26
|
* import { SecurityLakeClient, GetDatalakeExceptionsSubscriptionCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
27
27
|
* // const { SecurityLakeClient, GetDatalakeExceptionsSubscriptionCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
28
28
|
* const client = new SecurityLakeClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetDatalakeExceptionsSubscriptionCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
|
|
|
27
27
|
* import { SecurityLakeClient, GetDatalakeStatusCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, GetDatalakeStatusCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* accountSet: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* maxAccountResults: Number("int"),
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new GetDatalakeStatusCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
|
|
|
27
27
|
* import { SecurityLakeClient, GetSubscriberCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, GetSubscriberCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new GetSubscriberCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
|
|
|
27
27
|
* import { SecurityLakeClient, ListDatalakeExceptionsCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, ListDatalakeExceptionsCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* regionSet: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* maxFailures: Number("int"),
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
30
37
|
* const command = new ListDatalakeExceptionsCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -26,6 +26,28 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
26
26
|
* import { SecurityLakeClient, ListLogSourcesCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
27
27
|
* // const { SecurityLakeClient, ListLogSourcesCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
28
28
|
* const client = new SecurityLakeClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* inputOrder: [
|
|
31
|
+
* "STRING_VALUE",
|
|
32
|
+
* ],
|
|
33
|
+
* listAllDimensions: {
|
|
34
|
+
* "<keys>": {
|
|
35
|
+
* "<keys>": [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* },
|
|
39
|
+
* },
|
|
40
|
+
* listTwoDimensions: {
|
|
41
|
+
* "<keys>": [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* },
|
|
45
|
+
* listSingleDimension: [
|
|
46
|
+
* "STRING_VALUE",
|
|
47
|
+
* ],
|
|
48
|
+
* maxResults: Number("int"),
|
|
49
|
+
* nextToken: "STRING_VALUE",
|
|
50
|
+
* };
|
|
29
51
|
* const command = new ListLogSourcesCommand(input);
|
|
30
52
|
* const response = await client.send(command);
|
|
31
53
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
|
|
|
27
27
|
* import { SecurityLakeClient, ListSubscribersCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, ListSubscribersCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* maxResults: Number("int"),
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListSubscribersCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,26 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
|
|
|
27
27
|
* import { SecurityLakeClient, UpdateDatalakeCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, UpdateDatalakeCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* configurations: { // required
|
|
32
|
+
* "<keys>": {
|
|
33
|
+
* encryptionKey: "STRING_VALUE",
|
|
34
|
+
* retentionSettings: [
|
|
35
|
+
* {
|
|
36
|
+
* storageClass: "STRING_VALUE",
|
|
37
|
+
* retentionPeriod: Number("int"),
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* tagsMap: {
|
|
41
|
+
* "<keys>": "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* replicationDestinationRegions: [
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* replicationRoleArn: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
30
50
|
* const command = new UpdateDatalakeCommand(input);
|
|
31
51
|
* const response = await client.send(command);
|
|
32
52
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
|
|
|
28
28
|
* import { SecurityLakeClient, UpdateDatalakeExceptionsExpiryCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
29
29
|
* // const { SecurityLakeClient, UpdateDatalakeExceptionsExpiryCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
30
30
|
* const client = new SecurityLakeClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* exceptionMessageExpiry: Number("long"), // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new UpdateDatalakeExceptionsExpiryCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
|
|
|
27
27
|
* import { SecurityLakeClient, UpdateDatalakeExceptionsSubscriptionCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, UpdateDatalakeExceptionsSubscriptionCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* subscriptionProtocol: "STRING_VALUE", // required
|
|
32
|
+
* notificationEndpoint: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new UpdateDatalakeExceptionsSubscriptionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,18 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
|
|
|
27
27
|
* import { SecurityLakeClient, UpdateSubscriberCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, UpdateSubscriberCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* sourceTypes: [ // required
|
|
33
|
+
* { // Union: only one key present
|
|
34
|
+
* awsSourceType: "STRING_VALUE",
|
|
35
|
+
* customSourceType: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* externalId: "STRING_VALUE",
|
|
39
|
+
* subscriberName: "STRING_VALUE",
|
|
40
|
+
* subscriberDescription: "STRING_VALUE",
|
|
41
|
+
* };
|
|
30
42
|
* const command = new UpdateSubscriberCommand(input);
|
|
31
43
|
* const response = await client.send(command);
|
|
32
44
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
|
|
|
27
27
|
* import { SecurityLakeClient, UpdateSubscriptionNotificationConfigurationCommand } from "@aws-sdk/client-securitylake"; // ES Modules import
|
|
28
28
|
* // const { SecurityLakeClient, UpdateSubscriptionNotificationConfigurationCommand } = require("@aws-sdk/client-securitylake"); // CommonJS import
|
|
29
29
|
* const client = new SecurityLakeClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* subscriptionId: "STRING_VALUE", // required
|
|
32
|
+
* subscriptionEndpoint: "STRING_VALUE",
|
|
33
|
+
* httpsApiKeyName: "STRING_VALUE",
|
|
34
|
+
* httpsApiKeyValue: "STRING_VALUE",
|
|
35
|
+
* httpsMethod: "STRING_VALUE",
|
|
36
|
+
* createSqs: true || false,
|
|
37
|
+
* roleArn: "STRING_VALUE",
|
|
38
|
+
* };
|
|
30
39
|
* const command = new UpdateSubscriptionNotificationConfigurationCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
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.300.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,23 +21,23 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
30
30
|
"@aws-sdk/middleware-content-length": "3.296.0",
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.299.0",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
+
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|