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
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async function getHostedZoneIdByName(name: string, route53: Route53): Promise<st
* By default, STS AssumeRole will call the STS endpoint for the same region
* as the Lambda runs in. Normally, this is all good. However, when the AssumeRole
* is used to assume a role in a different account A, the AssumeRole will fail if the
* Lambda is executing in an an opt-in region R to which account A has not been opted in.
* Lambda is executing in an opt-in region R to which account A has not been opted in.
*
* To solve this, we will always AssumeRole in the same region as the Route53 call will
* resolve to.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function except(source: CrossRegionExports, filter: CrossRegionExports): CrossRe
}

/**
* Return items that exist in both the the old parameters and the new parameters,
* Return items that exist in both the old parameters and the new parameters,
* but have different values
*
* @param oldParams the exports that existed previous to this execution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import type { WaiterStateMachineOptions } from './waiter-state-machine';
export interface IApiCall extends IConstruct {
/**
* access the AssertionsProvider. This can be used to add additional IAM policies
* the the provider role policy
* the provider role policy
*
* @example
* declare const apiCall: AwsApiCall;
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/integ-tests-alpha/lib/assertions/sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class AwsApiCall extends ApiCallBase {
/**
* access the AssertionsProvider for the waiter state machine.
* This can be used to add additional IAM policies
* the the provider role policy
* the provider role policy
*
* @example
* declare const apiCall: AwsApiCall;
Expand Down
Loading