From c81068b34f62a2daef306840cfb44d332d8fe6cf Mon Sep 17 00:00:00 2001 From: watany <76135106+watany-dev@users.noreply.github.com> Date: Fri, 12 Aug 2022 00:38:25 +0900 Subject: [PATCH] doc(cognito): Indicates no region restrictions (#21557) fixed: #21245 Remove the statement that it can only be handled in a specific region. Like other services, we will not add a list of regions used. ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-cognito/lib/user-pool-email.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/@aws-cdk/aws-cognito/lib/user-pool-email.ts b/packages/@aws-cdk/aws-cognito/lib/user-pool-email.ts index f62409632ea94..27eb3f8c240d3 100644 --- a/packages/@aws-cdk/aws-cognito/lib/user-pool-email.ts +++ b/packages/@aws-cdk/aws-cognito/lib/user-pool-email.ts @@ -51,8 +51,6 @@ export interface UserPoolSESOptions { * region in which the UserPool is deployed, you must specify that * region here. * - * Must be 'us-east-1', 'us-west-2', or 'eu-west-1' - * * @default - The same region as the Cognito UserPool */ readonly sesRegion?: string;