@aws-sdk/client-securitylake 3.300.0 → 3.301.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 +6 -6
- package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +4 -4
- package/dist-types/commands/CreateDatalakeCommand.d.ts +7 -7
- package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +1 -1
- package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubscriberCommand.d.ts +4 -4
- package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +6 -6
- package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +4 -4
- package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSubscriberCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetDatalakeStatusCommand.d.ts +2 -2
- package/dist-types/commands/GetSubscriberCommand.d.ts +1 -1
- package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +2 -2
- package/dist-types/commands/ListLogSourcesCommand.d.ts +6 -6
- package/dist-types/commands/ListSubscribersCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatalakeCommand.d.ts +7 -7
- package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSubscriberCommand.d.ts +3 -3
- package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -40,13 +40,13 @@ 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
|
|
43
|
+
* const input = { // CreateAwsLogSourceRequest
|
|
44
|
+
* inputOrder: [ // DimensionSet // required
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* enableAllDimensions: {
|
|
48
|
-
* "<keys>": {
|
|
49
|
-
* "<keys>": [
|
|
47
|
+
* enableAllDimensions: { // AllDimensionsMap
|
|
48
|
+
* "<keys>": { // TwoDimensionsMap
|
|
49
|
+
* "<keys>": [ // ValueSet
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
52
|
* },
|
|
@@ -56,7 +56,7 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo
|
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* enableSingleDimension: [
|
|
59
|
+
* enableSingleDimension: [ // InputSet
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // CreateCustomLogSourceRequest
|
|
35
35
|
* customSourceName: "STRING_VALUE", // required
|
|
36
36
|
* eventClass: "STRING_VALUE", // required
|
|
37
37
|
* glueInvocationRoleArn: "STRING_VALUE", // required
|
|
@@ -28,11 +28,11 @@ 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
|
-
* {
|
|
31
|
+
* const input = { // CreateDatalakeAutoEnableRequest
|
|
32
|
+
* configurationForNewAccounts: [ // AutoEnableNewRegionConfigurationList // required
|
|
33
|
+
* { // AutoEnableNewRegionConfiguration
|
|
34
34
|
* region: "STRING_VALUE", // required
|
|
35
|
-
* sources: [ // required
|
|
35
|
+
* sources: [ // AwsSourceTypeList // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
@@ -41,20 +41,20 @@ 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: [
|
|
44
|
+
* const input = { // CreateDatalakeRequest
|
|
45
|
+
* regions: [ // RegionSet
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
|
-
* configurations: {
|
|
49
|
-
* "<keys>": {
|
|
48
|
+
* configurations: { // LakeConfigurationRequestMap
|
|
49
|
+
* "<keys>": { // LakeConfigurationRequest
|
|
50
50
|
* encryptionKey: "STRING_VALUE",
|
|
51
|
-
* retentionSettings: [
|
|
52
|
-
* {
|
|
51
|
+
* retentionSettings: [ // RetentionSettingList
|
|
52
|
+
* { // RetentionSetting
|
|
53
53
|
* storageClass: "STRING_VALUE",
|
|
54
54
|
* retentionPeriod: Number("int"),
|
|
55
55
|
* },
|
|
56
56
|
* ],
|
|
57
|
-
* tagsMap: {
|
|
57
|
+
* tagsMap: { // TagsMap
|
|
58
58
|
* "<keys>": "STRING_VALUE",
|
|
59
59
|
* },
|
|
60
60
|
* replicationDestinationRegions: [
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // CreateDatalakeDelegatedAdminRequest
|
|
32
32
|
* account: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateDatalakeDelegatedAdminCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // CreateDatalakeExceptionsSubscriptionRequest
|
|
31
31
|
* subscriptionProtocol: "STRING_VALUE", // required
|
|
32
32
|
* notificationEndpoint: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,16 +27,16 @@ 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
|
|
30
|
+
* const input = { // CreateSubscriberRequest
|
|
31
|
+
* sourceTypes: [ // SourceTypeList // required
|
|
32
|
+
* { // SourceType Union: only one key present
|
|
33
33
|
* awsSourceType: "STRING_VALUE",
|
|
34
34
|
* customSourceType: "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* ],
|
|
37
37
|
* accountId: "STRING_VALUE", // required
|
|
38
38
|
* externalId: "STRING_VALUE", // required
|
|
39
|
-
* accessTypes: [
|
|
39
|
+
* accessTypes: [ // AccessTypeList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* subscriberName: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // CreateSubscriptionNotificationConfigurationRequest
|
|
32
32
|
* subscriptionId: "STRING_VALUE", // required
|
|
33
33
|
* subscriptionEndpoint: "STRING_VALUE",
|
|
34
34
|
* httpsApiKeyName: "STRING_VALUE",
|
|
@@ -40,13 +40,13 @@ 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
|
|
43
|
+
* const input = { // DeleteAwsLogSourceRequest
|
|
44
|
+
* inputOrder: [ // DimensionSet // required
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* disableAllDimensions: {
|
|
48
|
-
* "<keys>": {
|
|
49
|
-
* "<keys>": [
|
|
47
|
+
* disableAllDimensions: { // AllDimensionsMap
|
|
48
|
+
* "<keys>": { // TwoDimensionsMap
|
|
49
|
+
* "<keys>": [ // ValueSet
|
|
50
50
|
* "STRING_VALUE",
|
|
51
51
|
* ],
|
|
52
52
|
* },
|
|
@@ -56,7 +56,7 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
|
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
|
-
* disableSingleDimension: [
|
|
59
|
+
* disableSingleDimension: [ // InputSet
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteCustomLogSourceRequest
|
|
30
30
|
* customSourceName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCustomLogSourceCommand(input);
|
|
@@ -31,11 +31,11 @@ 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
|
-
* {
|
|
34
|
+
* const input = { // DeleteDatalakeAutoEnableRequest
|
|
35
|
+
* removeFromConfigurationForNewAccounts: [ // AutoEnableNewRegionConfigurationList // required
|
|
36
|
+
* { // AutoEnableNewRegionConfiguration
|
|
37
37
|
* region: "STRING_VALUE", // required
|
|
38
|
-
* sources: [ // required
|
|
38
|
+
* sources: [ // AwsSourceTypeList // required
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DeleteDatalakeDelegatedAdminRequest
|
|
32
32
|
* account: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteDatalakeDelegatedAdminCommand(input);
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DeleteSubscriberRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteSubscriberCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteSubscriptionNotificationConfigurationRequest
|
|
31
31
|
* subscriptionId: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteSubscriptionNotificationConfigurationCommand(input);
|
|
@@ -27,8 +27,8 @@ 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: [
|
|
30
|
+
* const input = { // GetDatalakeStatusRequest
|
|
31
|
+
* accountSet: [ // InputSet
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* maxAccountResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // GetSubscriberRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetSubscriberCommand(input);
|
|
@@ -27,8 +27,8 @@ 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: [
|
|
30
|
+
* const input = { // ListDatalakeExceptionsRequest
|
|
31
|
+
* regionSet: [ // RegionSet
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* maxFailures: Number("int"),
|
|
@@ -26,13 +26,13 @@ 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: [
|
|
29
|
+
* const input = { // ListLogSourcesRequest
|
|
30
|
+
* inputOrder: [ // DimensionSet
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* listAllDimensions: {
|
|
34
|
-
* "<keys>": {
|
|
35
|
-
* "<keys>": [
|
|
33
|
+
* listAllDimensions: { // AllDimensionsMap
|
|
34
|
+
* "<keys>": { // TwoDimensionsMap
|
|
35
|
+
* "<keys>": [ // ValueSet
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* },
|
|
@@ -42,7 +42,7 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
|
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* },
|
|
45
|
-
* listSingleDimension: [
|
|
45
|
+
* listSingleDimension: [ // InputSet
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* maxResults: Number("int"),
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // ListSubscribersRequest
|
|
31
31
|
* nextToken: "STRING_VALUE",
|
|
32
32
|
* maxResults: Number("int"),
|
|
33
33
|
* };
|
|
@@ -27,20 +27,20 @@ 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>": {
|
|
30
|
+
* const input = { // UpdateDatalakeRequest
|
|
31
|
+
* configurations: { // LakeConfigurationRequestMap // required
|
|
32
|
+
* "<keys>": { // LakeConfigurationRequest
|
|
33
33
|
* encryptionKey: "STRING_VALUE",
|
|
34
|
-
* retentionSettings: [
|
|
35
|
-
* {
|
|
34
|
+
* retentionSettings: [ // RetentionSettingList
|
|
35
|
+
* { // RetentionSetting
|
|
36
36
|
* storageClass: "STRING_VALUE",
|
|
37
37
|
* retentionPeriod: Number("int"),
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
-
* tagsMap: {
|
|
40
|
+
* tagsMap: { // TagsMap
|
|
41
41
|
* "<keys>": "STRING_VALUE",
|
|
42
42
|
* },
|
|
43
|
-
* replicationDestinationRegions: [
|
|
43
|
+
* replicationDestinationRegions: [ // RegionSet
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* replicationRoleArn: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // UpdateDatalakeExceptionsExpiryRequest
|
|
32
32
|
* exceptionMessageExpiry: Number("long"), // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateDatalakeExceptionsExpiryCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // UpdateDatalakeExceptionsSubscriptionRequest
|
|
31
31
|
* subscriptionProtocol: "STRING_VALUE", // required
|
|
32
32
|
* notificationEndpoint: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,10 +27,10 @@ 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 = {
|
|
30
|
+
* const input = { // UpdateSubscriberRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
|
-
* sourceTypes: [ // required
|
|
33
|
-
* { // Union: only one key present
|
|
32
|
+
* sourceTypes: [ // SourceTypeList // required
|
|
33
|
+
* { // SourceType Union: only one key present
|
|
34
34
|
* awsSourceType: "STRING_VALUE",
|
|
35
35
|
* customSourceType: "STRING_VALUE",
|
|
36
36
|
* },
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // UpdateSubscriptionNotificationConfigurationRequest
|
|
31
31
|
* subscriptionId: "STRING_VALUE", // required
|
|
32
32
|
* subscriptionEndpoint: "STRING_VALUE",
|
|
33
33
|
* httpsApiKeyName: "STRING_VALUE",
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.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",
|