@aws-sdk/client-accessanalyzer 3.169.0 → 3.170.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 (53) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AccessAnalyzer.d.ts +508 -145
  3. package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +298 -101
  4. package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +32 -17
  5. package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +33 -17
  9. package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +33 -17
  11. package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +38 -17
  17. package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +37 -17
  21. package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +34 -17
  23. package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +41 -17
  26. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +33 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +33 -17
  30. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +32 -17
  31. package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +37 -17
  32. package/dist-types/ts3.4/commands/index.d.ts +28 -28
  33. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  34. package/dist-types/ts3.4/index.d.ts +6 -6
  35. package/dist-types/ts3.4/models/AccessAnalyzerServiceException.d.ts +8 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +1473 -1366
  38. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  39. package/dist-types/ts3.4/pagination/ListAccessPreviewFindingsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListAccessPreviewsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListAnalyzedResourcesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListAnalyzersPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListArchiveRulesPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListFindingsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListPolicyGenerationsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ValidatePolicyPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/index.d.ts +9 -9
  48. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +341 -86
  49. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  53. package/package.json +34 -34
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { CreateArchiveRuleRequest } from "../models/models_0";
5
- export interface CreateArchiveRuleCommandInput extends CreateArchiveRuleRequest {
6
- }
7
- export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class CreateArchiveRuleCommand extends $Command<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: CreateArchiveRuleCommandInput;
12
- constructor(input: CreateArchiveRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import { CreateArchiveRuleRequest } from "../models/models_0";
14
+ export interface CreateArchiveRuleCommandInput
15
+ extends CreateArchiveRuleRequest {}
16
+ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class CreateArchiveRuleCommand extends $Command<
19
+ CreateArchiveRuleCommandInput,
20
+ CreateArchiveRuleCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: CreateArchiveRuleCommandInput;
24
+ constructor(input: CreateArchiveRuleCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccessAnalyzerClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<CreateArchiveRuleCommandInput, CreateArchiveRuleCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { DeleteAnalyzerRequest } from "../models/models_0";
5
- export interface DeleteAnalyzerCommandInput extends DeleteAnalyzerRequest {
6
- }
7
- export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteAnalyzerCommand extends $Command<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: DeleteAnalyzerCommandInput;
12
- constructor(input: DeleteAnalyzerCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import { DeleteAnalyzerRequest } from "../models/models_0";
14
+ export interface DeleteAnalyzerCommandInput extends DeleteAnalyzerRequest {}
15
+ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {}
16
+
17
+ export declare class DeleteAnalyzerCommand extends $Command<
18
+ DeleteAnalyzerCommandInput,
19
+ DeleteAnalyzerCommandOutput,
20
+ AccessAnalyzerClientResolvedConfig
21
+ > {
22
+ readonly input: DeleteAnalyzerCommandInput;
23
+ constructor(input: DeleteAnalyzerCommandInput);
24
+
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AccessAnalyzerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteAnalyzerCommandInput, DeleteAnalyzerCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,33 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { DeleteArchiveRuleRequest } from "../models/models_0";
5
- export interface DeleteArchiveRuleCommandInput extends DeleteArchiveRuleRequest {
6
- }
7
- export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteArchiveRuleCommand extends $Command<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: DeleteArchiveRuleCommandInput;
12
- constructor(input: DeleteArchiveRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import { DeleteArchiveRuleRequest } from "../models/models_0";
14
+ export interface DeleteArchiveRuleCommandInput
15
+ extends DeleteArchiveRuleRequest {}
16
+ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {}
17
+
18
+ export declare class DeleteArchiveRuleCommand extends $Command<
19
+ DeleteArchiveRuleCommandInput,
20
+ DeleteArchiveRuleCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteArchiveRuleCommandInput;
24
+ constructor(input: DeleteArchiveRuleCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccessAnalyzerClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<DeleteArchiveRuleCommandInput, DeleteArchiveRuleCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0";
5
- export interface GetAccessPreviewCommandInput extends GetAccessPreviewRequest {
6
- }
7
- export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAccessPreviewCommand extends $Command<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetAccessPreviewCommandInput;
12
- constructor(input: GetAccessPreviewCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ GetAccessPreviewRequest,
15
+ GetAccessPreviewResponse,
16
+ } from "../models/models_0";
17
+ export interface GetAccessPreviewCommandInput extends GetAccessPreviewRequest {}
18
+ export interface GetAccessPreviewCommandOutput
19
+ extends GetAccessPreviewResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetAccessPreviewCommand extends $Command<
23
+ GetAccessPreviewCommandInput,
24
+ GetAccessPreviewCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: GetAccessPreviewCommandInput;
28
+ constructor(input: GetAccessPreviewCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AccessAnalyzerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0";
5
- export interface GetAnalyzedResourceCommandInput extends GetAnalyzedResourceRequest {
6
- }
7
- export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAnalyzedResourceCommand extends $Command<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetAnalyzedResourceCommandInput;
12
- constructor(input: GetAnalyzedResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ GetAnalyzedResourceRequest,
15
+ GetAnalyzedResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface GetAnalyzedResourceCommandInput
18
+ extends GetAnalyzedResourceRequest {}
19
+ export interface GetAnalyzedResourceCommandOutput
20
+ extends GetAnalyzedResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetAnalyzedResourceCommand extends $Command<
24
+ GetAnalyzedResourceCommandInput,
25
+ GetAnalyzedResourceCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: GetAnalyzedResourceCommandInput;
29
+ constructor(input: GetAnalyzedResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";
5
- export interface GetAnalyzerCommandInput extends GetAnalyzerRequest {
6
- }
7
- export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetAnalyzerCommand extends $Command<GetAnalyzerCommandInput, GetAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetAnalyzerCommandInput;
12
- constructor(input: GetAnalyzerCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnalyzerCommandInput, GetAnalyzerCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";
14
+ export interface GetAnalyzerCommandInput extends GetAnalyzerRequest {}
15
+ export interface GetAnalyzerCommandOutput
16
+ extends GetAnalyzerResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetAnalyzerCommand extends $Command<
20
+ GetAnalyzerCommandInput,
21
+ GetAnalyzerCommandOutput,
22
+ AccessAnalyzerClientResolvedConfig
23
+ > {
24
+ readonly input: GetAnalyzerCommandInput;
25
+ constructor(input: GetAnalyzerCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AccessAnalyzerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetAnalyzerCommandInput, GetAnalyzerCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0";
5
- export interface GetArchiveRuleCommandInput extends GetArchiveRuleRequest {
6
- }
7
- export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetArchiveRuleCommand extends $Command<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetArchiveRuleCommandInput;
12
- constructor(input: GetArchiveRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ GetArchiveRuleRequest,
15
+ GetArchiveRuleResponse,
16
+ } from "../models/models_0";
17
+ export interface GetArchiveRuleCommandInput extends GetArchiveRuleRequest {}
18
+ export interface GetArchiveRuleCommandOutput
19
+ extends GetArchiveRuleResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class GetArchiveRuleCommand extends $Command<
23
+ GetArchiveRuleCommandInput,
24
+ GetArchiveRuleCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: GetArchiveRuleCommandInput;
28
+ constructor(input: GetArchiveRuleCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AccessAnalyzerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetFindingRequest, GetFindingResponse } from "../models/models_0";
5
- export interface GetFindingCommandInput extends GetFindingRequest {
6
- }
7
- export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetFindingCommand extends $Command<GetFindingCommandInput, GetFindingCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetFindingCommandInput;
12
- constructor(input: GetFindingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFindingCommandInput, GetFindingCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import { GetFindingRequest, GetFindingResponse } from "../models/models_0";
14
+ export interface GetFindingCommandInput extends GetFindingRequest {}
15
+ export interface GetFindingCommandOutput
16
+ extends GetFindingResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class GetFindingCommand extends $Command<
20
+ GetFindingCommandInput,
21
+ GetFindingCommandOutput,
22
+ AccessAnalyzerClientResolvedConfig
23
+ > {
24
+ readonly input: GetFindingCommandInput;
25
+ constructor(input: GetFindingCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AccessAnalyzerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<GetFindingCommandInput, GetFindingCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0";
5
- export interface GetGeneratedPolicyCommandInput extends GetGeneratedPolicyRequest {
6
- }
7
- export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GetGeneratedPolicyCommand extends $Command<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: GetGeneratedPolicyCommandInput;
12
- constructor(input: GetGeneratedPolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ GetGeneratedPolicyRequest,
15
+ GetGeneratedPolicyResponse,
16
+ } from "../models/models_0";
17
+ export interface GetGeneratedPolicyCommandInput
18
+ extends GetGeneratedPolicyRequest {}
19
+ export interface GetGeneratedPolicyCommandOutput
20
+ extends GetGeneratedPolicyResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GetGeneratedPolicyCommand extends $Command<
24
+ GetGeneratedPolicyCommandInput,
25
+ GetGeneratedPolicyCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: GetGeneratedPolicyCommandInput;
29
+ constructor(input: GetGeneratedPolicyCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { ListAccessPreviewFindingsRequest, ListAccessPreviewFindingsResponse } from "../models/models_0";
5
- export interface ListAccessPreviewFindingsCommandInput extends ListAccessPreviewFindingsRequest {
6
- }
7
- export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPreviewFindingsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAccessPreviewFindingsCommand extends $Command<ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListAccessPreviewFindingsCommandInput;
12
- constructor(input: ListAccessPreviewFindingsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ ListAccessPreviewFindingsRequest,
15
+ ListAccessPreviewFindingsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListAccessPreviewFindingsCommandInput
18
+ extends ListAccessPreviewFindingsRequest {}
19
+ export interface ListAccessPreviewFindingsCommandOutput
20
+ extends ListAccessPreviewFindingsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAccessPreviewFindingsCommand extends $Command<
24
+ ListAccessPreviewFindingsCommandInput,
25
+ ListAccessPreviewFindingsCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: ListAccessPreviewFindingsCommandInput;
29
+ constructor(input: ListAccessPreviewFindingsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAccessPreviewFindingsCommandInput,
37
+ ListAccessPreviewFindingsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
4
- import { ListAccessPreviewsRequest, ListAccessPreviewsResponse } from "../models/models_0";
5
- export interface ListAccessPreviewsCommandInput extends ListAccessPreviewsRequest {
6
- }
7
- export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAccessPreviewsCommand extends $Command<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListAccessPreviewsCommandInput;
12
- constructor(input: ListAccessPreviewsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AccessAnalyzerClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AccessAnalyzerClient";
13
+ import {
14
+ ListAccessPreviewsRequest,
15
+ ListAccessPreviewsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListAccessPreviewsCommandInput
18
+ extends ListAccessPreviewsRequest {}
19
+ export interface ListAccessPreviewsCommandOutput
20
+ extends ListAccessPreviewsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAccessPreviewsCommand extends $Command<
24
+ ListAccessPreviewsCommandInput,
25
+ ListAccessPreviewsCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: ListAccessPreviewsCommandInput;
29
+ constructor(input: ListAccessPreviewsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }