Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-apigateway/lib/api-key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export interface ApiKeyOptions extends ResourceOptions {
/**
* A name for the API key. If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the API key name.
* @link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name
* @default automically generated name
* @default automatically generated name
*/
readonly apiKeyName?: string;

Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-apigateway/lib/integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export interface IntegrationOptions {
*
* By default, the value must be between 50 milliseconds and 29 seconds.
* The upper bound can be increased for regional and private Rest APIs only,
* via a quota increase request for your acccount.
* via a quota increase request for your account.
* This increase might require a reduction in your account-level throttle quota limit.
*
* See {@link https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html Amazon API Gateway quotas} for more details.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface HttpIntegrationProps {
readonly httpMethod?: string;

/**
* Integration options, such as request/resopnse mapping, content handling,
* Integration options, such as request/response mapping, content handling,
* etc.
*
* @default defaults based on `IntegrationOptions` defaults
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export interface StepFunctionsRestApiProps extends RestApiProps {
}

/**
* Defines an API Gateway REST API with a Synchrounous Express State Machine as a proxy integration.
* Defines an API Gateway REST API with a Synchronous Express State Machine as a proxy integration.
*/
@propertyInjectable
export class StepFunctionsRestApi extends RestApi {
Expand Down
Loading