@aws-sdk/client-securitylake 3.687.0 → 3.692.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/models/models_0.d.ts +124 -124
- package/dist-types/ts3.4/models/models_0.d.ts +130 -124
- package/package.json +35 -35
|
@@ -14,7 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
* <p>A coded string to provide more information about the access denied exception. You can use the error code to check the exception type.</p>
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
errorCode?: string;
|
|
17
|
+
errorCode?: string | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* @internal
|
|
20
20
|
*/
|
|
@@ -76,7 +76,7 @@ export interface AwsLogSourceConfiguration {
|
|
|
76
76
|
* <p>Specify the Amazon Web Services account information where you want to enable Security Lake.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
accounts?: string[];
|
|
79
|
+
accounts?: string[] | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* <p>Specify the Regions where you want to enable Security Lake.</p>
|
|
82
82
|
* @public
|
|
@@ -91,7 +91,7 @@ export interface AwsLogSourceConfiguration {
|
|
|
91
91
|
* <p>The version for a Amazon Web Services source. </p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
sourceVersion?: string;
|
|
94
|
+
sourceVersion?: string | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* <p>Amazon Security Lake can collect logs and events from natively-supported Amazon Web Services
|
|
@@ -103,12 +103,12 @@ export interface AwsLogSourceResource {
|
|
|
103
103
|
* <p>The name for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
sourceName?: AwsLogSourceName;
|
|
106
|
+
sourceName?: AwsLogSourceName | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>The version for a Amazon Web Services source. This must be a Regionally unique value.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
sourceVersion?: string;
|
|
111
|
+
sourceVersion?: string | undefined;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* <p>The request is malformed or contains an error such as an invalid parameter value or a missing required parameter.</p>
|
|
@@ -136,12 +136,12 @@ export declare class ConflictException extends __BaseException {
|
|
|
136
136
|
* <p>The resource name.</p>
|
|
137
137
|
* @public
|
|
138
138
|
*/
|
|
139
|
-
resourceName?: string;
|
|
139
|
+
resourceName?: string | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* <p>The resource type.</p>
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
resourceType?: string;
|
|
144
|
+
resourceType?: string | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* @internal
|
|
147
147
|
*/
|
|
@@ -167,7 +167,7 @@ export interface CreateAwsLogSourceResponse {
|
|
|
167
167
|
* organization.</p>
|
|
168
168
|
* @public
|
|
169
169
|
*/
|
|
170
|
-
failed?: string[];
|
|
170
|
+
failed?: string[] | undefined;
|
|
171
171
|
}
|
|
172
172
|
/**
|
|
173
173
|
* <p>Internal service exceptions are sometimes caused by transient issues. Before you start
|
|
@@ -194,12 +194,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
194
194
|
* <p>The name of the resource that could not be found.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
resourceName?: string;
|
|
197
|
+
resourceName?: string | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p>The type of the resource that could not be found.</p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
resourceType?: string;
|
|
202
|
+
resourceType?: string | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* @internal
|
|
205
205
|
*/
|
|
@@ -219,17 +219,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
219
219
|
* <p>The code for the service in Service Quotas.</p>
|
|
220
220
|
* @public
|
|
221
221
|
*/
|
|
222
|
-
serviceCode?: string;
|
|
222
|
+
serviceCode?: string | undefined;
|
|
223
223
|
/**
|
|
224
224
|
* <p>That the rate of requests to Security Lake is exceeding the request quotas for your Amazon Web Services account.</p>
|
|
225
225
|
* @public
|
|
226
226
|
*/
|
|
227
|
-
quotaCode?: string;
|
|
227
|
+
quotaCode?: string | undefined;
|
|
228
228
|
/**
|
|
229
229
|
* <p>Retry the request after the specified time.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
retryAfterSeconds?: number;
|
|
232
|
+
retryAfterSeconds?: number | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* @internal
|
|
235
235
|
*/
|
|
@@ -293,7 +293,7 @@ export interface CreateCustomLogSourceRequest {
|
|
|
293
293
|
* a specific version of custom data source.</p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
sourceVersion?: string;
|
|
296
|
+
sourceVersion?: string | undefined;
|
|
297
297
|
/**
|
|
298
298
|
* <p>The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of
|
|
299
299
|
* data that the custom source will send to Security Lake. The supported event classes are:</p>
|
|
@@ -446,7 +446,7 @@ export interface CreateCustomLogSourceRequest {
|
|
|
446
446
|
* </ul>
|
|
447
447
|
* @public
|
|
448
448
|
*/
|
|
449
|
-
eventClasses?: string[];
|
|
449
|
+
eventClasses?: string[] | undefined;
|
|
450
450
|
/**
|
|
451
451
|
* <p>The configuration used for the third-party custom source.</p>
|
|
452
452
|
* @public
|
|
@@ -462,18 +462,18 @@ export interface CustomLogSourceAttributes {
|
|
|
462
462
|
* <p>The ARN of the Glue crawler.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
crawlerArn?: string;
|
|
465
|
+
crawlerArn?: string | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>The ARN of the Glue database where results are written, such as:
|
|
468
468
|
* <code>arn:aws:daylight:us-east-1::database/sometable/*</code>.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
databaseArn?: string;
|
|
471
|
+
databaseArn?: string | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>The ARN of the Glue table.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
tableArn?: string;
|
|
476
|
+
tableArn?: string | undefined;
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* <p>The details of the log provider for a third-party custom source.</p>
|
|
@@ -488,12 +488,12 @@ export interface CustomLogSourceProvider {
|
|
|
488
488
|
* <code>logProviderAccountId</code> to assume the role.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
roleArn?: string;
|
|
491
|
+
roleArn?: string | undefined;
|
|
492
492
|
/**
|
|
493
493
|
* <p>The location of the partition in the Amazon S3 bucket for Security Lake.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
location?: string;
|
|
496
|
+
location?: string | undefined;
|
|
497
497
|
}
|
|
498
498
|
/**
|
|
499
499
|
* <p>Amazon Security Lake can collect logs and events from third-party custom sources.</p>
|
|
@@ -504,22 +504,22 @@ export interface CustomLogSourceResource {
|
|
|
504
504
|
* <p>The name for a third-party custom source. This must be a Regionally unique value.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
sourceName?: string;
|
|
507
|
+
sourceName?: string | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The version for a third-party custom source. This must be a Regionally unique value.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
sourceVersion?: string;
|
|
512
|
+
sourceVersion?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The details of the log provider for a third-party custom source.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
provider?: CustomLogSourceProvider;
|
|
517
|
+
provider?: CustomLogSourceProvider | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>The attributes of a third-party custom source.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
attributes?: CustomLogSourceAttributes;
|
|
522
|
+
attributes?: CustomLogSourceAttributes | undefined;
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
525
525
|
* @public
|
|
@@ -529,7 +529,7 @@ export interface CreateCustomLogSourceResponse {
|
|
|
529
529
|
* <p>The third-party custom source that was created.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
source?: CustomLogSourceResource;
|
|
532
|
+
source?: CustomLogSourceResource | undefined;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* <p>Provides encryption details of Amazon Security Lake object.</p>
|
|
@@ -541,7 +541,7 @@ export interface DataLakeEncryptionConfiguration {
|
|
|
541
541
|
* object.</p>
|
|
542
542
|
* @public
|
|
543
543
|
*/
|
|
544
|
-
kmsKeyId?: string;
|
|
544
|
+
kmsKeyId?: string | undefined;
|
|
545
545
|
}
|
|
546
546
|
/**
|
|
547
547
|
* <p>Provide expiration lifecycle details of Amazon Security Lake object.</p>
|
|
@@ -552,7 +552,7 @@ export interface DataLakeLifecycleExpiration {
|
|
|
552
552
|
* <p>Number of days before data expires in the Amazon Security Lake object.</p>
|
|
553
553
|
* @public
|
|
554
554
|
*/
|
|
555
|
-
days?: number;
|
|
555
|
+
days?: number | undefined;
|
|
556
556
|
}
|
|
557
557
|
/**
|
|
558
558
|
* <p>Provide transition lifecycle details of Amazon Security Lake object.</p>
|
|
@@ -564,12 +564,12 @@ export interface DataLakeLifecycleTransition {
|
|
|
564
564
|
* resiliency, and cost requirements of your workloads.</p>
|
|
565
565
|
* @public
|
|
566
566
|
*/
|
|
567
|
-
storageClass?: string;
|
|
567
|
+
storageClass?: string | undefined;
|
|
568
568
|
/**
|
|
569
569
|
* <p>Number of days before data transitions to a different S3 Storage Class in the Amazon Security Lake object.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
days?: number;
|
|
572
|
+
days?: number | undefined;
|
|
573
573
|
}
|
|
574
574
|
/**
|
|
575
575
|
* <p>Provides lifecycle details of Amazon Security Lake object.</p>
|
|
@@ -580,12 +580,12 @@ export interface DataLakeLifecycleConfiguration {
|
|
|
580
580
|
* <p>Provides data expiration details of Amazon Security Lake object.</p>
|
|
581
581
|
* @public
|
|
582
582
|
*/
|
|
583
|
-
expiration?: DataLakeLifecycleExpiration;
|
|
583
|
+
expiration?: DataLakeLifecycleExpiration | undefined;
|
|
584
584
|
/**
|
|
585
585
|
* <p>Provides data storage transition details of Amazon Security Lake object.</p>
|
|
586
586
|
* @public
|
|
587
587
|
*/
|
|
588
|
-
transitions?: DataLakeLifecycleTransition[];
|
|
588
|
+
transitions?: DataLakeLifecycleTransition[] | undefined;
|
|
589
589
|
}
|
|
590
590
|
/**
|
|
591
591
|
* <p>Provides replication details for objects stored in the Amazon Security Lake data lake.</p>
|
|
@@ -608,13 +608,13 @@ export interface DataLakeReplicationConfiguration {
|
|
|
608
608
|
* can be in different Regions or within the same Region as the source bucket.</p>
|
|
609
609
|
* @public
|
|
610
610
|
*/
|
|
611
|
-
regions?: string[];
|
|
611
|
+
regions?: string[] | undefined;
|
|
612
612
|
/**
|
|
613
613
|
* <p>Replication settings for the Amazon S3 buckets. This parameter uses the Identity and Access Management (IAM) role you created that is managed by Security Lake, to
|
|
614
614
|
* ensure the replication setting is correct.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
roleArn?: string;
|
|
617
|
+
roleArn?: string | undefined;
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
620
|
* <p>Provides details of Amazon Security Lake object.</p>
|
|
@@ -630,17 +630,17 @@ export interface DataLakeConfiguration {
|
|
|
630
630
|
* <p>Provides encryption details of Amazon Security Lake object.</p>
|
|
631
631
|
* @public
|
|
632
632
|
*/
|
|
633
|
-
encryptionConfiguration?: DataLakeEncryptionConfiguration;
|
|
633
|
+
encryptionConfiguration?: DataLakeEncryptionConfiguration | undefined;
|
|
634
634
|
/**
|
|
635
635
|
* <p>Provides lifecycle details of Amazon Security Lake object.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
lifecycleConfiguration?: DataLakeLifecycleConfiguration;
|
|
638
|
+
lifecycleConfiguration?: DataLakeLifecycleConfiguration | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>Provides replication details of Amazon Security Lake object.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
replicationConfiguration?: DataLakeReplicationConfiguration;
|
|
643
|
+
replicationConfiguration?: DataLakeReplicationConfiguration | undefined;
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* <p>A <i>tag</i> is a label that you can define and associate with Amazon Web Services resources, including certain types of Amazon Security Lake resources.
|
|
@@ -688,7 +688,7 @@ export interface CreateDataLakeRequest {
|
|
|
688
688
|
* value cannot be null, but it can be an empty string.</p>
|
|
689
689
|
* @public
|
|
690
690
|
*/
|
|
691
|
-
tags?: Tag[];
|
|
691
|
+
tags?: Tag[] | undefined;
|
|
692
692
|
}
|
|
693
693
|
/**
|
|
694
694
|
* @public
|
|
@@ -715,13 +715,13 @@ export interface DataLakeUpdateException {
|
|
|
715
715
|
* <code>DeleteDataLake</code> API request.</p>
|
|
716
716
|
* @public
|
|
717
717
|
*/
|
|
718
|
-
reason?: string;
|
|
718
|
+
reason?: string | undefined;
|
|
719
719
|
/**
|
|
720
720
|
* <p>The reason code for the exception of the last <code>UpdateDataLake</code> or
|
|
721
721
|
* <code>DeleteDataLake</code> API request.</p>
|
|
722
722
|
* @public
|
|
723
723
|
*/
|
|
724
|
-
code?: string;
|
|
724
|
+
code?: string | undefined;
|
|
725
725
|
}
|
|
726
726
|
/**
|
|
727
727
|
* <p>The status of the last <code>UpdateDataLake</code> or <code>DeleteDataLake</code> API
|
|
@@ -735,19 +735,19 @@ export interface DataLakeUpdateStatus {
|
|
|
735
735
|
* request.</p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
requestId?: string;
|
|
738
|
+
requestId?: string | undefined;
|
|
739
739
|
/**
|
|
740
740
|
* <p>The status of the last <code>UpdateDataLake</code> or <code>DeleteDataLake</code> API
|
|
741
741
|
* request that was requested.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
status?: DataLakeStatus;
|
|
744
|
+
status?: DataLakeStatus | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>The details of the last <code>UpdateDataLake</code>or <code>DeleteDataLake</code> API
|
|
747
747
|
* request which failed.</p>
|
|
748
748
|
* @public
|
|
749
749
|
*/
|
|
750
|
-
exception?: DataLakeUpdateException;
|
|
750
|
+
exception?: DataLakeUpdateException | undefined;
|
|
751
751
|
}
|
|
752
752
|
/**
|
|
753
753
|
* <p>Provides details of Amazon Security Lake object.</p>
|
|
@@ -768,33 +768,33 @@ export interface DataLakeResource {
|
|
|
768
768
|
* <p>The ARN for the Amazon Security Lake Amazon S3 bucket.</p>
|
|
769
769
|
* @public
|
|
770
770
|
*/
|
|
771
|
-
s3BucketArn?: string;
|
|
771
|
+
s3BucketArn?: string | undefined;
|
|
772
772
|
/**
|
|
773
773
|
* <p>Provides encryption details of Amazon Security Lake object.</p>
|
|
774
774
|
* @public
|
|
775
775
|
*/
|
|
776
|
-
encryptionConfiguration?: DataLakeEncryptionConfiguration;
|
|
776
|
+
encryptionConfiguration?: DataLakeEncryptionConfiguration | undefined;
|
|
777
777
|
/**
|
|
778
778
|
* <p>Provides lifecycle details of Amazon Security Lake object.</p>
|
|
779
779
|
* @public
|
|
780
780
|
*/
|
|
781
|
-
lifecycleConfiguration?: DataLakeLifecycleConfiguration;
|
|
781
|
+
lifecycleConfiguration?: DataLakeLifecycleConfiguration | undefined;
|
|
782
782
|
/**
|
|
783
783
|
* <p>Provides replication details of Amazon Security Lake object.</p>
|
|
784
784
|
* @public
|
|
785
785
|
*/
|
|
786
|
-
replicationConfiguration?: DataLakeReplicationConfiguration;
|
|
786
|
+
replicationConfiguration?: DataLakeReplicationConfiguration | undefined;
|
|
787
787
|
/**
|
|
788
788
|
* <p>Retrieves the status of the <code>CreateDatalake</code> API call for an account in Amazon Security Lake.</p>
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
createStatus?: DataLakeStatus;
|
|
791
|
+
createStatus?: DataLakeStatus | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* <p>The status of the last <code>UpdateDataLake </code>or <code>DeleteDataLake</code> API
|
|
794
794
|
* request.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
updateStatus?: DataLakeUpdateStatus;
|
|
797
|
+
updateStatus?: DataLakeUpdateStatus | undefined;
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* @public
|
|
@@ -804,7 +804,7 @@ export interface CreateDataLakeResponse {
|
|
|
804
804
|
* <p>The created Security Lake configuration object.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
dataLakes?: DataLakeResource[];
|
|
807
|
+
dataLakes?: DataLakeResource[] | undefined;
|
|
808
808
|
}
|
|
809
809
|
/**
|
|
810
810
|
* @public
|
|
@@ -824,7 +824,7 @@ export interface CreateDataLakeExceptionSubscriptionRequest {
|
|
|
824
824
|
* <p>The expiration period and time-to-live (TTL). It is the duration of time until which the exception message remains.</p>
|
|
825
825
|
* @public
|
|
826
826
|
*/
|
|
827
|
-
exceptionTimeToLive?: number;
|
|
827
|
+
exceptionTimeToLive?: number | undefined;
|
|
828
828
|
}
|
|
829
829
|
/**
|
|
830
830
|
* @public
|
|
@@ -857,7 +857,7 @@ export interface CreateDataLakeOrganizationConfigurationRequest {
|
|
|
857
857
|
* data for new accounts in your organization.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
|
|
860
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
861
861
|
}
|
|
862
862
|
/**
|
|
863
863
|
* @public
|
|
@@ -925,7 +925,7 @@ export interface CreateSubscriberRequest {
|
|
|
925
925
|
* <p>The description for your subscriber account in Security Lake.</p>
|
|
926
926
|
* @public
|
|
927
927
|
*/
|
|
928
|
-
subscriberDescription?: string;
|
|
928
|
+
subscriberDescription?: string | undefined;
|
|
929
929
|
/**
|
|
930
930
|
* <p>The supported Amazon Web Services services from which logs and events are collected.
|
|
931
931
|
* Security Lake supports log and event collection for natively supported Amazon Web Services services.</p>
|
|
@@ -936,13 +936,13 @@ export interface CreateSubscriberRequest {
|
|
|
936
936
|
* <p>The Amazon S3 or Lake Formation access type.</p>
|
|
937
937
|
* @public
|
|
938
938
|
*/
|
|
939
|
-
accessTypes?: AccessType[];
|
|
939
|
+
accessTypes?: AccessType[] | undefined;
|
|
940
940
|
/**
|
|
941
941
|
* <p>An array of objects, one for each tag to associate with the subscriber. For each tag, you must specify both a tag key and a tag value. A tag
|
|
942
942
|
* value cannot be null, but it can be an empty string.</p>
|
|
943
943
|
* @public
|
|
944
944
|
*/
|
|
945
|
-
tags?: Tag[];
|
|
945
|
+
tags?: Tag[] | undefined;
|
|
946
946
|
}
|
|
947
947
|
/**
|
|
948
948
|
* @public
|
|
@@ -991,7 +991,7 @@ export interface SubscriberResource {
|
|
|
991
991
|
* <code>subscriberId</code>.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
subscriberDescription?: string;
|
|
994
|
+
subscriberDescription?: string | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>Amazon Security Lake supports log and event collection for natively supported Amazon Web Services services. For more information, see the <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/source-management.html">Amazon Security Lake User Guide</a>.</p>
|
|
997
997
|
* @public
|
|
@@ -1006,27 +1006,27 @@ export interface SubscriberResource {
|
|
|
1006
1006
|
* type is defined as <code>LAKEFORMATION</code>.</p>
|
|
1007
1007
|
* @public
|
|
1008
1008
|
*/
|
|
1009
|
-
accessTypes?: AccessType[];
|
|
1009
|
+
accessTypes?: AccessType[] | undefined;
|
|
1010
1010
|
/**
|
|
1011
1011
|
* <p>The Amazon Resource Name (ARN) specifying the role of the subscriber.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
roleArn?: string;
|
|
1014
|
+
roleArn?: string | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The ARN for the Amazon S3 bucket.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
s3BucketArn?: string;
|
|
1019
|
+
s3BucketArn?: string | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* <p>The subscriber endpoint to which exception messages are posted.</p>
|
|
1022
1022
|
* @public
|
|
1023
1023
|
*/
|
|
1024
|
-
subscriberEndpoint?: string;
|
|
1024
|
+
subscriberEndpoint?: string | undefined;
|
|
1025
1025
|
/**
|
|
1026
1026
|
* <p>The subscriber status of the Amazon Security Lake subscriber account.</p>
|
|
1027
1027
|
* @public
|
|
1028
1028
|
*/
|
|
1029
|
-
subscriberStatus?: SubscriberStatus;
|
|
1029
|
+
subscriberStatus?: SubscriberStatus | undefined;
|
|
1030
1030
|
/**
|
|
1031
1031
|
* <p>The Amazon Resource Name (ARN) which uniquely defines the Amazon Web Services RAM resource share. Before
|
|
1032
1032
|
* accepting the RAM resource share invitation, you can view details related to the RAM
|
|
@@ -1034,22 +1034,22 @@ export interface SubscriberResource {
|
|
|
1034
1034
|
* <p>This field is available only for Lake Formation subscribers created after March 8, 2023.</p>
|
|
1035
1035
|
* @public
|
|
1036
1036
|
*/
|
|
1037
|
-
resourceShareArn?: string;
|
|
1037
|
+
resourceShareArn?: string | undefined;
|
|
1038
1038
|
/**
|
|
1039
1039
|
* <p>The name of the resource share.</p>
|
|
1040
1040
|
* @public
|
|
1041
1041
|
*/
|
|
1042
|
-
resourceShareName?: string;
|
|
1042
|
+
resourceShareName?: string | undefined;
|
|
1043
1043
|
/**
|
|
1044
1044
|
* <p>The date and time when the subscriber was created.</p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
createdAt?: Date;
|
|
1047
|
+
createdAt?: Date | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* <p>The date and time when the subscriber was last updated.</p>
|
|
1050
1050
|
* @public
|
|
1051
1051
|
*/
|
|
1052
|
-
updatedAt?: Date;
|
|
1052
|
+
updatedAt?: Date | undefined;
|
|
1053
1053
|
}
|
|
1054
1054
|
/**
|
|
1055
1055
|
* @public
|
|
@@ -1060,7 +1060,7 @@ export interface CreateSubscriberResponse {
|
|
|
1060
1060
|
* <code>CreateSubscriber</code> API.</p>
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
subscriber?: SubscriberResource;
|
|
1063
|
+
subscriber?: SubscriberResource | undefined;
|
|
1064
1064
|
}
|
|
1065
1065
|
/**
|
|
1066
1066
|
* @public
|
|
@@ -1089,17 +1089,17 @@ export interface HttpsNotificationConfiguration {
|
|
|
1089
1089
|
* <p>The key name for the notification subscription.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
authorizationApiKeyName?: string;
|
|
1092
|
+
authorizationApiKeyName?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>The key value for the notification subscription.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
authorizationApiKeyValue?: string;
|
|
1097
|
+
authorizationApiKeyValue?: string | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The HTTPS method used for the notification subscription.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
httpMethod?: HttpMethod;
|
|
1102
|
+
httpMethod?: HttpMethod | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>The Amazon Resource Name (ARN) of the EventBridge API destinations IAM role that you
|
|
1105
1105
|
* created. For more information about ARNs and how to use them in policies, see <a href="https://docs.aws.amazon.com//security-lake/latest/userguide/subscriber-data-access.html">Managing data access</a> and <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/security-iam-awsmanpol.html">Amazon Web Services
|
|
@@ -1182,7 +1182,7 @@ export interface CreateSubscriberNotificationResponse {
|
|
|
1182
1182
|
* <p>The subscriber endpoint to which exception messages are posted.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
subscriberEndpoint?: string;
|
|
1185
|
+
subscriberEndpoint?: string | undefined;
|
|
1186
1186
|
}
|
|
1187
1187
|
/**
|
|
1188
1188
|
* @public
|
|
@@ -1203,7 +1203,7 @@ export interface DeleteAwsLogSourceResponse {
|
|
|
1203
1203
|
* <p>Deletion of the Amazon Web Services sources failed as the account is not a part of the organization.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
failed?: string[];
|
|
1206
|
+
failed?: string[] | undefined;
|
|
1207
1207
|
}
|
|
1208
1208
|
/**
|
|
1209
1209
|
* @public
|
|
@@ -1219,7 +1219,7 @@ export interface DeleteCustomLogSourceRequest {
|
|
|
1219
1219
|
* removal to the specified source version.</p>
|
|
1220
1220
|
* @public
|
|
1221
1221
|
*/
|
|
1222
|
-
sourceVersion?: string;
|
|
1222
|
+
sourceVersion?: string | undefined;
|
|
1223
1223
|
}
|
|
1224
1224
|
/**
|
|
1225
1225
|
* @public
|
|
@@ -1249,7 +1249,7 @@ export interface DeleteDataLakeOrganizationConfigurationRequest {
|
|
|
1249
1249
|
* <p>Turns off automatic enablement of Security Lake for member accounts that are added to an organization.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
|
|
1252
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
|
1255
1255
|
* @public
|
|
@@ -1269,7 +1269,7 @@ export interface GetDataLakeOrganizationConfigurationResponse {
|
|
|
1269
1269
|
* <p>The configuration used for new accounts in Security Lake.</p>
|
|
1270
1270
|
* @public
|
|
1271
1271
|
*/
|
|
1272
|
-
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[];
|
|
1272
|
+
autoEnableNewAccount?: DataLakeAutoEnableNewAccountConfiguration[] | undefined;
|
|
1273
1273
|
}
|
|
1274
1274
|
/**
|
|
1275
1275
|
* @public
|
|
@@ -1279,13 +1279,13 @@ export interface GetDataLakeSourcesRequest {
|
|
|
1279
1279
|
* <p>The Amazon Web Services account ID for which a static snapshot of the current Amazon Web Services Region, including enabled accounts and log sources, is retrieved.</p>
|
|
1280
1280
|
* @public
|
|
1281
1281
|
*/
|
|
1282
|
-
accounts?: string[];
|
|
1282
|
+
accounts?: string[] | undefined;
|
|
1283
1283
|
/**
|
|
1284
1284
|
* <p>The maximum limit of accounts for which the static snapshot of the current Region,
|
|
1285
1285
|
* including enabled accounts and log sources, is retrieved.</p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
maxResults?: number;
|
|
1288
|
+
maxResults?: number | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>Lists if there are more results available. The value of nextToken is a unique pagination
|
|
1291
1291
|
* token for each page. Repeat the call using the returned token to retrieve the next page.
|
|
@@ -1294,7 +1294,7 @@ export interface GetDataLakeSourcesRequest {
|
|
|
1294
1294
|
* return an HTTP 400 InvalidToken error.</p>
|
|
1295
1295
|
* @public
|
|
1296
1296
|
*/
|
|
1297
|
-
nextToken?: string;
|
|
1297
|
+
nextToken?: string | undefined;
|
|
1298
1298
|
}
|
|
1299
1299
|
/**
|
|
1300
1300
|
* @public
|
|
@@ -1319,12 +1319,12 @@ export interface DataLakeSourceStatus {
|
|
|
1319
1319
|
* applications, and services.</p>
|
|
1320
1320
|
* @public
|
|
1321
1321
|
*/
|
|
1322
|
-
resource?: string;
|
|
1322
|
+
resource?: string | undefined;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* <p>The health status of services, including error codes and patterns.</p>
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
status?: SourceCollectionStatus;
|
|
1327
|
+
status?: SourceCollectionStatus | undefined;
|
|
1328
1328
|
}
|
|
1329
1329
|
/**
|
|
1330
1330
|
* <p>Amazon Security Lake collects logs and events from supported Amazon Web Services services and
|
|
@@ -1336,13 +1336,13 @@ export interface DataLakeSource {
|
|
|
1336
1336
|
* <p>The ID of the Security Lake account for which logs are collected.</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
account?: string;
|
|
1339
|
+
account?: string | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>The supported Amazon Web Services services from which logs and events are collected.
|
|
1342
1342
|
* Amazon Security Lake supports log and event collection for natively supported Amazon Web Services services.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
sourceName?: string;
|
|
1345
|
+
sourceName?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of
|
|
1348
1348
|
* data that the custom source will send to Security Lake. The supported event classes are:</p>
|
|
@@ -1495,12 +1495,12 @@ export interface DataLakeSource {
|
|
|
1495
1495
|
* </ul>
|
|
1496
1496
|
* @public
|
|
1497
1497
|
*/
|
|
1498
|
-
eventClasses?: string[];
|
|
1498
|
+
eventClasses?: string[] | undefined;
|
|
1499
1499
|
/**
|
|
1500
1500
|
* <p>The log status for the Security Lake account.</p>
|
|
1501
1501
|
* @public
|
|
1502
1502
|
*/
|
|
1503
|
-
sourceStatuses?: DataLakeSourceStatus[];
|
|
1503
|
+
sourceStatuses?: DataLakeSourceStatus[] | undefined;
|
|
1504
1504
|
}
|
|
1505
1505
|
/**
|
|
1506
1506
|
* @public
|
|
@@ -1510,12 +1510,12 @@ export interface GetDataLakeSourcesResponse {
|
|
|
1510
1510
|
* <p>The Amazon Resource Name (ARN) created by you to provide to the subscriber. For more information about ARNs and how to use them in policies, see the <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/subscriber-management.html">Amazon Security Lake User Guide</a>.</p>
|
|
1511
1511
|
* @public
|
|
1512
1512
|
*/
|
|
1513
|
-
dataLakeArn?: string;
|
|
1513
|
+
dataLakeArn?: string | undefined;
|
|
1514
1514
|
/**
|
|
1515
1515
|
* <p>The list of enabled accounts and enabled sources.</p>
|
|
1516
1516
|
* @public
|
|
1517
1517
|
*/
|
|
1518
|
-
dataLakeSources?: DataLakeSource[];
|
|
1518
|
+
dataLakeSources?: DataLakeSource[] | undefined;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* <p>Lists if there are more results available. The value of nextToken is a unique pagination
|
|
1521
1521
|
* token for each page. Repeat the call using the returned token to retrieve the next page.
|
|
@@ -1524,7 +1524,7 @@ export interface GetDataLakeSourcesResponse {
|
|
|
1524
1524
|
* return an HTTP 400 InvalidToken error.</p>
|
|
1525
1525
|
* @public
|
|
1526
1526
|
*/
|
|
1527
|
-
nextToken?: string;
|
|
1527
|
+
nextToken?: string | undefined;
|
|
1528
1528
|
}
|
|
1529
1529
|
/**
|
|
1530
1530
|
* @public
|
|
@@ -1534,7 +1534,7 @@ export interface ListDataLakesRequest {
|
|
|
1534
1534
|
* <p>The list of Regions where Security Lake is enabled.</p>
|
|
1535
1535
|
* @public
|
|
1536
1536
|
*/
|
|
1537
|
-
regions?: string[];
|
|
1537
|
+
regions?: string[] | undefined;
|
|
1538
1538
|
}
|
|
1539
1539
|
/**
|
|
1540
1540
|
* @public
|
|
@@ -1544,7 +1544,7 @@ export interface ListDataLakesResponse {
|
|
|
1544
1544
|
* <p>Retrieves the Security Lake configuration object.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
dataLakes?: DataLakeResource[];
|
|
1547
|
+
dataLakes?: DataLakeResource[] | undefined;
|
|
1548
1548
|
}
|
|
1549
1549
|
/**
|
|
1550
1550
|
* @public
|
|
@@ -1554,28 +1554,28 @@ export interface ListLogSourcesRequest {
|
|
|
1554
1554
|
* <p>The list of Amazon Web Services accounts for which log sources are displayed.</p>
|
|
1555
1555
|
* @public
|
|
1556
1556
|
*/
|
|
1557
|
-
accounts?: string[];
|
|
1557
|
+
accounts?: string[] | undefined;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* <p>The list of Regions for which log sources are displayed.</p>
|
|
1560
1560
|
* @public
|
|
1561
1561
|
*/
|
|
1562
|
-
regions?: string[];
|
|
1562
|
+
regions?: string[] | undefined;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* <p>The list of sources for which log sources are displayed.</p>
|
|
1565
1565
|
* @public
|
|
1566
1566
|
*/
|
|
1567
|
-
sources?: LogSourceResource[];
|
|
1567
|
+
sources?: LogSourceResource[] | undefined;
|
|
1568
1568
|
/**
|
|
1569
1569
|
* <p>The maximum number of accounts for which the log sources are displayed.</p>
|
|
1570
1570
|
* @public
|
|
1571
1571
|
*/
|
|
1572
|
-
maxResults?: number;
|
|
1572
|
+
maxResults?: number | undefined;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* <p>If nextToken is returned, there are more results available. You can repeat the call
|
|
1575
1575
|
* using the returned token to retrieve the next page.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
nextToken?: string;
|
|
1578
|
+
nextToken?: string | undefined;
|
|
1579
1579
|
}
|
|
1580
1580
|
/**
|
|
1581
1581
|
* <p>Amazon Security Lake can collect logs and events from natively-supported Amazon Web Services services and custom sources. </p>
|
|
@@ -1586,17 +1586,17 @@ export interface LogSource {
|
|
|
1586
1586
|
* <p>Specify the account from which you want to collect logs.</p>
|
|
1587
1587
|
* @public
|
|
1588
1588
|
*/
|
|
1589
|
-
account?: string;
|
|
1589
|
+
account?: string | undefined;
|
|
1590
1590
|
/**
|
|
1591
1591
|
* <p>Specify the Regions from which you want to collect logs.</p>
|
|
1592
1592
|
* @public
|
|
1593
1593
|
*/
|
|
1594
|
-
region?: string;
|
|
1594
|
+
region?: string | undefined;
|
|
1595
1595
|
/**
|
|
1596
1596
|
* <p>Specify the sources from which you want to collect logs.</p>
|
|
1597
1597
|
* @public
|
|
1598
1598
|
*/
|
|
1599
|
-
sources?: LogSourceResource[];
|
|
1599
|
+
sources?: LogSourceResource[] | undefined;
|
|
1600
1600
|
}
|
|
1601
1601
|
/**
|
|
1602
1602
|
* @public
|
|
@@ -1606,13 +1606,13 @@ export interface ListLogSourcesResponse {
|
|
|
1606
1606
|
* <p>The list of log sources in your organization that send data to the data lake.</p>
|
|
1607
1607
|
* @public
|
|
1608
1608
|
*/
|
|
1609
|
-
sources?: LogSource[];
|
|
1609
|
+
sources?: LogSource[] | undefined;
|
|
1610
1610
|
/**
|
|
1611
1611
|
* <p>If nextToken is returned, there are more results available. You can repeat the call
|
|
1612
1612
|
* using the returned token to retrieve the next page.</p>
|
|
1613
1613
|
* @public
|
|
1614
1614
|
*/
|
|
1615
|
-
nextToken?: string;
|
|
1615
|
+
nextToken?: string | undefined;
|
|
1616
1616
|
}
|
|
1617
1617
|
/**
|
|
1618
1618
|
* @public
|
|
@@ -1629,7 +1629,7 @@ export interface UpdateDataLakeRequest {
|
|
|
1629
1629
|
* Amazon Web Services log sources and custom sources.</p>
|
|
1630
1630
|
* @public
|
|
1631
1631
|
*/
|
|
1632
|
-
metaStoreManagerRoleArn?: string;
|
|
1632
|
+
metaStoreManagerRoleArn?: string | undefined;
|
|
1633
1633
|
}
|
|
1634
1634
|
/**
|
|
1635
1635
|
* @public
|
|
@@ -1639,7 +1639,7 @@ export interface UpdateDataLakeResponse {
|
|
|
1639
1639
|
* <p>The created Security Lake configuration object.</p>
|
|
1640
1640
|
* @public
|
|
1641
1641
|
*/
|
|
1642
|
-
dataLakes?: DataLakeResource[];
|
|
1642
|
+
dataLakes?: DataLakeResource[] | undefined;
|
|
1643
1643
|
}
|
|
1644
1644
|
/**
|
|
1645
1645
|
* <p>The details for an Amazon Security Lake exception.</p>
|
|
@@ -1650,22 +1650,22 @@ export interface DataLakeException {
|
|
|
1650
1650
|
* <p>The Amazon Web Services Regions where the exception occurred.</p>
|
|
1651
1651
|
* @public
|
|
1652
1652
|
*/
|
|
1653
|
-
region?: string;
|
|
1653
|
+
region?: string | undefined;
|
|
1654
1654
|
/**
|
|
1655
1655
|
* <p>The underlying exception of a Security Lake exception.</p>
|
|
1656
1656
|
* @public
|
|
1657
1657
|
*/
|
|
1658
|
-
exception?: string;
|
|
1658
|
+
exception?: string | undefined;
|
|
1659
1659
|
/**
|
|
1660
1660
|
* <p>List of all remediation steps for a Security Lake exception.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
remediation?: string;
|
|
1663
|
+
remediation?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>This error can occur if you configure the wrong timestamp format, or if the subset of entries used for validation had errors or missing values.</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
timestamp?: Date;
|
|
1668
|
+
timestamp?: Date | undefined;
|
|
1669
1669
|
}
|
|
1670
1670
|
/**
|
|
1671
1671
|
* @public
|
|
@@ -1730,17 +1730,17 @@ export interface GetDataLakeExceptionSubscriptionResponse {
|
|
|
1730
1730
|
* <p>The subscription protocol to which exception notifications are posted.</p>
|
|
1731
1731
|
* @public
|
|
1732
1732
|
*/
|
|
1733
|
-
subscriptionProtocol?: string;
|
|
1733
|
+
subscriptionProtocol?: string | undefined;
|
|
1734
1734
|
/**
|
|
1735
1735
|
* <p>The Amazon Web Services account where you receive exception notifications.</p>
|
|
1736
1736
|
* @public
|
|
1737
1737
|
*/
|
|
1738
|
-
notificationEndpoint?: string;
|
|
1738
|
+
notificationEndpoint?: string | undefined;
|
|
1739
1739
|
/**
|
|
1740
1740
|
* <p>The expiration period and time-to-live (TTL). It is the duration of time until which the exception message remains.</p>
|
|
1741
1741
|
* @public
|
|
1742
1742
|
*/
|
|
1743
|
-
exceptionTimeToLive?: number;
|
|
1743
|
+
exceptionTimeToLive?: number | undefined;
|
|
1744
1744
|
}
|
|
1745
1745
|
/**
|
|
1746
1746
|
* @public
|
|
@@ -1761,7 +1761,7 @@ export interface GetSubscriberResponse {
|
|
|
1761
1761
|
* <p>The subscriber information for the specified subscriber ID.</p>
|
|
1762
1762
|
* @public
|
|
1763
1763
|
*/
|
|
1764
|
-
subscriber?: SubscriberResource;
|
|
1764
|
+
subscriber?: SubscriberResource | undefined;
|
|
1765
1765
|
}
|
|
1766
1766
|
/**
|
|
1767
1767
|
* @public
|
|
@@ -1771,12 +1771,12 @@ export interface ListDataLakeExceptionsRequest {
|
|
|
1771
1771
|
* <p>The Amazon Web Services Regions from which exceptions are retrieved.</p>
|
|
1772
1772
|
* @public
|
|
1773
1773
|
*/
|
|
1774
|
-
regions?: string[];
|
|
1774
|
+
regions?: string[] | undefined;
|
|
1775
1775
|
/**
|
|
1776
1776
|
* <p>Lists the maximum number of failures in Security Lake.</p>
|
|
1777
1777
|
* @public
|
|
1778
1778
|
*/
|
|
1779
|
-
maxResults?: number;
|
|
1779
|
+
maxResults?: number | undefined;
|
|
1780
1780
|
/**
|
|
1781
1781
|
* <p>Lists if there are more results available. The value of nextToken is a unique pagination
|
|
1782
1782
|
* token for each page. Repeat the call using the returned token to retrieve the next page.
|
|
@@ -1785,7 +1785,7 @@ export interface ListDataLakeExceptionsRequest {
|
|
|
1785
1785
|
* return an HTTP 400 InvalidToken error.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
nextToken?: string;
|
|
1788
|
+
nextToken?: string | undefined;
|
|
1789
1789
|
}
|
|
1790
1790
|
/**
|
|
1791
1791
|
* @public
|
|
@@ -1795,7 +1795,7 @@ export interface ListDataLakeExceptionsResponse {
|
|
|
1795
1795
|
* <p>Lists the failures that cannot be retried.</p>
|
|
1796
1796
|
* @public
|
|
1797
1797
|
*/
|
|
1798
|
-
exceptions?: DataLakeException[];
|
|
1798
|
+
exceptions?: DataLakeException[] | undefined;
|
|
1799
1799
|
/**
|
|
1800
1800
|
* <p>Lists if there are more results available. The value of nextToken is a unique pagination
|
|
1801
1801
|
* token for each page. Repeat the call using the returned token to retrieve the next page.
|
|
@@ -1804,7 +1804,7 @@ export interface ListDataLakeExceptionsResponse {
|
|
|
1804
1804
|
* return an HTTP 400 InvalidToken error.</p>
|
|
1805
1805
|
* @public
|
|
1806
1806
|
*/
|
|
1807
|
-
nextToken?: string;
|
|
1807
|
+
nextToken?: string | undefined;
|
|
1808
1808
|
}
|
|
1809
1809
|
/**
|
|
1810
1810
|
* @public
|
|
@@ -1815,12 +1815,12 @@ export interface ListSubscribersRequest {
|
|
|
1815
1815
|
* using the returned token to retrieve the next page.</p>
|
|
1816
1816
|
* @public
|
|
1817
1817
|
*/
|
|
1818
|
-
nextToken?: string;
|
|
1818
|
+
nextToken?: string | undefined;
|
|
1819
1819
|
/**
|
|
1820
1820
|
* <p>The maximum number of accounts for which the configuration is displayed.</p>
|
|
1821
1821
|
* @public
|
|
1822
1822
|
*/
|
|
1823
|
-
maxResults?: number;
|
|
1823
|
+
maxResults?: number | undefined;
|
|
1824
1824
|
}
|
|
1825
1825
|
/**
|
|
1826
1826
|
* @public
|
|
@@ -1830,13 +1830,13 @@ export interface ListSubscribersResponse {
|
|
|
1830
1830
|
* <p>The subscribers available for the specified Security Lake account ID.</p>
|
|
1831
1831
|
* @public
|
|
1832
1832
|
*/
|
|
1833
|
-
subscribers?: SubscriberResource[];
|
|
1833
|
+
subscribers?: SubscriberResource[] | undefined;
|
|
1834
1834
|
/**
|
|
1835
1835
|
* <p>If nextToken is returned, there are more results available. You can repeat the call
|
|
1836
1836
|
* using the returned token to retrieve the next page.</p>
|
|
1837
1837
|
* @public
|
|
1838
1838
|
*/
|
|
1839
|
-
nextToken?: string;
|
|
1839
|
+
nextToken?: string | undefined;
|
|
1840
1840
|
}
|
|
1841
1841
|
/**
|
|
1842
1842
|
* @public
|
|
@@ -1856,7 +1856,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1856
1856
|
* <p>An array of objects, one for each tag (key and value) that’s associated with the Amazon Security Lake resource.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
tags?: Tag[];
|
|
1859
|
+
tags?: Tag[] | undefined;
|
|
1860
1860
|
}
|
|
1861
1861
|
/**
|
|
1862
1862
|
* @public
|
|
@@ -1886,23 +1886,23 @@ export interface UpdateSubscriberRequest {
|
|
|
1886
1886
|
* <p>The Amazon Web Services identity used to access your data.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
subscriberIdentity?: AwsIdentity;
|
|
1889
|
+
subscriberIdentity?: AwsIdentity | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>The name of the Security Lake account subscriber.</p>
|
|
1892
1892
|
* @public
|
|
1893
1893
|
*/
|
|
1894
|
-
subscriberName?: string;
|
|
1894
|
+
subscriberName?: string | undefined;
|
|
1895
1895
|
/**
|
|
1896
1896
|
* <p>The description of the Security Lake account subscriber.</p>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
subscriberDescription?: string;
|
|
1899
|
+
subscriberDescription?: string | undefined;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* <p>The supported Amazon Web Services services from which logs and events are collected. For
|
|
1902
1902
|
* the list of supported Amazon Web Services services, see the <a href="https://docs.aws.amazon.com/security-lake/latest/userguide/internal-sources.html">Amazon Security Lake User Guide</a>.</p>
|
|
1903
1903
|
* @public
|
|
1904
1904
|
*/
|
|
1905
|
-
sources?: LogSourceResource[];
|
|
1905
|
+
sources?: LogSourceResource[] | undefined;
|
|
1906
1906
|
}
|
|
1907
1907
|
/**
|
|
1908
1908
|
* @public
|
|
@@ -1912,7 +1912,7 @@ export interface UpdateSubscriberResponse {
|
|
|
1912
1912
|
* <p>The updated subscriber information.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
subscriber?: SubscriberResource;
|
|
1915
|
+
subscriber?: SubscriberResource | undefined;
|
|
1916
1916
|
}
|
|
1917
1917
|
/**
|
|
1918
1918
|
* @public
|
|
@@ -1937,7 +1937,7 @@ export interface UpdateSubscriberNotificationResponse {
|
|
|
1937
1937
|
* <p>The subscriber endpoint to which exception messages are posted.</p>
|
|
1938
1938
|
* @public
|
|
1939
1939
|
*/
|
|
1940
|
-
subscriberEndpoint?: string;
|
|
1940
|
+
subscriberEndpoint?: string | undefined;
|
|
1941
1941
|
}
|
|
1942
1942
|
/**
|
|
1943
1943
|
* @public
|
|
@@ -1998,7 +1998,7 @@ export interface UpdateDataLakeExceptionSubscriptionRequest {
|
|
|
1998
1998
|
* <p>The time-to-live (TTL) for the exception message to remain. It is the duration of time until which the exception message remains. </p>
|
|
1999
1999
|
* @public
|
|
2000
2000
|
*/
|
|
2001
|
-
exceptionTimeToLive?: number;
|
|
2001
|
+
exceptionTimeToLive?: number | undefined;
|
|
2002
2002
|
}
|
|
2003
2003
|
/**
|
|
2004
2004
|
* @public
|