Skip to content

Commit 2165d4a

Browse files
authored
docs(clients): generate examples of making request with bare-bones clients (#2347)
* docs(client): generate examples for barebone client commands API * docs(client): mark filterSensitiveLogs() internal * docs(client): add import statements for command examples
1 parent e97e357 commit 2165d4a

File tree

9,901 files changed

+227388
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,901 files changed

+227388
-0
lines changed

clients/client-accessanalyzer/commands/ApplyArchiveRuleCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {}
2323
/**
2424
* <p>Retroactively applies the archive rule to existing findings that meet the archive rule
2525
* criteria.</p>
26+
* @example
27+
* User a bare-bones client and the command you need to make an API call.
28+
* ```javascript
29+
* import { AccessAnalyzerClient, ApplyArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
30+
* // const { AccessAnalyzerClient, ApplyArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
31+
* const client = new AccessAnalyzerClient(config);
32+
* const command = new ApplyArchiveRuleCommand(input);
33+
* const response = await client.send(command);
34+
* ```
35+
*
36+
* @see {@link ApplyArchiveRuleCommandInput} for command's `input` shape.
37+
* @see {@link ApplyArchiveRuleCommandOutput} for command's `response` shape.
38+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
39+
*
2640
*/
2741
export class ApplyArchiveRuleCommand extends $Command<
2842
ApplyArchiveRuleCommandInput,

clients/client-accessanalyzer/commands/CancelPolicyGenerationCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
2222

2323
/**
2424
* <p>Cancels the requested policy generation.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, CancelPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, CancelPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new CancelPolicyGenerationCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link CancelPolicyGenerationCommandInput} for command's `input` shape.
36+
* @see {@link CancelPolicyGenerationCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class CancelPolicyGenerationCommand extends $Command<
2741
CancelPolicyGenerationCommandInput,

clients/client-accessanalyzer/commands/CreateAccessPreviewCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
2323
/**
2424
* <p>Creates an access preview that allows you to preview Access Analyzer findings for your resource
2525
* before deploying resource permissions.</p>
26+
* @example
27+
* User a bare-bones client and the command you need to make an API call.
28+
* ```javascript
29+
* import { AccessAnalyzerClient, CreateAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
30+
* // const { AccessAnalyzerClient, CreateAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
31+
* const client = new AccessAnalyzerClient(config);
32+
* const command = new CreateAccessPreviewCommand(input);
33+
* const response = await client.send(command);
34+
* ```
35+
*
36+
* @see {@link CreateAccessPreviewCommandInput} for command's `input` shape.
37+
* @see {@link CreateAccessPreviewCommandOutput} for command's `response` shape.
38+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
39+
*
2640
*/
2741
export class CreateAccessPreviewCommand extends $Command<
2842
CreateAccessPreviewCommandInput,

clients/client-accessanalyzer/commands/CreateAnalyzerCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
2222

2323
/**
2424
* <p>Creates an analyzer for your account.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, CreateAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, CreateAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new CreateAnalyzerCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link CreateAnalyzerCommandInput} for command's `input` shape.
36+
* @see {@link CreateAnalyzerCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class CreateAnalyzerCommand extends $Command<
2741
CreateAnalyzerCommandInput,

clients/client-accessanalyzer/commands/CreateArchiveRuleCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {}
2525
* new findings that meet the criteria you define when you create the rule.</p>
2626
* <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">Access Analyzer filter keys</a> in the <b>IAM User
2727
* Guide</b>.</p>
28+
* @example
29+
* User a bare-bones client and the command you need to make an API call.
30+
* ```javascript
31+
* import { AccessAnalyzerClient, CreateArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
32+
* // const { AccessAnalyzerClient, CreateArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
33+
* const client = new AccessAnalyzerClient(config);
34+
* const command = new CreateArchiveRuleCommand(input);
35+
* const response = await client.send(command);
36+
* ```
37+
*
38+
* @see {@link CreateArchiveRuleCommandInput} for command's `input` shape.
39+
* @see {@link CreateArchiveRuleCommandOutput} for command's `response` shape.
40+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
41+
*
2842
*/
2943
export class CreateArchiveRuleCommand extends $Command<
3044
CreateArchiveRuleCommandInput,

clients/client-accessanalyzer/commands/DeleteAnalyzerCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {}
2424
* <p>Deletes the specified analyzer. When you delete an analyzer, Access Analyzer is disabled for the
2525
* account or organization in the current or specific Region. All findings that were generated
2626
* by the analyzer are deleted. You cannot undo this action.</p>
27+
* @example
28+
* User a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { AccessAnalyzerClient, DeleteAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
31+
* // const { AccessAnalyzerClient, DeleteAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
32+
* const client = new AccessAnalyzerClient(config);
33+
* const command = new DeleteAnalyzerCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link DeleteAnalyzerCommandInput} for command's `input` shape.
38+
* @see {@link DeleteAnalyzerCommandOutput} for command's `response` shape.
39+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
40+
*
2741
*/
2842
export class DeleteAnalyzerCommand extends $Command<
2943
DeleteAnalyzerCommandInput,

clients/client-accessanalyzer/commands/DeleteArchiveRuleCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {}
2222

2323
/**
2424
* <p>Deletes the specified archive rule.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, DeleteArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, DeleteArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new DeleteArchiveRuleCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link DeleteArchiveRuleCommandInput} for command's `input` shape.
36+
* @see {@link DeleteArchiveRuleCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class DeleteArchiveRuleCommand extends $Command<
2741
DeleteArchiveRuleCommandInput,

clients/client-accessanalyzer/commands/GetAccessPreviewCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
2222

2323
/**
2424
* <p>Retrieves information about an access preview for the specified analyzer.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, GetAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, GetAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new GetAccessPreviewCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link GetAccessPreviewCommandInput} for command's `input` shape.
36+
* @see {@link GetAccessPreviewCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class GetAccessPreviewCommand extends $Command<
2741
GetAccessPreviewCommandInput,

clients/client-accessanalyzer/commands/GetAnalyzedResourceCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
2222

2323
/**
2424
* <p>Retrieves information about a resource that was analyzed.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, GetAnalyzedResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, GetAnalyzedResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new GetAnalyzedResourceCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link GetAnalyzedResourceCommandInput} for command's `input` shape.
36+
* @see {@link GetAnalyzedResourceCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class GetAnalyzedResourceCommand extends $Command<
2741
GetAnalyzedResourceCommandInput,

clients/client-accessanalyzer/commands/GetAnalyzerCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
2222

2323
/**
2424
* <p>Retrieves information about the specified analyzer.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, GetAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, GetAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new GetAnalyzerCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link GetAnalyzerCommandInput} for command's `input` shape.
36+
* @see {@link GetAnalyzerCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class GetAnalyzerCommand extends $Command<
2741
GetAnalyzerCommandInput,

clients/client-accessanalyzer/commands/GetArchiveRuleCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
2424
* <p>Retrieves information about an archive rule.</p>
2525
* <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">Access Analyzer filter keys</a> in the <b>IAM User
2626
* Guide</b>.</p>
27+
* @example
28+
* User a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { AccessAnalyzerClient, GetArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
31+
* // const { AccessAnalyzerClient, GetArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
32+
* const client = new AccessAnalyzerClient(config);
33+
* const command = new GetArchiveRuleCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link GetArchiveRuleCommandInput} for command's `input` shape.
38+
* @see {@link GetArchiveRuleCommandOutput} for command's `response` shape.
39+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
40+
*
2741
*/
2842
export class GetArchiveRuleCommand extends $Command<
2943
GetArchiveRuleCommandInput,

clients/client-accessanalyzer/commands/GetFindingCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
2222

2323
/**
2424
* <p>Retrieves information about the specified finding.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, GetFindingCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, GetFindingCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new GetFindingCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link GetFindingCommandInput} for command's `input` shape.
36+
* @see {@link GetFindingCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class GetFindingCommand extends $Command<
2741
GetFindingCommandInput,

clients/client-accessanalyzer/commands/GetGeneratedPolicyCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
2323
/**
2424
* <p>Retrieves the policy that was generated using <code>StartPolicyGeneration</code>.
2525
* </p>
26+
* @example
27+
* User a bare-bones client and the command you need to make an API call.
28+
* ```javascript
29+
* import { AccessAnalyzerClient, GetGeneratedPolicyCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
30+
* // const { AccessAnalyzerClient, GetGeneratedPolicyCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
31+
* const client = new AccessAnalyzerClient(config);
32+
* const command = new GetGeneratedPolicyCommand(input);
33+
* const response = await client.send(command);
34+
* ```
35+
*
36+
* @see {@link GetGeneratedPolicyCommandInput} for command's `input` shape.
37+
* @see {@link GetGeneratedPolicyCommandOutput} for command's `response` shape.
38+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
39+
*
2640
*/
2741
export class GetGeneratedPolicyCommand extends $Command<
2842
GetGeneratedPolicyCommandInput,

clients/client-accessanalyzer/commands/ListAccessPreviewFindingsCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
2323
/**
2424
* <p>Retrieves a list of access preview findings generated by the specified access
2525
* preview.</p>
26+
* @example
27+
* User a bare-bones client and the command you need to make an API call.
28+
* ```javascript
29+
* import { AccessAnalyzerClient, ListAccessPreviewFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
30+
* // const { AccessAnalyzerClient, ListAccessPreviewFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
31+
* const client = new AccessAnalyzerClient(config);
32+
* const command = new ListAccessPreviewFindingsCommand(input);
33+
* const response = await client.send(command);
34+
* ```
35+
*
36+
* @see {@link ListAccessPreviewFindingsCommandInput} for command's `input` shape.
37+
* @see {@link ListAccessPreviewFindingsCommandOutput} for command's `response` shape.
38+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
39+
*
2640
*/
2741
export class ListAccessPreviewFindingsCommand extends $Command<
2842
ListAccessPreviewFindingsCommandInput,

clients/client-accessanalyzer/commands/ListAccessPreviewsCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
2222

2323
/**
2424
* <p>Retrieves a list of access previews for the specified analyzer.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, ListAccessPreviewsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, ListAccessPreviewsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new ListAccessPreviewsCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link ListAccessPreviewsCommandInput} for command's `input` shape.
36+
* @see {@link ListAccessPreviewsCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class ListAccessPreviewsCommand extends $Command<
2741
ListAccessPreviewsCommandInput,

clients/client-accessanalyzer/commands/ListAnalyzedResourcesCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,20 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
2323
/**
2424
* <p>Retrieves a list of resources of the specified type that have been analyzed by the
2525
* specified analyzer..</p>
26+
* @example
27+
* User a bare-bones client and the command you need to make an API call.
28+
* ```javascript
29+
* import { AccessAnalyzerClient, ListAnalyzedResourcesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
30+
* // const { AccessAnalyzerClient, ListAnalyzedResourcesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
31+
* const client = new AccessAnalyzerClient(config);
32+
* const command = new ListAnalyzedResourcesCommand(input);
33+
* const response = await client.send(command);
34+
* ```
35+
*
36+
* @see {@link ListAnalyzedResourcesCommandInput} for command's `input` shape.
37+
* @see {@link ListAnalyzedResourcesCommandOutput} for command's `response` shape.
38+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
39+
*
2640
*/
2741
export class ListAnalyzedResourcesCommand extends $Command<
2842
ListAnalyzedResourcesCommandInput,

clients/client-accessanalyzer/commands/ListAnalyzersCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
2222

2323
/**
2424
* <p>Retrieves a list of analyzers.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, ListAnalyzersCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, ListAnalyzersCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new ListAnalyzersCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link ListAnalyzersCommandInput} for command's `input` shape.
36+
* @see {@link ListAnalyzersCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class ListAnalyzersCommand extends $Command<
2741
ListAnalyzersCommandInput,

clients/client-accessanalyzer/commands/ListArchiveRulesCommand.ts

+14
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,20 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
2222

2323
/**
2424
* <p>Retrieves a list of archive rules created for the specified analyzer.</p>
25+
* @example
26+
* User a bare-bones client and the command you need to make an API call.
27+
* ```javascript
28+
* import { AccessAnalyzerClient, ListArchiveRulesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
29+
* // const { AccessAnalyzerClient, ListArchiveRulesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
30+
* const client = new AccessAnalyzerClient(config);
31+
* const command = new ListArchiveRulesCommand(input);
32+
* const response = await client.send(command);
33+
* ```
34+
*
35+
* @see {@link ListArchiveRulesCommandInput} for command's `input` shape.
36+
* @see {@link ListArchiveRulesCommandOutput} for command's `response` shape.
37+
* @see {@link AccessAnalyzerClientResolvedConfig | config} for command's `input` shape.
38+
*
2539
*/
2640
export class ListArchiveRulesCommand extends $Command<
2741
ListArchiveRulesCommandInput,

0 commit comments

Comments
 (0)