Skip to content
Closed
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-batch/lib/scheduling-policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export class FairshareSchedulingPolicy extends SchedulingPolicyBase implements I
public static readonly PROPERTY_INJECTION_ID: string = 'aws-cdk-lib.aws-batch.FairshareSchedulingPolicy';

/**
* Reference an exisiting Scheduling Policy by its ARN
* Reference an existing Scheduling Policy by its ARN
*/
public static fromFairshareSchedulingPolicyArn(scope: Construct, id: string, fairshareSchedulingPolicyArn: string): IFairshareSchedulingPolicy {
const stack = Stack.of(scope);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export class DnsValidatedCertificate extends CertificateBase implements ICertifi
Region: props.region,
Route53Endpoint: props.route53Endpoint,
RemovalPolicy: cdk.Lazy.any({ produce: () => this._removalPolicy }),
// Custom resources properties are always converted to strings; might as well be explict here.
// Custom resources properties are always converted to strings; might as well be explicit here.
CleanupRecords: props.cleanupRoute53Records ? 'true' : undefined,
Tags: cdk.Lazy.list({ produce: () => this.tags.renderTags() }),
},
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-cloudtrail/lib/cloudtrail.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export interface TrailProps {

/** The Amazon S3 bucket
*
* @default - if not supplied a bucket will be created with all the correct permisions
* @default - if not supplied a bucket will be created with all the correct permissions
*/
readonly bucket?: s3.IBucket;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export interface BucketDeploymentProps {
readonly distributionPaths?: string[];

/**
* In case of using a cloudfront distribtuion, if this property is set to false then the custom resource
* In case of using a cloudfront distribution, if this property is set to false then the custom resource
* will not wait and verify for Cloudfront invalidation to complete. This may speed up deployment and avoid
* intermittent Cloudfront issues. However, this is risky and not recommended as cache invalidation
* can silently fail.
Expand Down
Loading