Skip to content
Open
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/aws-glue-alpha/lib/triggers/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ export class Workflow extends WorkflowBase {
}

/**
* Import an workflow from it's name
* Import a workflow from its name
*/
public static fromWorkflowArn(scope: constructs.Construct, id: string, workflowArn: string): IWorkflow {
return this.fromWorkflowAttributes(scope, id, {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-config/lib/rule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ export class ManagedRuleIdentifiers {
public static readonly CLB_MULTIPLE_AZ = 'CLB_MULTIPLE_AZ';
/**
* Checks whether an AWS CloudFormation stack's actual configuration differs, or has drifted,
* from it's expected configuration.
* from its expected configuration.
* @see https://docs.aws.amazon.com/config/latest/developerguide/cloudformation-stack-drift-detection-check.html
*/
public static readonly CLOUDFORMATION_STACK_DRIFT_DETECTION_CHECK = 'CLOUDFORMATION_STACK_DRIFT_DETECTION_CHECK';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ export abstract class QueueProcessingServiceBase extends Construct {
const errorProps = ['retentionPeriod', 'visibilityTimeout', 'maxReceiveCount'].filter(prop => props.hasOwnProperty(prop));
throw new ValidationError('OnlyQueue', `${errorProps.join(', ')} can be set only when queue is not set. Specify them in the QueueProps of the queue`, this);
}
// Create the SQS queue and it's corresponding DLQ if one is not provided
// Create the SQS queue and its corresponding DLQ if one is not provided
if (props.queue) {
this.sqsQueue = props.queue;
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/lib/cfn-parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class CfnParameter extends CfnElement {

/**
* Creates a parameter construct.
* Note that the name (logical ID) of the parameter will derive from it's `coname` and location
* Note that the name (logical ID) of the parameter will derive from its `coname` and location
* within the stack. Therefore, it is recommended that parameters are defined at the stack level.
*
* @param scope The parent construct.
Expand Down
Loading