@aws-sdk/client-accessanalyzer 3.168.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 +16 -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,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 { ListAnalyzedResourcesRequest, ListAnalyzedResourcesResponse } from "../models/models_0";
5
- export interface ListAnalyzedResourcesCommandInput extends ListAnalyzedResourcesRequest {
6
- }
7
- export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResourcesResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListAnalyzedResourcesCommand extends $Command<ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput, AccessAnalyzerClientResolvedConfig> {
11
- readonly input: ListAnalyzedResourcesCommandInput;
12
- constructor(input: ListAnalyzedResourcesCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput>;
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
+ ListAnalyzedResourcesRequest,
15
+ ListAnalyzedResourcesResponse,
16
+ } from "../models/models_0";
17
+ export interface ListAnalyzedResourcesCommandInput
18
+ extends ListAnalyzedResourcesRequest {}
19
+ export interface ListAnalyzedResourcesCommandOutput
20
+ extends ListAnalyzedResourcesResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListAnalyzedResourcesCommand extends $Command<
24
+ ListAnalyzedResourcesCommandInput,
25
+ ListAnalyzedResourcesCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: ListAnalyzedResourcesCommandInput;
29
+ constructor(input: ListAnalyzedResourcesCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListAnalyzedResourcesCommandInput,
37
+ ListAnalyzedResourcesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
+
22
+ export declare class ListAnalyzersCommand extends $Command<
23
+ ListAnalyzersCommandInput,
24
+ ListAnalyzersCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: ListAnalyzersCommandInput;
28
+ constructor(input: ListAnalyzersCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AccessAnalyzerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListAnalyzersCommandInput, ListAnalyzersCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { 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
+
22
+ export declare class ListArchiveRulesCommand extends $Command<
23
+ ListArchiveRulesCommandInput,
24
+ ListArchiveRulesCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: ListArchiveRulesCommandInput;
28
+ constructor(input: ListArchiveRulesCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AccessAnalyzerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput>;
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 { 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
+
19
+ export declare class ListFindingsCommand extends $Command<
20
+ ListFindingsCommandInput,
21
+ ListFindingsCommandOutput,
22
+ AccessAnalyzerClientResolvedConfig
23
+ > {
24
+ readonly input: ListFindingsCommandInput;
25
+ constructor(input: ListFindingsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AccessAnalyzerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -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 { 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
+
23
+ export declare class ListPolicyGenerationsCommand extends $Command<
24
+ ListPolicyGenerationsCommandInput,
25
+ ListPolicyGenerationsCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: ListPolicyGenerationsCommandInput;
29
+ constructor(input: ListPolicyGenerationsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListPolicyGenerationsCommandInput,
37
+ ListPolicyGenerationsCommandOutput
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 { 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
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { 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
+
23
+ export declare class StartPolicyGenerationCommand extends $Command<
24
+ StartPolicyGenerationCommandInput,
25
+ StartPolicyGenerationCommandOutput,
26
+ AccessAnalyzerClientResolvedConfig
27
+ > {
28
+ readonly input: StartPolicyGenerationCommandInput;
29
+ constructor(input: StartPolicyGenerationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: AccessAnalyzerClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ StartPolicyGenerationCommandInput,
37
+ StartPolicyGenerationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -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 { 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
+
18
+ export declare class StartResourceScanCommand extends $Command<
19
+ StartResourceScanCommandInput,
20
+ StartResourceScanCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: StartResourceScanCommandInput;
24
+ constructor(input: StartResourceScanCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccessAnalyzerClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<StartResourceScanCommandInput, StartResourceScanCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -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 { 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
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ AccessAnalyzerClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: AccessAnalyzerClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
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 { 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
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ AccessAnalyzerClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: AccessAnalyzerClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -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 { 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
+
18
+ export declare class UpdateArchiveRuleCommand extends $Command<
19
+ UpdateArchiveRuleCommandInput,
20
+ UpdateArchiveRuleCommandOutput,
21
+ AccessAnalyzerClientResolvedConfig
22
+ > {
23
+ readonly input: UpdateArchiveRuleCommandInput;
24
+ constructor(input: UpdateArchiveRuleCommandInput);
25
+
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: AccessAnalyzerClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<UpdateArchiveRuleCommandInput, UpdateArchiveRuleCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }