@aws-sdk/client-securitylake 3.289.0 → 3.290.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.
Files changed (31) hide show
  1. package/dist-types/commands/CreateAwsLogSourceCommand.d.ts +28 -0
  2. package/dist-types/commands/CreateCustomLogSourceCommand.d.ts +29 -0
  3. package/dist-types/commands/CreateDatalakeAutoEnableCommand.d.ts +19 -0
  4. package/dist-types/commands/CreateDatalakeCommand.d.ts +30 -0
  5. package/dist-types/commands/CreateDatalakeDelegatedAdminCommand.d.ts +17 -0
  6. package/dist-types/commands/CreateDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  7. package/dist-types/commands/CreateSubscriberCommand.d.ts +33 -0
  8. package/dist-types/commands/CreateSubscriptionNotificationConfigurationCommand.d.ts +29 -0
  9. package/dist-types/commands/DeleteAwsLogSourceCommand.d.ts +19 -0
  10. package/dist-types/commands/DeleteCustomLogSourceCommand.d.ts +29 -0
  11. package/dist-types/commands/DeleteDatalakeAutoEnableCommand.d.ts +19 -0
  12. package/dist-types/commands/DeleteDatalakeCommand.d.ts +30 -0
  13. package/dist-types/commands/DeleteDatalakeDelegatedAdminCommand.d.ts +17 -0
  14. package/dist-types/commands/DeleteDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  15. package/dist-types/commands/DeleteSubscriberCommand.d.ts +33 -0
  16. package/dist-types/commands/DeleteSubscriptionNotificationConfigurationCommand.d.ts +29 -0
  17. package/dist-types/commands/GetDatalakeAutoEnableCommand.d.ts +19 -0
  18. package/dist-types/commands/GetDatalakeCommand.d.ts +22 -0
  19. package/dist-types/commands/GetDatalakeExceptionsExpiryCommand.d.ts +19 -0
  20. package/dist-types/commands/GetDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  21. package/dist-types/commands/GetDatalakeStatusCommand.d.ts +19 -0
  22. package/dist-types/commands/GetSubscriberCommand.d.ts +23 -0
  23. package/dist-types/commands/ListDatalakeExceptionsCommand.d.ts +19 -0
  24. package/dist-types/commands/ListLogSourcesCommand.d.ts +22 -0
  25. package/dist-types/commands/ListSubscribersCommand.d.ts +26 -0
  26. package/dist-types/commands/UpdateDatalakeCommand.d.ts +20 -0
  27. package/dist-types/commands/UpdateDatalakeExceptionsExpiryCommand.d.ts +19 -0
  28. package/dist-types/commands/UpdateDatalakeExceptionsSubscriptionCommand.d.ts +19 -0
  29. package/dist-types/commands/UpdateSubscriberCommand.d.ts +29 -0
  30. package/dist-types/commands/UpdateSubscriptionNotificationConfigurationCommand.d.ts +29 -0
  31. package/package.json +29 -29
@@ -43,6 +43,34 @@ export interface CreateAwsLogSourceCommandOutput extends CreateAwsLogSourceRespo
43
43
  * @see {@link CreateAwsLogSourceCommandOutput} for command's `response` shape.
44
44
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
45
45
  *
46
+ * @throws {@link AccessDeniedException} (client fault)
47
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
48
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
49
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
50
+ * no applicable Allow statement.</p>
51
+ *
52
+ * @throws {@link AccountNotFoundException} (client fault)
53
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
54
+ * specified, or the account whose credentials you used to make this request isn't a member of
55
+ * an organization.</p>
56
+ *
57
+ * @throws {@link InternalServerException} (server fault)
58
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
59
+ * troubleshooting, perform the operation again. </p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>The resource could not be found.</p>
63
+ *
64
+ * @throws {@link S3Exception} (client fault)
65
+ * <p>Provides an extension of the AmazonServiceException for errors reported by Amazon S3 while processing a request. In particular, this class provides access to the
66
+ * Amazon S3 extended request ID. If Amazon S3 is incorrectly handling a
67
+ * request and you need to contact Amazon, this extended request ID may provide useful
68
+ * debugging information. </p>
69
+ *
70
+ * @throws {@link ValidationException} (client fault)
71
+ * <p>Your signing certificate could not be validated. </p>
72
+ *
73
+ *
46
74
  */
47
75
  export declare class CreateAwsLogSourceCommand extends $Command<CreateAwsLogSourceCommandInput, CreateAwsLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
48
76
  readonly input: CreateAwsLogSourceCommandInput;
@@ -34,6 +34,35 @@ export interface CreateCustomLogSourceCommandOutput extends CreateCustomLogSourc
34
34
  * @see {@link CreateCustomLogSourceCommandOutput} for command's `response` shape.
35
35
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
36
36
  *
37
+ * @throws {@link AccessDeniedException} (client fault)
38
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
39
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
40
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
41
+ * no applicable Allow statement.</p>
42
+ *
43
+ * @throws {@link AccountNotFoundException} (client fault)
44
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
45
+ * specified, or the account whose credentials you used to make this request isn't a member of
46
+ * an organization.</p>
47
+ *
48
+ * @throws {@link BucketNotFoundException} (client fault)
49
+ * <p>Amazon Security Lake generally returns 404 errors if the requested object is missing from the
50
+ * bucket.</p>
51
+ *
52
+ * @throws {@link ConflictSourceNamesException} (client fault)
53
+ * <p>There was a conflict when you attempted to modify a Security Lake source name. </p>
54
+ *
55
+ * @throws {@link InternalServerException} (server fault)
56
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
57
+ * troubleshooting, perform the operation again. </p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>The resource could not be found.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p>Your signing certificate could not be validated. </p>
64
+ *
65
+ *
37
66
  */
38
67
  export declare class CreateCustomLogSourceCommand extends $Command<CreateCustomLogSourceCommandInput, CreateCustomLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
39
68
  readonly input: CreateCustomLogSourceCommandInput;
@@ -31,6 +31,25 @@ export interface CreateDatalakeAutoEnableCommandOutput extends CreateDatalakeAut
31
31
  * @see {@link CreateDatalakeAutoEnableCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link AccountNotFoundException} (client fault)
41
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
42
+ * specified, or the account whose credentials you used to make this request isn't a member of
43
+ * an organization.</p>
44
+ *
45
+ * @throws {@link InternalServerException} (server fault)
46
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
47
+ * troubleshooting, perform the operation again. </p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>Your signing certificate could not be validated. </p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class CreateDatalakeAutoEnableCommand extends $Command<CreateDatalakeAutoEnableCommandInput, CreateDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
36
55
  readonly input: CreateDatalakeAutoEnableCommandInput;
@@ -44,6 +44,36 @@ export interface CreateDatalakeCommandOutput extends CreateDatalakeResponse, __M
44
44
  * @see {@link CreateDatalakeCommandOutput} for command's `response` shape.
45
45
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
46
46
  *
47
+ * @throws {@link AccessDeniedException} (client fault)
48
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
49
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
50
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
51
+ * no applicable Allow statement.</p>
52
+ *
53
+ * @throws {@link ConflictException} (client fault)
54
+ * <p>Occurs when a conflict with a previous successful write is detected. This generally
55
+ * occurs when the previous write did not have time to propagate to the host serving the
56
+ * current request. A retry (with appropriate backoff logic) is the recommended response to
57
+ * this exception.</p>
58
+ *
59
+ * @throws {@link InternalServerException} (server fault)
60
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
61
+ * troubleshooting, perform the operation again. </p>
62
+ *
63
+ * @throws {@link ResourceNotFoundException} (client fault)
64
+ * <p>The resource could not be found.</p>
65
+ *
66
+ * @throws {@link ServiceQuotaExceededException} (client fault)
67
+ * <p>You have exceeded your service quota. To perform the requested action, remove some of
68
+ * the relevant resources, or use Service Quotas to request a service quota increase. </p>
69
+ *
70
+ * @throws {@link ThrottlingException} (client fault)
71
+ * <p>The limit on the number of requests per second was exceeded. </p>
72
+ *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>Your signing certificate could not be validated. </p>
75
+ *
76
+ *
47
77
  */
48
78
  export declare class CreateDatalakeCommand extends $Command<CreateDatalakeCommandInput, CreateDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
49
79
  readonly input: CreateDatalakeCommandInput;
@@ -31,6 +31,23 @@ export interface CreateDatalakeDelegatedAdminCommandOutput extends CreateDatalak
31
31
  * @see {@link CreateDatalakeDelegatedAdminCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
42
+ * troubleshooting, perform the operation again. </p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>The limit on the number of requests per second was exceeded. </p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>Your signing certificate could not be validated. </p>
49
+ *
50
+ *
34
51
  */
35
52
  export declare class CreateDatalakeDelegatedAdminCommand extends $Command<CreateDatalakeDelegatedAdminCommandInput, CreateDatalakeDelegatedAdminCommandOutput, SecurityLakeClientResolvedConfig> {
36
53
  readonly input: CreateDatalakeDelegatedAdminCommandInput;
@@ -30,6 +30,25 @@ export interface CreateDatalakeExceptionsSubscriptionCommandOutput extends Creat
30
30
  * @see {@link CreateDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>Your signing certificate could not be validated. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class CreateDatalakeExceptionsSubscriptionCommand extends $Command<CreateDatalakeExceptionsSubscriptionCommandInput, CreateDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
35
54
  readonly input: CreateDatalakeExceptionsSubscriptionCommandInput;
@@ -30,6 +30,39 @@ export interface CreateSubscriberCommandOutput extends CreateSubscriberResponse,
30
30
  * @see {@link CreateSubscriberCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link BucketNotFoundException} (client fault)
45
+ * <p>Amazon Security Lake generally returns 404 errors if the requested object is missing from the
46
+ * bucket.</p>
47
+ *
48
+ * @throws {@link ConflictSubscriptionException} (client fault)
49
+ * <p>A conflicting subscription exception operation is in progress. </p>
50
+ *
51
+ * @throws {@link InternalServerException} (server fault)
52
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
53
+ * troubleshooting, perform the operation again. </p>
54
+ *
55
+ * @throws {@link InvalidInputException} (client fault)
56
+ * <p>The request was rejected because a value that's not valid or is out of range was
57
+ * supplied for an input parameter. </p>
58
+ *
59
+ * @throws {@link ResourceNotFoundException} (client fault)
60
+ * <p>The resource could not be found.</p>
61
+ *
62
+ * @throws {@link ValidationException} (client fault)
63
+ * <p>Your signing certificate could not be validated. </p>
64
+ *
65
+ *
33
66
  */
34
67
  export declare class CreateSubscriberCommand extends $Command<CreateSubscriberCommandInput, CreateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
35
68
  readonly input: CreateSubscriberCommandInput;
@@ -30,6 +30,35 @@ export interface CreateSubscriptionNotificationConfigurationCommandOutput extend
30
30
  * @see {@link CreateSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link ConcurrentModificationException} (client fault)
45
+ * <p>More than one process tried to modify a resource at the same time. </p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
49
+ * troubleshooting, perform the operation again. </p>
50
+ *
51
+ * @throws {@link InvalidInputException} (client fault)
52
+ * <p>The request was rejected because a value that's not valid or is out of range was
53
+ * supplied for an input parameter. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource could not be found.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>Your signing certificate could not be validated. </p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class CreateSubscriptionNotificationConfigurationCommand extends $Command<CreateSubscriptionNotificationConfigurationCommandInput, CreateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
35
64
  readonly input: CreateSubscriptionNotificationConfigurationCommandInput;
@@ -43,6 +43,25 @@ export interface DeleteAwsLogSourceCommandOutput extends DeleteAwsLogSourceRespo
43
43
  * @see {@link DeleteAwsLogSourceCommandOutput} for command's `response` shape.
44
44
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
45
45
  *
46
+ * @throws {@link AccessDeniedException} (client fault)
47
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
48
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
49
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
50
+ * no applicable Allow statement.</p>
51
+ *
52
+ * @throws {@link AccountNotFoundException} (client fault)
53
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
54
+ * specified, or the account whose credentials you used to make this request isn't a member of
55
+ * an organization.</p>
56
+ *
57
+ * @throws {@link InternalServerException} (server fault)
58
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
59
+ * troubleshooting, perform the operation again. </p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>Your signing certificate could not be validated. </p>
63
+ *
64
+ *
46
65
  */
47
66
  export declare class DeleteAwsLogSourceCommand extends $Command<DeleteAwsLogSourceCommandInput, DeleteAwsLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
48
67
  readonly input: DeleteAwsLogSourceCommandInput;
@@ -29,6 +29,35 @@ export interface DeleteCustomLogSourceCommandOutput extends DeleteCustomLogSourc
29
29
  * @see {@link DeleteCustomLogSourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
34
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
35
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
36
+ * no applicable Allow statement.</p>
37
+ *
38
+ * @throws {@link AccountNotFoundException} (client fault)
39
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
40
+ * specified, or the account whose credentials you used to make this request isn't a member of
41
+ * an organization.</p>
42
+ *
43
+ * @throws {@link BucketNotFoundException} (client fault)
44
+ * <p>Amazon Security Lake generally returns 404 errors if the requested object is missing from the
45
+ * bucket.</p>
46
+ *
47
+ * @throws {@link ConflictSourceNamesException} (client fault)
48
+ * <p>There was a conflict when you attempted to modify a Security Lake source name. </p>
49
+ *
50
+ * @throws {@link InternalServerException} (server fault)
51
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
52
+ * troubleshooting, perform the operation again. </p>
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The resource could not be found.</p>
56
+ *
57
+ * @throws {@link ValidationException} (client fault)
58
+ * <p>Your signing certificate could not be validated. </p>
59
+ *
60
+ *
32
61
  */
33
62
  export declare class DeleteCustomLogSourceCommand extends $Command<DeleteCustomLogSourceCommandInput, DeleteCustomLogSourceCommandOutput, SecurityLakeClientResolvedConfig> {
34
63
  readonly input: DeleteCustomLogSourceCommandInput;
@@ -37,6 +37,25 @@ export interface DeleteDatalakeAutoEnableCommandOutput extends DeleteDatalakeAut
37
37
  * @see {@link DeleteDatalakeAutoEnableCommandOutput} for command's `response` shape.
38
38
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
39
39
  *
40
+ * @throws {@link AccessDeniedException} (client fault)
41
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
42
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
43
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
44
+ * no applicable Allow statement.</p>
45
+ *
46
+ * @throws {@link AccountNotFoundException} (client fault)
47
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
48
+ * specified, or the account whose credentials you used to make this request isn't a member of
49
+ * an organization.</p>
50
+ *
51
+ * @throws {@link InternalServerException} (server fault)
52
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
53
+ * troubleshooting, perform the operation again. </p>
54
+ *
55
+ * @throws {@link ValidationException} (client fault)
56
+ * <p>Your signing certificate could not be validated. </p>
57
+ *
58
+ *
40
59
  */
41
60
  export declare class DeleteDatalakeAutoEnableCommand extends $Command<DeleteDatalakeAutoEnableCommandInput, DeleteDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
42
61
  readonly input: DeleteDatalakeAutoEnableCommandInput;
@@ -36,6 +36,36 @@ export interface DeleteDatalakeCommandOutput extends DeleteDatalakeResponse, __M
36
36
  * @see {@link DeleteDatalakeCommandOutput} for command's `response` shape.
37
37
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
38
38
  *
39
+ * @throws {@link AccessDeniedException} (client fault)
40
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
41
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
42
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
43
+ * no applicable Allow statement.</p>
44
+ *
45
+ * @throws {@link ConflictException} (client fault)
46
+ * <p>Occurs when a conflict with a previous successful write is detected. This generally
47
+ * occurs when the previous write did not have time to propagate to the host serving the
48
+ * current request. A retry (with appropriate backoff logic) is the recommended response to
49
+ * this exception.</p>
50
+ *
51
+ * @throws {@link InternalServerException} (server fault)
52
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
53
+ * troubleshooting, perform the operation again. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource could not be found.</p>
57
+ *
58
+ * @throws {@link ServiceQuotaExceededException} (client fault)
59
+ * <p>You have exceeded your service quota. To perform the requested action, remove some of
60
+ * the relevant resources, or use Service Quotas to request a service quota increase. </p>
61
+ *
62
+ * @throws {@link ThrottlingException} (client fault)
63
+ * <p>The limit on the number of requests per second was exceeded. </p>
64
+ *
65
+ * @throws {@link ValidationException} (client fault)
66
+ * <p>Your signing certificate could not be validated. </p>
67
+ *
68
+ *
39
69
  */
40
70
  export declare class DeleteDatalakeCommand extends $Command<DeleteDatalakeCommandInput, DeleteDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
41
71
  readonly input: DeleteDatalakeCommandInput;
@@ -31,6 +31,23 @@ export interface DeleteDatalakeDelegatedAdminCommandOutput extends DeleteDatalak
31
31
  * @see {@link DeleteDatalakeDelegatedAdminCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
42
+ * troubleshooting, perform the operation again. </p>
43
+ *
44
+ * @throws {@link ThrottlingException} (client fault)
45
+ * <p>The limit on the number of requests per second was exceeded. </p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>Your signing certificate could not be validated. </p>
49
+ *
50
+ *
34
51
  */
35
52
  export declare class DeleteDatalakeDelegatedAdminCommand extends $Command<DeleteDatalakeDelegatedAdminCommandInput, DeleteDatalakeDelegatedAdminCommandOutput, SecurityLakeClientResolvedConfig> {
36
53
  readonly input: DeleteDatalakeDelegatedAdminCommandInput;
@@ -30,6 +30,25 @@ export interface DeleteDatalakeExceptionsSubscriptionCommandOutput extends Delet
30
30
  * @see {@link DeleteDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>Your signing certificate could not be validated. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class DeleteDatalakeExceptionsSubscriptionCommand extends $Command<DeleteDatalakeExceptionsSubscriptionCommandInput, DeleteDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
35
54
  readonly input: DeleteDatalakeExceptionsSubscriptionCommandInput;
@@ -31,6 +31,39 @@ export interface DeleteSubscriberCommandOutput extends DeleteSubscriberResponse,
31
31
  * @see {@link DeleteSubscriberCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link AccountNotFoundException} (client fault)
41
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
42
+ * specified, or the account whose credentials you used to make this request isn't a member of
43
+ * an organization.</p>
44
+ *
45
+ * @throws {@link BucketNotFoundException} (client fault)
46
+ * <p>Amazon Security Lake generally returns 404 errors if the requested object is missing from the
47
+ * bucket.</p>
48
+ *
49
+ * @throws {@link ConcurrentModificationException} (client fault)
50
+ * <p>More than one process tried to modify a resource at the same time. </p>
51
+ *
52
+ * @throws {@link InternalServerException} (server fault)
53
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
54
+ * troubleshooting, perform the operation again. </p>
55
+ *
56
+ * @throws {@link InvalidInputException} (client fault)
57
+ * <p>The request was rejected because a value that's not valid or is out of range was
58
+ * supplied for an input parameter. </p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>The resource could not be found.</p>
62
+ *
63
+ * @throws {@link ValidationException} (client fault)
64
+ * <p>Your signing certificate could not be validated. </p>
65
+ *
66
+ *
34
67
  */
35
68
  export declare class DeleteSubscriberCommand extends $Command<DeleteSubscriberCommandInput, DeleteSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
36
69
  readonly input: DeleteSubscriberCommandInput;
@@ -30,6 +30,35 @@ export interface DeleteSubscriptionNotificationConfigurationCommandOutput extend
30
30
  * @see {@link DeleteSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link ConcurrentModificationException} (client fault)
45
+ * <p>More than one process tried to modify a resource at the same time. </p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
49
+ * troubleshooting, perform the operation again. </p>
50
+ *
51
+ * @throws {@link InvalidInputException} (client fault)
52
+ * <p>The request was rejected because a value that's not valid or is out of range was
53
+ * supplied for an input parameter. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource could not be found.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>Your signing certificate could not be validated. </p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class DeleteSubscriptionNotificationConfigurationCommand extends $Command<DeleteSubscriptionNotificationConfigurationCommandInput, DeleteSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
35
64
  readonly input: DeleteSubscriptionNotificationConfigurationCommandInput;
@@ -31,6 +31,25 @@ export interface GetDatalakeAutoEnableCommandOutput extends GetDatalakeAutoEnabl
31
31
  * @see {@link GetDatalakeAutoEnableCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link AccountNotFoundException} (client fault)
41
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
42
+ * specified, or the account whose credentials you used to make this request isn't a member of
43
+ * an organization.</p>
44
+ *
45
+ * @throws {@link InternalServerException} (server fault)
46
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
47
+ * troubleshooting, perform the operation again. </p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>Your signing certificate could not be validated. </p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class GetDatalakeAutoEnableCommand extends $Command<GetDatalakeAutoEnableCommandInput, GetDatalakeAutoEnableCommandOutput, SecurityLakeClientResolvedConfig> {
36
55
  readonly input: GetDatalakeAutoEnableCommandInput;
@@ -30,6 +30,28 @@ export interface GetDatalakeCommandOutput extends GetDatalakeResponse, __Metadat
30
30
  * @see {@link GetDatalakeCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ResourceNotFoundException} (client fault)
49
+ * <p>The resource could not be found.</p>
50
+ *
51
+ * @throws {@link ValidationException} (client fault)
52
+ * <p>Your signing certificate could not be validated. </p>
53
+ *
54
+ *
33
55
  */
34
56
  export declare class GetDatalakeCommand extends $Command<GetDatalakeCommandInput, GetDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
35
57
  readonly input: GetDatalakeCommandInput;
@@ -31,6 +31,25 @@ export interface GetDatalakeExceptionsExpiryCommandOutput extends GetDatalakeExc
31
31
  * @see {@link GetDatalakeExceptionsExpiryCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link AccountNotFoundException} (client fault)
41
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
42
+ * specified, or the account whose credentials you used to make this request isn't a member of
43
+ * an organization.</p>
44
+ *
45
+ * @throws {@link InternalServerException} (server fault)
46
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
47
+ * troubleshooting, perform the operation again. </p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>Your signing certificate could not be validated. </p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class GetDatalakeExceptionsExpiryCommand extends $Command<GetDatalakeExceptionsExpiryCommandInput, GetDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
36
55
  readonly input: GetDatalakeExceptionsExpiryCommandInput;
@@ -29,6 +29,25 @@ export interface GetDatalakeExceptionsSubscriptionCommandOutput extends GetDatal
29
29
  * @see {@link GetDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
30
30
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
34
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
35
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
36
+ * no applicable Allow statement.</p>
37
+ *
38
+ * @throws {@link AccountNotFoundException} (client fault)
39
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
40
+ * specified, or the account whose credentials you used to make this request isn't a member of
41
+ * an organization.</p>
42
+ *
43
+ * @throws {@link InternalServerException} (server fault)
44
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
45
+ * troubleshooting, perform the operation again. </p>
46
+ *
47
+ * @throws {@link ValidationException} (client fault)
48
+ * <p>Your signing certificate could not be validated. </p>
49
+ *
50
+ *
32
51
  */
33
52
  export declare class GetDatalakeExceptionsSubscriptionCommand extends $Command<GetDatalakeExceptionsSubscriptionCommandInput, GetDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
34
53
  readonly input: GetDatalakeExceptionsSubscriptionCommandInput;
@@ -30,6 +30,25 @@ export interface GetDatalakeStatusCommandOutput extends GetDatalakeStatusRespons
30
30
  * @see {@link GetDatalakeStatusCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>Your signing certificate could not be validated. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class GetDatalakeStatusCommand extends $Command<GetDatalakeStatusCommandInput, GetDatalakeStatusCommandOutput, SecurityLakeClientResolvedConfig> {
35
54
  readonly input: GetDatalakeStatusCommandInput;
@@ -30,6 +30,29 @@ export interface GetSubscriberCommandOutput extends GetSubscriberResponse, __Met
30
30
  * @see {@link GetSubscriberCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link InvalidInputException} (client fault)
49
+ * <p>The request was rejected because a value that's not valid or is out of range was
50
+ * supplied for an input parameter. </p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The resource could not be found.</p>
54
+ *
55
+ *
33
56
  */
34
57
  export declare class GetSubscriberCommand extends $Command<GetSubscriberCommandInput, GetSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
35
58
  readonly input: GetSubscriberCommandInput;
@@ -30,6 +30,25 @@ export interface ListDatalakeExceptionsCommandOutput extends ListDatalakeExcepti
30
30
  * @see {@link ListDatalakeExceptionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>Your signing certificate could not be validated. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class ListDatalakeExceptionsCommand extends $Command<ListDatalakeExceptionsCommandInput, ListDatalakeExceptionsCommandOutput, SecurityLakeClientResolvedConfig> {
35
54
  readonly input: ListDatalakeExceptionsCommandInput;
@@ -29,6 +29,28 @@ export interface ListLogSourcesCommandOutput extends ListLogSourcesResponse, __M
29
29
  * @see {@link ListLogSourcesCommandOutput} for command's `response` shape.
30
30
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
31
31
  *
32
+ * @throws {@link AccessDeniedException} (client fault)
33
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
34
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
35
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
36
+ * no applicable Allow statement.</p>
37
+ *
38
+ * @throws {@link AccountNotFoundException} (client fault)
39
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
40
+ * specified, or the account whose credentials you used to make this request isn't a member of
41
+ * an organization.</p>
42
+ *
43
+ * @throws {@link InternalServerException} (server fault)
44
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
45
+ * troubleshooting, perform the operation again. </p>
46
+ *
47
+ * @throws {@link ResourceNotFoundException} (client fault)
48
+ * <p>The resource could not be found.</p>
49
+ *
50
+ * @throws {@link ValidationException} (client fault)
51
+ * <p>Your signing certificate could not be validated. </p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class ListLogSourcesCommand extends $Command<ListLogSourcesCommandInput, ListLogSourcesCommandOutput, SecurityLakeClientResolvedConfig> {
34
56
  readonly input: ListLogSourcesCommandInput;
@@ -30,6 +30,32 @@ export interface ListSubscribersCommandOutput extends ListSubscribersResponse, _
30
30
  * @see {@link ListSubscribersCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link InvalidInputException} (client fault)
49
+ * <p>The request was rejected because a value that's not valid or is out of range was
50
+ * supplied for an input parameter. </p>
51
+ *
52
+ * @throws {@link ResourceNotFoundException} (client fault)
53
+ * <p>The resource could not be found.</p>
54
+ *
55
+ * @throws {@link ValidationException} (client fault)
56
+ * <p>Your signing certificate could not be validated. </p>
57
+ *
58
+ *
33
59
  */
34
60
  export declare class ListSubscribersCommand extends $Command<ListSubscribersCommandInput, ListSubscribersCommandOutput, SecurityLakeClientResolvedConfig> {
35
61
  readonly input: ListSubscribersCommandInput;
@@ -30,6 +30,26 @@ export interface UpdateDatalakeCommandOutput extends UpdateDatalakeResponse, __M
30
30
  * @see {@link UpdateDatalakeCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link EventBridgeException} (client fault)
40
+ * <p>Represents an error interacting with the Amazon EventBridge service.</p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
44
+ * troubleshooting, perform the operation again. </p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p>The resource could not be found.</p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>Your signing certificate could not be validated. </p>
51
+ *
52
+ *
33
53
  */
34
54
  export declare class UpdateDatalakeCommand extends $Command<UpdateDatalakeCommandInput, UpdateDatalakeCommandOutput, SecurityLakeClientResolvedConfig> {
35
55
  readonly input: UpdateDatalakeCommandInput;
@@ -31,6 +31,25 @@ export interface UpdateDatalakeExceptionsExpiryCommandOutput extends UpdateDatal
31
31
  * @see {@link UpdateDatalakeExceptionsExpiryCommandOutput} for command's `response` shape.
32
32
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
33
33
  *
34
+ * @throws {@link AccessDeniedException} (client fault)
35
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
36
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
37
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
38
+ * no applicable Allow statement.</p>
39
+ *
40
+ * @throws {@link AccountNotFoundException} (client fault)
41
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
42
+ * specified, or the account whose credentials you used to make this request isn't a member of
43
+ * an organization.</p>
44
+ *
45
+ * @throws {@link InternalServerException} (server fault)
46
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
47
+ * troubleshooting, perform the operation again. </p>
48
+ *
49
+ * @throws {@link ValidationException} (client fault)
50
+ * <p>Your signing certificate could not be validated. </p>
51
+ *
52
+ *
34
53
  */
35
54
  export declare class UpdateDatalakeExceptionsExpiryCommand extends $Command<UpdateDatalakeExceptionsExpiryCommandInput, UpdateDatalakeExceptionsExpiryCommandOutput, SecurityLakeClientResolvedConfig> {
36
55
  readonly input: UpdateDatalakeExceptionsExpiryCommandInput;
@@ -30,6 +30,25 @@ export interface UpdateDatalakeExceptionsSubscriptionCommandOutput extends Updat
30
30
  * @see {@link UpdateDatalakeExceptionsSubscriptionCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link InternalServerException} (server fault)
45
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
46
+ * troubleshooting, perform the operation again. </p>
47
+ *
48
+ * @throws {@link ValidationException} (client fault)
49
+ * <p>Your signing certificate could not be validated. </p>
50
+ *
51
+ *
33
52
  */
34
53
  export declare class UpdateDatalakeExceptionsSubscriptionCommand extends $Command<UpdateDatalakeExceptionsSubscriptionCommandInput, UpdateDatalakeExceptionsSubscriptionCommandOutput, SecurityLakeClientResolvedConfig> {
35
54
  readonly input: UpdateDatalakeExceptionsSubscriptionCommandInput;
@@ -30,6 +30,35 @@ export interface UpdateSubscriberCommandOutput extends UpdateSubscriberResponse,
30
30
  * @see {@link UpdateSubscriberCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link ConcurrentModificationException} (client fault)
45
+ * <p>More than one process tried to modify a resource at the same time. </p>
46
+ *
47
+ * @throws {@link ConflictSubscriptionException} (client fault)
48
+ * <p>A conflicting subscription exception operation is in progress. </p>
49
+ *
50
+ * @throws {@link InternalServerException} (server fault)
51
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
52
+ * troubleshooting, perform the operation again. </p>
53
+ *
54
+ * @throws {@link InvalidInputException} (client fault)
55
+ * <p>The request was rejected because a value that's not valid or is out of range was
56
+ * supplied for an input parameter. </p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>Your signing certificate could not be validated. </p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class UpdateSubscriberCommand extends $Command<UpdateSubscriberCommandInput, UpdateSubscriberCommandOutput, SecurityLakeClientResolvedConfig> {
35
64
  readonly input: UpdateSubscriberCommandInput;
@@ -30,6 +30,35 @@ export interface UpdateSubscriptionNotificationConfigurationCommandOutput extend
30
30
  * @see {@link UpdateSubscriptionNotificationConfigurationCommandOutput} for command's `response` shape.
31
31
  * @see {@link SecurityLakeClientResolvedConfig | config} for SecurityLakeClient's `config` shape.
32
32
  *
33
+ * @throws {@link AccessDeniedException} (client fault)
34
+ * <p>You do not have sufficient access to perform this action. Access denied errors appear when Amazon Security Lake explicitly or implicitly denies an authorization
35
+ * request. An explicit denial occurs when a policy contains a Deny statement for the specific
36
+ * Amazon Web Services action. An implicit denial occurs when there is no applicable Deny statement and also
37
+ * no applicable Allow statement.</p>
38
+ *
39
+ * @throws {@link AccountNotFoundException} (client fault)
40
+ * <p>Amazon Security Lake cannot find an Amazon Web Services account with the accountID that you
41
+ * specified, or the account whose credentials you used to make this request isn't a member of
42
+ * an organization.</p>
43
+ *
44
+ * @throws {@link ConcurrentModificationException} (client fault)
45
+ * <p>More than one process tried to modify a resource at the same time. </p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>Internal service exceptions are sometimes caused by transient issues. Before you start
49
+ * troubleshooting, perform the operation again. </p>
50
+ *
51
+ * @throws {@link InvalidInputException} (client fault)
52
+ * <p>The request was rejected because a value that's not valid or is out of range was
53
+ * supplied for an input parameter. </p>
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The resource could not be found.</p>
57
+ *
58
+ * @throws {@link ValidationException} (client fault)
59
+ * <p>Your signing certificate could not be validated. </p>
60
+ *
61
+ *
33
62
  */
34
63
  export declare class UpdateSubscriptionNotificationConfigurationCommand extends $Command<UpdateSubscriptionNotificationConfigurationCommandInput, UpdateSubscriptionNotificationConfigurationCommandOutput, SecurityLakeClientResolvedConfig> {
35
64
  readonly input: UpdateSubscriptionNotificationConfigurationCommandInput;
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.289.0",
4
+ "version": "3.290.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",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },