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
4 changes: 2 additions & 2 deletions packages/aws-cdk-lib/aws-autoscaling/lib/volume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export interface BlockDevice {
* Amazon EC2 Auto Scaling launches a replacement instance if the instance fails the health check.
*
* @default true - device mapping is left untouched
* @deprecated use `BlockDeviceVolume.noDevice()` as the volume to supress a mapping.
* @deprecated use `BlockDeviceVolume.noDevice()` as the volume to suppress a mapping.
*
*/
readonly mappingEnabled?: boolean;
Expand Down Expand Up @@ -163,7 +163,7 @@ export class BlockDeviceVolume {
}

/**
* Supresses a volume mapping
* Suppresses a volume mapping
*/
public static noDevice() {
return this._NO_DEVICE;
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-ec2/lib/launch-template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@ export class LaunchTemplate extends Resource implements ILaunchTemplate, iam.IGr
// tagSpecification: undefined

// CDK only has placement groups, not placement.
// Specifiying options other than placementGroup is not supported yet.
// Specifying options other than placementGroup is not supported yet.
// placement: undefined,

},
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-ecs/lib/base/base-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ export interface BaseServiceOptions {

/**
* Configuration details for a volume used by the service. This allows you to specify
* details about the EBS volume that can be attched to ECS tasks.
* details about the EBS volume that can be attached to ECS tasks.
*
* @default - undefined
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export interface CallApiGatewayEndpointBaseOptions {
readonly apiPath?: string;

/**
* Query strings attatched to end of request
* Query strings attached to end of request
* @default - No query parameters
*/
readonly queryParameters?: sfn.TaskInput;
Expand Down
Loading