Skip to content

Commit 89403aa

Browse files
authored
docs(clients): fix a typo in command examples (#2354)
1 parent 2165d4a commit 89403aa

File tree

9,606 files changed

+9606
-9606
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,606 files changed

+9606
-9606
lines changed

clients/client-accessanalyzer/commands/ApplyArchiveRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {}
2424
* <p>Retroactively applies the archive rule to existing findings that meet the archive rule
2525
* criteria.</p>
2626
* @example
27-
* User a bare-bones client and the command you need to make an API call.
27+
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
2929
* import { AccessAnalyzerClient, ApplyArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3030
* // const { AccessAnalyzerClient, ApplyArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/CancelPolicyGenerationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
2323
/**
2424
* <p>Cancels the requested policy generation.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, CancelPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, CancelPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/CreateAccessPreviewCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface CreateAccessPreviewCommandOutput extends CreateAccessPreviewRes
2424
* <p>Creates an access preview that allows you to preview Access Analyzer findings for your resource
2525
* before deploying resource permissions.</p>
2626
* @example
27-
* User a bare-bones client and the command you need to make an API call.
27+
* Use a bare-bones client and the command you need to make an API call.
2828
* ```javascript
2929
* import { AccessAnalyzerClient, CreateAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3030
* // const { AccessAnalyzerClient, CreateAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/CreateAnalyzerCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateAnalyzerCommandOutput extends CreateAnalyzerResponse, __M
2323
/**
2424
* <p>Creates an analyzer for your account.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, CreateAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, CreateAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/CreateArchiveRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export interface CreateArchiveRuleCommandOutput extends __MetadataBearer {}
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>
2828
* @example
29-
* User a bare-bones client and the command you need to make an API call.
29+
* Use a bare-bones client and the command you need to make an API call.
3030
* ```javascript
3131
* import { AccessAnalyzerClient, CreateArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3232
* // const { AccessAnalyzerClient, CreateArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/DeleteAnalyzerCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface DeleteAnalyzerCommandOutput extends __MetadataBearer {}
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>
2727
* @example
28-
* User a bare-bones client and the command you need to make an API call.
28+
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript
3030
* import { AccessAnalyzerClient, DeleteAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3131
* // const { AccessAnalyzerClient, DeleteAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/DeleteArchiveRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteArchiveRuleCommandOutput extends __MetadataBearer {}
2323
/**
2424
* <p>Deletes the specified archive rule.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, DeleteArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, DeleteArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/GetAccessPreviewCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetAccessPreviewCommandOutput extends GetAccessPreviewResponse,
2323
/**
2424
* <p>Retrieves information about an access preview for the specified analyzer.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, GetAccessPreviewCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, GetAccessPreviewCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/GetAnalyzedResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetAnalyzedResourceCommandOutput extends GetAnalyzedResourceRes
2323
/**
2424
* <p>Retrieves information about a resource that was analyzed.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, GetAnalyzedResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, GetAnalyzedResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/GetAnalyzerCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetAnalyzerCommandOutput extends GetAnalyzerResponse, __Metadat
2323
/**
2424
* <p>Retrieves information about the specified analyzer.</p>
2525
* @example
26-
* User a bare-bones client and the command you need to make an API call.
26+
* Use a bare-bones client and the command you need to make an API call.
2727
* ```javascript
2828
* import { AccessAnalyzerClient, GetAnalyzerCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, GetAnalyzerCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

0 commit comments

Comments
 (0)