Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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/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
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-appsync/lib/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export class SchemaFile implements ISchema {
/**
* Generate a Schema from file
*
* @returns `SchemaAsset` with immutable schema defintion
* @returns `SchemaAsset` with immutable schema definition
* @param filePath the file path of the schema file
*/
public static fromAsset(filePath: string): SchemaFile {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-events/lib/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export abstract class HttpParameter {
}

/**
* Render the paramter value
* Render the parameter value
*
* @internal
*/
Expand Down
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/aws-lambda/lib/schema-registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@ import type { IEventSourceMapping } from './event-source-mapping';
import type { IFunction } from './function-base';

/**
* The format target function should recieve record in.
* The format target function should receive record in.
*/
export class EventRecordFormat {
/**
* The target function will recieve records as json objects.
* The target function will receive records as json objects.
*/
public static readonly JSON = new EventRecordFormat('JSON');

/**
* The target function will recieve records in same format as the schema source.
* The target function will receive records in same format as the schema source.
*/
public static readonly SOURCE = new EventRecordFormat('SOURCE');

Expand Down
Loading