Skip to content

Commit b3ff58d

Browse files
authoredMar 24, 2023
feat(clients): codegen for structural hint documentation in commands (#4573)
* feat(clients): example codegen for structural hint documentation in commands * feat(clients): codegen for command documentation, input structural hints
1 parent f15e1db commit b3ff58d

File tree

13,170 files changed

+277321
-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.

13,170 files changed

+277321
-0
lines changed
 

‎clients/client-accessanalyzer/src/commands/ApplyArchiveRuleCommand.ts

+5
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ export interface ApplyArchiveRuleCommandOutput extends __MetadataBearer {}
4343
* import { AccessAnalyzerClient, ApplyArchiveRuleCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
4444
* // const { AccessAnalyzerClient, ApplyArchiveRuleCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
4545
* const client = new AccessAnalyzerClient(config);
46+
* const input = {
47+
* analyzerArn: "STRING_VALUE", // required
48+
* ruleName: "STRING_VALUE", // required
49+
* clientToken: "STRING_VALUE",
50+
* };
4651
* const command = new ApplyArchiveRuleCommand(input);
4752
* const response = await client.send(command);
4853
* ```

‎clients/client-accessanalyzer/src/commands/CancelPolicyGenerationCommand.ts

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ export interface CancelPolicyGenerationCommandOutput extends CancelPolicyGenerat
4242
* import { AccessAnalyzerClient, CancelPolicyGenerationCommand } from "@aws-sdk/client-accessanalyzer"; // ES Modules import
4343
* // const { AccessAnalyzerClient, CancelPolicyGenerationCommand } = require("@aws-sdk/client-accessanalyzer"); // CommonJS import
4444
* const client = new AccessAnalyzerClient(config);
45+
* const input = {
46+
* jobId: "STRING_VALUE", // required
47+
* };
4548
* const command = new CancelPolicyGenerationCommand(input);
4649
* const response = await client.send(command);
4750
* ```

0 commit comments

Comments
 (0)
Please sign in to comment.