Skip to content

Commit 6c5b677

Browse files
author
awstools
committed
docs(client-api-gateway): Documentation updates for Amazon API Gateway
1 parent 920eafe commit 6c5b677

File tree

87 files changed

+1742
-2660
lines changed

Some content is hidden

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

87 files changed

+1742
-2660
lines changed

clients/client-api-gateway/src/APIGateway.ts

Lines changed: 110 additions & 82 deletions
Large diffs are not rendered by default.

clients/client-api-gateway/src/commands/CreateApiKeyCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface CreateApiKeyCommandInput extends CreateApiKeyRequest {}
2323
export interface CreateApiKeyCommandOutput extends ApiKey, __MetadataBearer {}
2424

2525
/**
26-
* <p>Create an <a>ApiKey</a> resource. </p>
27-
* <div class="seeAlso"><a href="https://docs.aws.amazon.com/cli/latest/reference/apigateway/create-api-key.html">AWS CLI</a></div>
26+
* <p>Create an ApiKey resource. </p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/CreateAuthorizerCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface CreateAuthorizerCommandInput extends CreateAuthorizerRequest {}
2323
export interface CreateAuthorizerCommandOutput extends Authorizer, __MetadataBearer {}
2424

2525
/**
26-
* <p>Adds a new <a>Authorizer</a> resource to an existing <a>RestApi</a> resource.</p>
27-
* <div class="seeAlso"><a href="https://docs.aws.amazon.com/cli/latest/reference/apigateway/create-authorizer.html">AWS CLI</a></div>
26+
* <p>Adds a new Authorizer resource to an existing RestApi resource.</p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/CreateBasePathMappingCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateBasePathMappingCommandInput extends CreateBasePathMapping
2323
export interface CreateBasePathMappingCommandOutput extends BasePathMapping, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a new <a>BasePathMapping</a> resource.</p>
26+
* <p>Creates a new BasePathMapping resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateDeploymentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {}
2323
export interface CreateDeploymentCommandOutput extends Deployment, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a <a>Deployment</a> resource, which makes a specified <a>RestApi</a> callable over the internet.</p>
26+
* <p>Creates a Deployment resource, which makes a specified RestApi callable over the internet.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateDocumentationPartCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@ import {
2222
export interface CreateDocumentationPartCommandInput extends CreateDocumentationPartRequest {}
2323
export interface CreateDocumentationPartCommandOutput extends DocumentationPart, __MetadataBearer {}
2424

25+
/**
26+
* <p>Creates a documentation part.</p>
27+
* @example
28+
* Use a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { APIGatewayClient, CreateDocumentationPartCommand } from "@aws-sdk/client-api-gateway"; // ES Modules import
31+
* // const { APIGatewayClient, CreateDocumentationPartCommand } = require("@aws-sdk/client-api-gateway"); // CommonJS import
32+
* const client = new APIGatewayClient(config);
33+
* const command = new CreateDocumentationPartCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link CreateDocumentationPartCommandInput} for command's `input` shape.
38+
* @see {@link CreateDocumentationPartCommandOutput} for command's `response` shape.
39+
* @see {@link APIGatewayClientResolvedConfig | config} for APIGatewayClient's `config` shape.
40+
*
41+
*/
2542
export class CreateDocumentationPartCommand extends $Command<
2643
CreateDocumentationPartCommandInput,
2744
CreateDocumentationPartCommandOutput,

clients/client-api-gateway/src/commands/CreateDocumentationVersionCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@ import {
2222
export interface CreateDocumentationVersionCommandInput extends CreateDocumentationVersionRequest {}
2323
export interface CreateDocumentationVersionCommandOutput extends DocumentationVersion, __MetadataBearer {}
2424

25+
/**
26+
* <p>Creates a documentation version</p>
27+
* @example
28+
* Use a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { APIGatewayClient, CreateDocumentationVersionCommand } from "@aws-sdk/client-api-gateway"; // ES Modules import
31+
* // const { APIGatewayClient, CreateDocumentationVersionCommand } = require("@aws-sdk/client-api-gateway"); // CommonJS import
32+
* const client = new APIGatewayClient(config);
33+
* const command = new CreateDocumentationVersionCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link CreateDocumentationVersionCommandInput} for command's `input` shape.
38+
* @see {@link CreateDocumentationVersionCommandOutput} for command's `response` shape.
39+
* @see {@link APIGatewayClientResolvedConfig | config} for APIGatewayClient's `config` shape.
40+
*
41+
*/
2542
export class CreateDocumentationVersionCommand extends $Command<
2643
CreateDocumentationVersionCommandInput,
2744
CreateDocumentationVersionCommandOutput,

clients/client-api-gateway/src/commands/CreateModelCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateModelCommandInput extends CreateModelRequest {}
2323
export interface CreateModelCommandOutput extends Model, __MetadataBearer {}
2424

2525
/**
26-
* <p>Adds a new <a>Model</a> resource to an existing <a>RestApi</a> resource.</p>
26+
* <p>Adds a new Model resource to an existing RestApi resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateRequestValidatorCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateRequestValidatorCommandInput extends CreateRequestValidat
2323
export interface CreateRequestValidatorCommandOutput extends RequestValidator, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a <a>ReqeustValidator</a> of a given <a>RestApi</a>.</p>
26+
* <p>Creates a RequestValidator of a given RestApi.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateResourceCommandInput extends CreateResourceRequest {}
2323
export interface CreateResourceCommandOutput extends Resource, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a <a>Resource</a> resource.</p>
26+
* <p>Creates a Resource resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateRestApiCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface CreateRestApiCommandInput extends CreateRestApiRequest {}
2323
export interface CreateRestApiCommandOutput extends RestApi, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a new <a>RestApi</a> resource.</p>
26+
* <p>Creates a new RestApi resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/CreateStageCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface CreateStageCommandInput extends CreateStageRequest {}
2323
export interface CreateStageCommandOutput extends Stage, __MetadataBearer {}
2424

2525
/**
26-
* <p>Creates a new <a>Stage</a> resource that references a pre-existing <a>Deployment</a> for the API. </p>
27-
* <!-- <p>Creates a <a>Stage</a> resource.</p> -->
26+
* <p>Creates a new Stage resource that references a pre-existing Deployment for the API. </p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/DeleteApiKeyCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteApiKeyCommandInput extends DeleteApiKeyRequest {}
2323
export interface DeleteApiKeyCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes the <a>ApiKey</a> resource.</p>
26+
* <p>Deletes the ApiKey resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteAuthorizerCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface DeleteAuthorizerCommandInput extends DeleteAuthorizerRequest {}
2323
export interface DeleteAuthorizerCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes an existing <a>Authorizer</a> resource.</p>
27-
* <div class="seeAlso"><a href="https://docs.aws.amazon.com/cli/latest/reference/apigateway/delete-authorizer.html">AWS CLI</a></div>
26+
* <p>Deletes an existing Authorizer resource.</p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/DeleteBasePathMappingCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteBasePathMappingCommandInput extends DeleteBasePathMapping
2323
export interface DeleteBasePathMappingCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes the <a>BasePathMapping</a> resource.</p>
26+
* <p>Deletes the BasePathMapping resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteClientCertificateCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteClientCertificateCommandInput extends DeleteClientCertifi
2323
export interface DeleteClientCertificateCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes the <a>ClientCertificate</a> resource.</p>
26+
* <p>Deletes the ClientCertificate resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteDeploymentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteDeploymentCommandInput extends DeleteDeploymentRequest {}
2323
export interface DeleteDeploymentCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes a <a>Deployment</a> resource. Deleting a deployment will only succeed if there are no <a>Stage</a> resources associated with it.</p>
26+
* <p>Deletes a Deployment resource. Deleting a deployment will only succeed if there are no Stage resources associated with it.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteDocumentationPartCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@ import {
2222
export interface DeleteDocumentationPartCommandInput extends DeleteDocumentationPartRequest {}
2323
export interface DeleteDocumentationPartCommandOutput extends __MetadataBearer {}
2424

25+
/**
26+
* <p>Deletes a documentation part</p>
27+
* @example
28+
* Use a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { APIGatewayClient, DeleteDocumentationPartCommand } from "@aws-sdk/client-api-gateway"; // ES Modules import
31+
* // const { APIGatewayClient, DeleteDocumentationPartCommand } = require("@aws-sdk/client-api-gateway"); // CommonJS import
32+
* const client = new APIGatewayClient(config);
33+
* const command = new DeleteDocumentationPartCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link DeleteDocumentationPartCommandInput} for command's `input` shape.
38+
* @see {@link DeleteDocumentationPartCommandOutput} for command's `response` shape.
39+
* @see {@link APIGatewayClientResolvedConfig | config} for APIGatewayClient's `config` shape.
40+
*
41+
*/
2542
export class DeleteDocumentationPartCommand extends $Command<
2643
DeleteDocumentationPartCommandInput,
2744
DeleteDocumentationPartCommandOutput,

clients/client-api-gateway/src/commands/DeleteDocumentationVersionCommand.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,23 @@ import {
2222
export interface DeleteDocumentationVersionCommandInput extends DeleteDocumentationVersionRequest {}
2323
export interface DeleteDocumentationVersionCommandOutput extends __MetadataBearer {}
2424

25+
/**
26+
* <p>Deletes a documentation version.</p>
27+
* @example
28+
* Use a bare-bones client and the command you need to make an API call.
29+
* ```javascript
30+
* import { APIGatewayClient, DeleteDocumentationVersionCommand } from "@aws-sdk/client-api-gateway"; // ES Modules import
31+
* // const { APIGatewayClient, DeleteDocumentationVersionCommand } = require("@aws-sdk/client-api-gateway"); // CommonJS import
32+
* const client = new APIGatewayClient(config);
33+
* const command = new DeleteDocumentationVersionCommand(input);
34+
* const response = await client.send(command);
35+
* ```
36+
*
37+
* @see {@link DeleteDocumentationVersionCommandInput} for command's `input` shape.
38+
* @see {@link DeleteDocumentationVersionCommandOutput} for command's `response` shape.
39+
* @see {@link APIGatewayClientResolvedConfig | config} for APIGatewayClient's `config` shape.
40+
*
41+
*/
2542
export class DeleteDocumentationVersionCommand extends $Command<
2643
DeleteDocumentationVersionCommandInput,
2744
DeleteDocumentationVersionCommandOutput,

clients/client-api-gateway/src/commands/DeleteDomainNameCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteDomainNameCommandInput extends DeleteDomainNameRequest {}
2323
export interface DeleteDomainNameCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes the <a>DomainName</a> resource.</p>
26+
* <p>Deletes the DomainName resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteGatewayResponseCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteGatewayResponseCommandInput extends DeleteGatewayResponse
2323
export interface DeleteGatewayResponseCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Clears any customization of a <a>GatewayResponse</a> of a specified response type on the given <a>RestApi</a> and resets it with the default settings.</p>
26+
* <p>Clears any customization of a GatewayResponse of a specified response type on the given RestApi and resets it with the default settings.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteMethodCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteMethodCommandInput extends DeleteMethodRequest {}
2323
export interface DeleteMethodCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes an existing <a>Method</a> resource.</p>
26+
* <p>Deletes an existing Method resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteMethodResponseCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteMethodResponseCommandInput extends DeleteMethodResponseRe
2323
export interface DeleteMethodResponseCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes an existing <a>MethodResponse</a> resource.</p>
26+
* <p>Deletes an existing MethodResponse resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteRequestValidatorCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteRequestValidatorCommandInput extends DeleteRequestValidat
2323
export interface DeleteRequestValidatorCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes a <a>RequestValidator</a> of a given <a>RestApi</a>.</p>
26+
* <p>Deletes a RequestValidator of a given RestApi.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteResourceCommandInput extends DeleteResourceRequest {}
2323
export interface DeleteResourceCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes a <a>Resource</a> resource.</p>
26+
* <p>Deletes a Resource resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteStageCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteStageCommandInput extends DeleteStageRequest {}
2323
export interface DeleteStageCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes a <a>Stage</a> resource.</p>
26+
* <p>Deletes a Stage resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/DeleteVpcLinkCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface DeleteVpcLinkCommandInput extends DeleteVpcLinkRequest {}
2323
export interface DeleteVpcLinkCommandOutput extends __MetadataBearer {}
2424

2525
/**
26-
* <p>Deletes an existing <a>VpcLink</a> of a specified identifier.</p>
26+
* <p>Deletes an existing VpcLink of a specified identifier.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GenerateClientCertificateCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GenerateClientCertificateCommandInput extends GenerateClientCer
2323
export interface GenerateClientCertificateCommandOutput extends ClientCertificate, __MetadataBearer {}
2424

2525
/**
26-
* <p>Generates a <a>ClientCertificate</a> resource.</p>
26+
* <p>Generates a ClientCertificate resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetAccountCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetAccountCommandInput extends GetAccountRequest {}
2323
export interface GetAccountCommandOutput extends Account, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets information about the current <a>Account</a> resource.</p>
26+
* <p>Gets information about the current Account resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetApiKeyCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetApiKeyCommandInput extends GetApiKeyRequest {}
2323
export interface GetApiKeyCommandOutput extends ApiKey, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets information about the current <a>ApiKey</a> resource.</p>
26+
* <p>Gets information about the current ApiKey resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetApiKeysCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetApiKeysCommandInput extends GetApiKeysRequest {}
2323
export interface GetApiKeysCommandOutput extends ApiKeys, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets information about the current <a>ApiKeys</a> resource.</p>
26+
* <p>Gets information about the current ApiKeys resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetAuthorizerCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface GetAuthorizerCommandInput extends GetAuthorizerRequest {}
2323
export interface GetAuthorizerCommandOutput extends Authorizer, __MetadataBearer {}
2424

2525
/**
26-
* <p>Describe an existing <a>Authorizer</a> resource.</p>
27-
* <div class="seeAlso"><a href="https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-authorizer.html">AWS CLI</a></div>
26+
* <p>Describe an existing Authorizer resource.</p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/GetAuthorizersCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ export interface GetAuthorizersCommandInput extends GetAuthorizersRequest {}
2323
export interface GetAuthorizersCommandOutput extends Authorizers, __MetadataBearer {}
2424

2525
/**
26-
* <p>Describe an existing <a>Authorizers</a> resource.</p>
27-
* <div class="seeAlso"><a href="https://docs.aws.amazon.com/cli/latest/reference/apigateway/get-authorizers.html">AWS CLI</a></div>
26+
* <p>Describe an existing Authorizers resource.</p>
2827
* @example
2928
* Use a bare-bones client and the command you need to make an API call.
3029
* ```javascript

clients/client-api-gateway/src/commands/GetBasePathMappingCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetBasePathMappingCommandInput extends GetBasePathMappingReques
2323
export interface GetBasePathMappingCommandOutput extends BasePathMapping, __MetadataBearer {}
2424

2525
/**
26-
* <p>Describe a <a>BasePathMapping</a> resource.</p>
26+
* <p>Describe a BasePathMapping resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetBasePathMappingsCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetBasePathMappingsCommandInput extends GetBasePathMappingsRequ
2323
export interface GetBasePathMappingsCommandOutput extends BasePathMappings, __MetadataBearer {}
2424

2525
/**
26-
* <p>Represents a collection of <a>BasePathMapping</a> resources.</p>
26+
* <p>Represents a collection of BasePathMapping resources.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetClientCertificateCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetClientCertificateCommandInput extends GetClientCertificateRe
2323
export interface GetClientCertificateCommandOutput extends ClientCertificate, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets information about the current <a>ClientCertificate</a> resource.</p>
26+
* <p>Gets information about the current ClientCertificate resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetClientCertificatesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetClientCertificatesCommandInput extends GetClientCertificates
2323
export interface GetClientCertificatesCommandOutput extends ClientCertificates, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets a collection of <a>ClientCertificate</a> resources.</p>
26+
* <p>Gets a collection of ClientCertificate resources.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

clients/client-api-gateway/src/commands/GetDeploymentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface GetDeploymentCommandInput extends GetDeploymentRequest {}
2323
export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer {}
2424

2525
/**
26-
* <p>Gets information about a <a>Deployment</a> resource.</p>
26+
* <p>Gets information about a Deployment resource.</p>
2727
* @example
2828
* Use a bare-bones client and the command you need to make an API call.
2929
* ```javascript

0 commit comments

Comments
 (0)