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

clients/client-accessanalyzer/commands/GetArchiveRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface GetArchiveRuleCommandOutput extends GetArchiveRuleResponse, __M
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>
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, GetArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3131
* // const { AccessAnalyzerClient, GetArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/GetFindingCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetFindingCommandOutput extends GetFindingResponse, __MetadataB
2323
/**
2424
* <p>Retrieves information about the specified finding.</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, GetFindingCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, GetFindingCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/GetGeneratedPolicyCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface GetGeneratedPolicyCommandOutput extends GetGeneratedPolicyRespo
2424
* <p>Retrieves the policy that was generated using <code>StartPolicyGeneration</code>.
2525
* </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, GetGeneratedPolicyCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3030
* // const { AccessAnalyzerClient, GetGeneratedPolicyCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListAccessPreviewFindingsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface ListAccessPreviewFindingsCommandOutput extends ListAccessPrevie
2424
* <p>Retrieves a list of access preview findings generated by the specified access
2525
* preview.</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, ListAccessPreviewFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3030
* // const { AccessAnalyzerClient, ListAccessPreviewFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListAccessPreviewsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ListAccessPreviewsCommandOutput extends ListAccessPreviewsRespo
2323
/**
2424
* <p>Retrieves a list of access previews 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, ListAccessPreviewsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, ListAccessPreviewsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListAnalyzedResourcesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export interface ListAnalyzedResourcesCommandOutput extends ListAnalyzedResource
2424
* <p>Retrieves a list of resources of the specified type that have been analyzed by the
2525
* specified analyzer..</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, ListAnalyzedResourcesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3030
* // const { AccessAnalyzerClient, ListAnalyzedResourcesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListAnalyzersCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ListAnalyzersCommandOutput extends ListAnalyzersResponse, __Met
2323
/**
2424
* <p>Retrieves a list of analyzers.</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, ListAnalyzersCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, ListAnalyzersCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListArchiveRulesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ListArchiveRulesCommandOutput extends ListArchiveRulesResponse,
2323
/**
2424
* <p>Retrieves a list of archive rules created 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, ListArchiveRulesCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, ListArchiveRulesCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListFindingsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface ListFindingsCommandOutput extends ListFindingsResponse, __Metad
2525
* <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">Access Analyzer filter keys</a> in the <b>IAM User
2626
* Guide</b>.</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, ListFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3131
* // const { AccessAnalyzerClient, ListFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListPolicyGenerationsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ListPolicyGenerationsCommandOutput extends ListPolicyGeneration
2323
/**
2424
* <p>Lists all of the policy generations requested in the last seven days.</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, ListPolicyGenerationsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, ListPolicyGenerationsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ListTagsForResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
2323
/**
2424
* <p>Retrieves a list of tags applied to the specified resource.</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, ListTagsForResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, ListTagsForResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/StartPolicyGenerationCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface StartPolicyGenerationCommandOutput extends StartPolicyGeneratio
2323
/**
2424
* <p>Starts the policy generation request.</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, StartPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, StartPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/StartResourceScanCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface StartResourceScanCommandOutput extends __MetadataBearer {}
2323
/**
2424
* <p>Immediately starts a scan of the policies applied to the specified resource.</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, StartResourceScanCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, StartResourceScanCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/TagResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
2323
/**
2424
* <p>Adds a tag to the specified resource.</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, TagResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, TagResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/UntagResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
2323
/**
2424
* <p>Removes a tag from the specified resource.</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, UntagResourceCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, UntagResourceCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/UpdateArchiveRuleCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface UpdateArchiveRuleCommandOutput extends __MetadataBearer {}
2323
/**
2424
* <p>Updates the criteria and values for 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, UpdateArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, UpdateArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/UpdateFindingsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface UpdateFindingsCommandOutput extends __MetadataBearer {}
2323
/**
2424
* <p>Updates the status for the specified findings.</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, UpdateFindingsCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
2929
* // const { AccessAnalyzerClient, UpdateFindingsCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-accessanalyzer/commands/ValidatePolicyCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export interface ValidatePolicyCommandOutput extends ValidatePolicyResponse, __M
2525
* you identify issues and provide actionable recommendations to resolve the issue and enable
2626
* you to author functional policies that meet security best practices. </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, ValidatePolicyCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
3131
* // const { AccessAnalyzerClient, ValidatePolicyCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import

clients/client-acm-pca/commands/CreateCertificateAuthorityAuditReportCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export interface CreateCertificateAuthorityAuditReportCommandOutput
4444
* For more information, see <a href="https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaAuditReport.html#audit-report-encryption">Encrypting Your Audit
4545
* Reports</a>.</p>
4646
* @example
47-
* User a bare-bones client and the command you need to make an API call.
47+
* Use a bare-bones client and the command you need to make an API call.
4848
* ```javascript
4949
* import { ACMPCAClient, CreateCertificateAuthorityAuditReportCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
5050
* // const { ACMPCAClient, CreateCertificateAuthorityAuditReportCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import

clients/client-acm-pca/commands/CreateCertificateAuthorityCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface CreateCertificateAuthorityCommandOutput extends CreateCertifica
4141
* Access to ACM Private CA</a>.</p>
4242
* </note>
4343
* @example
44-
* User a bare-bones client and the command you need to make an API call.
44+
* Use a bare-bones client and the command you need to make an API call.
4545
* ```javascript
4646
* import { ACMPCAClient, CreateCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
4747
* // const { ACMPCAClient, CreateCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import

clients/client-acm-pca/commands/CreatePermissionCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface CreatePermissionCommandOutput extends __MetadataBearer {}
4949
* </li>
5050
* </ul>
5151
* @example
52-
* User a bare-bones client and the command you need to make an API call.
52+
* Use a bare-bones client and the command you need to make an API call.
5353
* ```javascript
5454
* import { ACMPCAClient, CreatePermissionCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
5555
* // const { ACMPCAClient, CreatePermissionCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import

clients/client-acm-pca/commands/DeleteCertificateAuthorityCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export interface DeleteCertificateAuthorityCommandOutput extends __MetadataBeare
4242
* restoration window of a private CA in the <code>DELETED</code> state. To restore an
4343
* eligible CA, call the <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_RestoreCertificateAuthority.html">RestoreCertificateAuthority</a> action.</p>
4444
* @example
45-
* User a bare-bones client and the command you need to make an API call.
45+
* Use a bare-bones client and the command you need to make an API call.
4646
* ```javascript
4747
* import { ACMPCAClient, DeleteCertificateAuthorityCommand } from "@aws-sdk/client-acm-pca"; // ES Modules import
4848
* // const { ACMPCAClient, DeleteCertificateAuthorityCommand } = require("@aws-sdk/client-acm-pca"); // CommonJS import

0 commit comments

Comments
 (0)