@aws-sdk/client-accessanalyzer 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/AccessAnalyzer.d.ts +480 -145
  3. package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +273 -101
  4. package/dist-types/ts3.4/commands/ApplyArchiveRuleCommand.d.ts +30 -17
  5. package/dist-types/ts3.4/commands/CancelPolicyGenerationCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateAccessPreviewCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/CreateAnalyzerCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/CreateArchiveRuleCommand.d.ts +31 -17
  9. package/dist-types/ts3.4/commands/DeleteAnalyzerCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/DeleteArchiveRuleCommand.d.ts +31 -17
  11. package/dist-types/ts3.4/commands/GetAccessPreviewCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/GetAnalyzedResourceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/GetAnalyzerCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/GetArchiveRuleCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/GetFindingCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/GetGeneratedPolicyCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ListAccessPreviewFindingsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListAccessPreviewsCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/ListAnalyzedResourcesCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/ListAnalyzersCommand.d.ts +35 -17
  21. package/dist-types/ts3.4/commands/ListArchiveRulesCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +32 -17
  23. package/dist-types/ts3.4/commands/ListPolicyGenerationsCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/StartPolicyGenerationCommand.d.ts +39 -17
  26. package/dist-types/ts3.4/commands/StartResourceScanCommand.d.ts +31 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateArchiveRuleCommand.d.ts +31 -17
  30. package/dist-types/ts3.4/commands/UpdateFindingsCommand.d.ts +30 -17
  31. package/dist-types/ts3.4/commands/ValidatePolicyCommand.d.ts +35 -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 +7 -6
  36. package/dist-types/ts3.4/models/index.d.ts +1 -1
  37. package/dist-types/ts3.4/models/models_0.d.ts +1074 -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 +65 -38
  50. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  51. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  52. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  53. package/package.json +34 -34
@@ -1,17 +1,35 @@
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 { ListAnalyzersRequest, ListAnalyzersResponse } from "../models/models_0";
5
- export interface ListAnalyzersCommandInput extends ListAnalyzersRequest {
6
- }
7
- export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAnalyzersCommand extends $Command<ListAnalyzersCommandInput, ListAnalyzersCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListAnalyzersCommandInput;
12
- constructor(input: ListAnalyzersCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnalyzersCommandInput, ListAnalyzersCommandOutput>;
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
+ ListAnalyzersRequest,
15
+ ListAnalyzersResponse,
16
+ } from "../models/models_0";
17
+ export interface ListAnalyzersCommandInput extends ListAnalyzersRequest {}
18
+ export interface ListAnalyzersCommandOutput
19
+ extends ListAnalyzersResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListAnalyzersCommand extends $Command<
22
+ ListAnalyzersCommandInput,
23
+ ListAnalyzersCommandOutput,
24
+ AccessAnalyzerClientResolvedConfig
25
+ > {
26
+ readonly input: ListAnalyzersCommandInput;
27
+ constructor(input: ListAnalyzersCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AccessAnalyzerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListAnalyzersCommandInput, ListAnalyzersCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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 { ListArchiveRulesRequest, ListArchiveRulesResponse } from "../models/models_0";
5
- export interface ListArchiveRulesCommandInput extends ListArchiveRulesRequest {
6
- }
7
- export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListArchiveRulesCommand extends $Command<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListArchiveRulesCommandInput;
12
- constructor(input: ListArchiveRulesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput>;
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
+ ListArchiveRulesRequest,
15
+ ListArchiveRulesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListArchiveRulesCommandInput extends ListArchiveRulesRequest {}
18
+ export interface ListArchiveRulesCommandOutput
19
+ extends ListArchiveRulesResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListArchiveRulesCommand extends $Command<
22
+ ListArchiveRulesCommandInput,
23
+ ListArchiveRulesCommandOutput,
24
+ AccessAnalyzerClientResolvedConfig
25
+ > {
26
+ readonly input: ListArchiveRulesCommandInput;
27
+ constructor(input: ListArchiveRulesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AccessAnalyzerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -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 { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
5
- export interface ListFindingsCommandInput extends ListFindingsRequest {
6
- }
7
- export interface ListFindingsCommandOutput extends ListFindingsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListFindingsCommand extends $Command<ListFindingsCommandInput, ListFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListFindingsCommandInput;
12
- constructor(input: ListFindingsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
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 { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
14
+ export interface ListFindingsCommandInput extends ListFindingsRequest {}
15
+ export interface ListFindingsCommandOutput
16
+ extends ListFindingsResponse,
17
+ __MetadataBearer {}
18
+ export declare class ListFindingsCommand extends $Command<
19
+ ListFindingsCommandInput,
20
+ ListFindingsCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: ListFindingsCommandInput;
24
+ constructor(input: ListFindingsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AccessAnalyzerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,39 @@
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 { ListPolicyGenerationsRequest, ListPolicyGenerationsResponse } from "../models/models_0";
5
- export interface ListPolicyGenerationsCommandInput extends ListPolicyGenerationsRequest {
6
- }
7
- export interface ListPolicyGenerationsCommandOutput extends ListPolicyGenerationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListPolicyGenerationsCommand extends $Command<ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListPolicyGenerationsCommandInput;
12
- constructor(input: ListPolicyGenerationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput>;
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
+ ListPolicyGenerationsRequest,
15
+ ListPolicyGenerationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListPolicyGenerationsCommandInput
18
+ extends ListPolicyGenerationsRequest {}
19
+ export interface ListPolicyGenerationsCommandOutput
20
+ extends ListPolicyGenerationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListPolicyGenerationsCommand extends $Command<
23
+ ListPolicyGenerationsCommandInput,
24
+ ListPolicyGenerationsCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: ListPolicyGenerationsCommandInput;
28
+ constructor(input: ListPolicyGenerationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AccessAnalyzerClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ ListPolicyGenerationsCommandInput,
35
+ ListPolicyGenerationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AccessAnalyzerClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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 { StartPolicyGenerationRequest, StartPolicyGenerationResponse } from "../models/models_0";
5
- export interface StartPolicyGenerationCommandInput extends StartPolicyGenerationRequest {
6
- }
7
- export interface StartPolicyGenerationCommandOutput extends StartPolicyGenerationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartPolicyGenerationCommand extends $Command<StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: StartPolicyGenerationCommandInput;
12
- constructor(input: StartPolicyGenerationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartPolicyGenerationCommandInput, StartPolicyGenerationCommandOutput>;
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
+ StartPolicyGenerationRequest,
15
+ StartPolicyGenerationResponse,
16
+ } from "../models/models_0";
17
+ export interface StartPolicyGenerationCommandInput
18
+ extends StartPolicyGenerationRequest {}
19
+ export interface StartPolicyGenerationCommandOutput
20
+ extends StartPolicyGenerationResponse,
21
+ __MetadataBearer {}
22
+ export declare class StartPolicyGenerationCommand extends $Command<
23
+ StartPolicyGenerationCommandInput,
24
+ StartPolicyGenerationCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: StartPolicyGenerationCommandInput;
28
+ constructor(input: StartPolicyGenerationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AccessAnalyzerClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ StartPolicyGenerationCommandInput,
35
+ StartPolicyGenerationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,31 @@
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 { StartResourceScanRequest } from "../models/models_0";
5
- export interface StartResourceScanCommandInput extends StartResourceScanRequest {
6
- }
7
- export interface StartResourceScanCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class StartResourceScanCommand extends $Command<StartResourceScanCommandInput, StartResourceScanCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: StartResourceScanCommandInput;
12
- constructor(input: StartResourceScanCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartResourceScanCommandInput, StartResourceScanCommandOutput>;
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 { StartResourceScanRequest } from "../models/models_0";
14
+ export interface StartResourceScanCommandInput
15
+ extends StartResourceScanRequest {}
16
+ export interface StartResourceScanCommandOutput extends __MetadataBearer {}
17
+ export declare class StartResourceScanCommand extends $Command<
18
+ StartResourceScanCommandInput,
19
+ StartResourceScanCommandOutput,
20
+ AccessAnalyzerClientResolvedConfig
21
+ > {
22
+ readonly input: StartResourceScanCommandInput;
23
+ constructor(input: StartResourceScanCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: AccessAnalyzerClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<StartResourceScanCommandInput, StartResourceScanCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AccessAnalyzerClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
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
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ AccessAnalyzerClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AccessAnalyzerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,31 @@
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 { UpdateArchiveRuleRequest } from "../models/models_0";
5
- export interface UpdateArchiveRuleCommandInput extends UpdateArchiveRuleRequest {
6
- }
7
- export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateArchiveRuleCommand extends $Command<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: UpdateArchiveRuleCommandInput;
12
- constructor(input: UpdateArchiveRuleCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput>;
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 { UpdateArchiveRuleRequest } from "../models/models_0";
14
+ export interface UpdateArchiveRuleCommandInput
15
+ extends UpdateArchiveRuleRequest {}
16
+ export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {}
17
+ export declare class UpdateArchiveRuleCommand extends $Command<
18
+ UpdateArchiveRuleCommandInput,
19
+ UpdateArchiveRuleCommandOutput,
20
+ AccessAnalyzerClientResolvedConfig
21
+ > {
22
+ readonly input: UpdateArchiveRuleCommandInput;
23
+ constructor(input: UpdateArchiveRuleCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: AccessAnalyzerClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput>;
29
+ private serialize;
30
+ private deserialize;
31
+ }
@@ -1,17 +1,30 @@
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 { UpdateFindingsRequest } from "../models/models_0";
5
- export interface UpdateFindingsCommandInput extends UpdateFindingsRequest {
6
- }
7
- export interface UpdateFindingsCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateFindingsCommand extends $Command<UpdateFindingsCommandInput, UpdateFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: UpdateFindingsCommandInput;
12
- constructor(input: UpdateFindingsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFindingsCommandInput, UpdateFindingsCommandOutput>;
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 { UpdateFindingsRequest } from "../models/models_0";
14
+ export interface UpdateFindingsCommandInput extends UpdateFindingsRequest {}
15
+ export interface UpdateFindingsCommandOutput extends __MetadataBearer {}
16
+ export declare class UpdateFindingsCommand extends $Command<
17
+ UpdateFindingsCommandInput,
18
+ UpdateFindingsCommandOutput,
19
+ AccessAnalyzerClientResolvedConfig
20
+ > {
21
+ readonly input: UpdateFindingsCommandInput;
22
+ constructor(input: UpdateFindingsCommandInput);
23
+ resolveMiddleware(
24
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
25
+ configuration: AccessAnalyzerClientResolvedConfig,
26
+ options?: __HttpHandlerOptions
27
+ ): Handler<UpdateFindingsCommandInput, UpdateFindingsCommandOutput>;
28
+ private serialize;
29
+ private deserialize;
30
+ }
@@ -1,17 +1,35 @@
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 { ValidatePolicyRequest, ValidatePolicyResponse } from "../models/models_0";
5
- export interface ValidatePolicyCommandInput extends ValidatePolicyRequest {
6
- }
7
- export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ValidatePolicyCommand extends $Command<ValidatePolicyCommandInput, ValidatePolicyCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ValidatePolicyCommandInput;
12
- constructor(input: ValidatePolicyCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ValidatePolicyCommandInput, ValidatePolicyCommandOutput>;
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
+ ValidatePolicyRequest,
15
+ ValidatePolicyResponse,
16
+ } from "../models/models_0";
17
+ export interface ValidatePolicyCommandInput extends ValidatePolicyRequest {}
18
+ export interface ValidatePolicyCommandOutput
19
+ extends ValidatePolicyResponse,
20
+ __MetadataBearer {}
21
+ export declare class ValidatePolicyCommand extends $Command<
22
+ ValidatePolicyCommandInput,
23
+ ValidatePolicyCommandOutput,
24
+ AccessAnalyzerClientResolvedConfig
25
+ > {
26
+ readonly input: ValidatePolicyCommandInput;
27
+ constructor(input: ValidatePolicyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AccessAnalyzerClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ValidatePolicyCommandInput, ValidatePolicyCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }