@aws-sdk/client-accessanalyzer 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/AccessAnalyzer.d.ts +29 -0
  2. package/dist-types/AccessAnalyzerClient.d.ts +24 -4
  3. package/dist-types/commands/ApplyArchiveRuleCommand.d.ts +16 -0
  4. package/dist-types/commands/CancelPolicyGenerationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateAccessPreviewCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateAnalyzerCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateArchiveRuleCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAnalyzerCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteArchiveRuleCommand.d.ts +16 -0
  10. package/dist-types/commands/GetAccessPreviewCommand.d.ts +16 -0
  11. package/dist-types/commands/GetAnalyzedResourceCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAnalyzerCommand.d.ts +16 -0
  13. package/dist-types/commands/GetArchiveRuleCommand.d.ts +16 -0
  14. package/dist-types/commands/GetFindingCommand.d.ts +16 -0
  15. package/dist-types/commands/GetGeneratedPolicyCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAccessPreviewFindingsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListAccessPreviewsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAnalyzedResourcesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListAnalyzersCommand.d.ts +16 -0
  20. package/dist-types/commands/ListArchiveRulesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListFindingsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListPolicyGenerationsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/StartPolicyGenerationCommand.d.ts +16 -0
  25. package/dist-types/commands/StartResourceScanCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateArchiveRuleCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateFindingsCommand.d.ts +16 -0
  30. package/dist-types/commands/ValidatePolicyCommand.d.ts +16 -0
  31. package/dist-types/models/AccessAnalyzerServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +228 -1
  33. package/dist-types/pagination/Interfaces.d.ts +3 -0
  34. package/dist-types/pagination/ListAccessPreviewFindingsPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListAccessPreviewsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListAnalyzedResourcesPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListAnalyzersPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListArchiveRulesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListFindingsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListPolicyGenerationsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ValidatePolicyPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetAccessPreviewRequest, GetAccessPreviewResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAccessPreviewCommand}.
8
10
  */
9
11
  export interface GetAccessPreviewCommandInput extends GetAccessPreviewRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAccessPreviewCommand}.
13
17
  */
14
18
  export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about an access preview for the specified analyzer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetAccessPreviewCommandInput - {@link GetAccessPreviewCommandInput}
34
+ * @returns {@link GetAccessPreviewCommandOutput}
28
35
  * @see {@link GetAccessPreviewCommandInput} for command's `input` shape.
29
36
  * @see {@link GetAccessPreviewCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
49
56
  export declare class GetAccessPreviewCommand extends $Command<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput, AccessAnalyzerClientResolvedConfig> {
50
57
  readonly input: GetAccessPreviewCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetAccessPreviewCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccessPreviewCommandInput, GetAccessPreviewCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetAnalyzedResourceRequest, GetAnalyzedResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAnalyzedResourceCommand}.
8
10
  */
9
11
  export interface GetAnalyzedResourceCommandInput extends GetAnalyzedResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAnalyzedResourceCommand}.
13
17
  */
14
18
  export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about a resource that was analyzed.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetAnalyzedResourceCommandInput - {@link GetAnalyzedResourceCommandInput}
34
+ * @returns {@link GetAnalyzedResourceCommandOutput}
28
35
  * @see {@link GetAnalyzedResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetAnalyzedResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
49
56
  export declare class GetAnalyzedResourceCommand extends $Command<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput, AccessAnalyzerClientResolvedConfig> {
50
57
  readonly input: GetAnalyzedResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetAnalyzedResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnalyzedResourceCommandInput, GetAnalyzedResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetAnalyzerRequest, GetAnalyzerResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAnalyzerCommand}.
8
10
  */
9
11
  export interface GetAnalyzerCommandInput extends GetAnalyzerRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAnalyzerCommand}.
13
17
  */
14
18
  export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about the specified analyzer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetAnalyzerCommandInput - {@link GetAnalyzerCommandInput}
34
+ * @returns {@link GetAnalyzerCommandOutput}
28
35
  * @see {@link GetAnalyzerCommandInput} for command's `input` shape.
29
36
  * @see {@link GetAnalyzerCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
49
56
  export declare class GetAnalyzerCommand extends $Command<GetAnalyzerCommandInput, GetAnalyzerCommandOutput, AccessAnalyzerClientResolvedConfig> {
50
57
  readonly input: GetAnalyzerCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetAnalyzerCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnalyzerCommandInput, GetAnalyzerCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetArchiveRuleRequest, GetArchiveRuleResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetArchiveRuleCommand}.
8
10
  */
9
11
  export interface GetArchiveRuleCommandInput extends GetArchiveRuleRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetArchiveRuleCommand}.
13
17
  */
14
18
  export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about an archive rule.</p>
18
23
  * <p>To learn about filter keys that you can use to create an archive rule, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetArchiveRuleCommandInput - {@link GetArchiveRuleCommandInput}
35
+ * @returns {@link GetArchiveRuleCommandOutput}
29
36
  * @see {@link GetArchiveRuleCommandInput} for command's `input` shape.
30
37
  * @see {@link GetArchiveRuleCommandOutput} for command's `response` shape.
31
38
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
50
57
  export declare class GetArchiveRuleCommand extends $Command<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput, AccessAnalyzerClientResolvedConfig> {
51
58
  readonly input: GetArchiveRuleCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: GetArchiveRuleCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetArchiveRuleCommandInput, GetArchiveRuleCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetFindingRequest, GetFindingResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetFindingCommand}.
8
10
  */
9
11
  export interface GetFindingCommandInput extends GetFindingRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetFindingCommand}.
13
17
  */
14
18
  export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information about the specified finding.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetFindingCommandInput - {@link GetFindingCommandInput}
34
+ * @returns {@link GetFindingCommandOutput}
28
35
  * @see {@link GetFindingCommandInput} for command's `input` shape.
29
36
  * @see {@link GetFindingCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
49
56
  export declare class GetFindingCommand extends $Command<GetFindingCommandInput, GetFindingCommandOutput, AccessAnalyzerClientResolvedConfig> {
50
57
  readonly input: GetFindingCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: GetFindingCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetFindingCommandInput, GetFindingCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { GetGeneratedPolicyRequest, GetGeneratedPolicyResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetGeneratedPolicyCommand}.
8
10
  */
9
11
  export interface GetGeneratedPolicyCommandInput extends GetGeneratedPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetGeneratedPolicyCommand}.
13
17
  */
14
18
  export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the policy that was generated using <code>StartPolicyGeneration</code>.
18
23
  * </p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetGeneratedPolicyCommandInput - {@link GetGeneratedPolicyCommandInput}
35
+ * @returns {@link GetGeneratedPolicyCommandOutput}
29
36
  * @see {@link GetGeneratedPolicyCommandInput} for command's `input` shape.
30
37
  * @see {@link GetGeneratedPolicyCommandOutput} for command's `response` shape.
31
38
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -47,11 +54,20 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
47
54
  export declare class GetGeneratedPolicyCommand extends $Command<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput, AccessAnalyzerClientResolvedConfig> {
48
55
  readonly input: GetGeneratedPolicyCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: GetGeneratedPolicyCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetGeneratedPolicyCommandInput, GetGeneratedPolicyCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListAccessPreviewFindingsRequest, ListAccessPreviewFindingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAccessPreviewFindingsCommand}.
8
10
  */
9
11
  export interface ListAccessPreviewFindingsCommandInput extends ListAccessPreviewFindingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAccessPreviewFindingsCommand}.
13
17
  */
14
18
  export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPreviewFindingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of access preview findings generated by the specified access
18
23
  * preview.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListAccessPreviewFindingsCommandInput - {@link ListAccessPreviewFindingsCommandInput}
35
+ * @returns {@link ListAccessPreviewFindingsCommandOutput}
29
36
  * @see {@link ListAccessPreviewFindingsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListAccessPreviewFindingsCommandOutput} for command's `response` shape.
31
38
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -53,11 +60,20 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
53
60
  export declare class ListAccessPreviewFindingsCommand extends $Command<ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
54
61
  readonly input: ListAccessPreviewFindingsCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: ListAccessPreviewFindingsCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessPreviewFindingsCommandInput, ListAccessPreviewFindingsCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListAccessPreviewsRequest, ListAccessPreviewsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAccessPreviewsCommand}.
8
10
  */
9
11
  export interface ListAccessPreviewsCommandInput extends ListAccessPreviewsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAccessPreviewsCommand}.
13
17
  */
14
18
  export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of access previews for the specified analyzer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListAccessPreviewsCommandInput - {@link ListAccessPreviewsCommandInput}
34
+ * @returns {@link ListAccessPreviewsCommandOutput}
28
35
  * @see {@link ListAccessPreviewsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListAccessPreviewsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
49
56
  export declare class ListAccessPreviewsCommand extends $Command<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput, AccessAnalyzerClientResolvedConfig> {
50
57
  readonly input: ListAccessPreviewsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListAccessPreviewsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAccessPreviewsCommandInput, ListAccessPreviewsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListAnalyzedResourcesRequest, ListAnalyzedResourcesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAnalyzedResourcesCommand}.
8
10
  */
9
11
  export interface ListAnalyzedResourcesCommandInput extends ListAnalyzedResourcesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAnalyzedResourcesCommand}.
13
17
  */
14
18
  export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResourcesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of resources of the specified type that have been analyzed by the
18
23
  * specified analyzer..</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListAnalyzedResourcesCommandInput - {@link ListAnalyzedResourcesCommandInput}
35
+ * @returns {@link ListAnalyzedResourcesCommandOutput}
29
36
  * @see {@link ListAnalyzedResourcesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListAnalyzedResourcesCommandOutput} for command's `response` shape.
31
38
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
50
57
  export declare class ListAnalyzedResourcesCommand extends $Command<ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput, AccessAnalyzerClientResolvedConfig> {
51
58
  readonly input: ListAnalyzedResourcesCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListAnalyzedResourcesCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnalyzedResourcesCommandInput, ListAnalyzedResourcesCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListAnalyzersRequest, ListAnalyzersResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAnalyzersCommand}.
8
10
  */
9
11
  export interface ListAnalyzersCommandInput extends ListAnalyzersRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAnalyzersCommand}.
13
17
  */
14
18
  export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of analyzers.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListAnalyzersCommandInput - {@link ListAnalyzersCommandInput}
34
+ * @returns {@link ListAnalyzersCommandOutput}
28
35
  * @see {@link ListAnalyzersCommandInput} for command's `input` shape.
29
36
  * @see {@link ListAnalyzersCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
46
53
  export declare class ListAnalyzersCommand extends $Command<ListAnalyzersCommandInput, ListAnalyzersCommandOutput, AccessAnalyzerClientResolvedConfig> {
47
54
  readonly input: ListAnalyzersCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListAnalyzersCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAnalyzersCommandInput, ListAnalyzersCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListArchiveRulesRequest, ListArchiveRulesResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListArchiveRulesCommand}.
8
10
  */
9
11
  export interface ListArchiveRulesCommandInput extends ListArchiveRulesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListArchiveRulesCommand}.
13
17
  */
14
18
  export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of archive rules created for the specified analyzer.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListArchiveRulesCommandInput - {@link ListArchiveRulesCommandInput}
34
+ * @returns {@link ListArchiveRulesCommandOutput}
28
35
  * @see {@link ListArchiveRulesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListArchiveRulesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
46
53
  export declare class ListArchiveRulesCommand extends $Command<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput, AccessAnalyzerClientResolvedConfig> {
47
54
  readonly input: ListArchiveRulesCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListArchiveRulesCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListArchiveRulesCommandInput, ListArchiveRulesCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListFindingsCommand}.
8
10
  */
9
11
  export interface ListFindingsCommandInput extends ListFindingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListFindingsCommand}.
13
17
  */
14
18
  export interface ListFindingsCommandOutput extends ListFindingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves a list of findings generated by the specified analyzer.</p>
18
23
  * <p>To learn about filter keys that you can use to retrieve a list of findings, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access-analyzer-reference-filter-keys.html">IAM Access Analyzer filter keys</a> in the <b>IAM User Guide</b>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListFindingsCommandInput - {@link ListFindingsCommandInput}
35
+ * @returns {@link ListFindingsCommandOutput}
29
36
  * @see {@link ListFindingsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListFindingsCommandOutput} for command's `response` shape.
31
38
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
50
57
  export declare class ListFindingsCommand extends $Command<ListFindingsCommandInput, ListFindingsCommandOutput, AccessAnalyzerClientResolvedConfig> {
51
58
  readonly input: ListFindingsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListFindingsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFindingsCommandInput, ListFindingsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AccessAnalyzerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AccessAnalyzerClient";
5
5
  import { ListPolicyGenerationsRequest, ListPolicyGenerationsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPolicyGenerationsCommand}.
8
10
  */
9
11
  export interface ListPolicyGenerationsCommandInput extends ListPolicyGenerationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPolicyGenerationsCommand}.
13
17
  */
14
18
  export interface ListPolicyGenerationsCommandOutput extends ListPolicyGenerationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all of the policy generations requested in the last seven days.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPolicyGenerationsCommandInput - {@link ListPolicyGenerationsCommandInput}
34
+ * @returns {@link ListPolicyGenerationsCommandOutput}
28
35
  * @see {@link ListPolicyGenerationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPolicyGenerationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link AccessAnalyzerClientResolvedConfig | config} for AccessAnalyzerClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration
46
53
  export declare class ListPolicyGenerationsCommand extends $Command<ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput, AccessAnalyzerClientResolvedConfig> {
47
54
  readonly input: ListPolicyGenerationsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListPolicyGenerationsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AccessAnalyzerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPolicyGenerationsCommandInput, ListPolicyGenerationsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }