Skip to content

Commit

Permalink
Merge branch 'master' into wtho/event-sources-enabled-field
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Oct 23, 2020
2 parents c6e4175 + 7435db8 commit 6742af3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-cognito/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
| Features | Stability |
| --- | --- |
| CFN Resources | ![Stable](https://img.shields.io/badge/stable-success.svg?style=for-the-badge) |
| Higher level constructs for User Pools | ![Developer Preview](https://img.shields.io/badge/developer--preview-informational.svg?style=for-the-badge) |
| Higher level constructs for User Pools | ![Stable](https://img.shields.io/badge/stable-success.svg?style=for-the-badge) |
| Higher level constructs for Identity Pools | ![Not Implemented](https://img.shields.io/badge/not--implemented-black.svg?style=for-the-badge) |

> **CFN Resources:** All classes with the `Cfn` prefix in this module ([CFN Resources](https://docs.aws.amazon.com/cdk/latest/guide/constructs.html#constructs_lib)) are always stable and safe to use.
> **Developer Preview:** Higher level constructs in this module that are marked as developer preview have completed their phase of active development and are looking for adoption and feedback. While the same caveats around non-backward compatible as Experimental constructs apply, they will undergo fewer breaking changes. Just as with Experimental constructs, these are not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be announced in the release notes.
> **Stable:** Higher level constructs in this module that are marked stable will not undergo any breaking changes. They will strictly follow the [Semantic Versioning](https://semver.org/) model.
---
<!--END STABILITY BANNER-->
Expand Down
6 changes: 3 additions & 3 deletions packages/@aws-cdk/aws-cognito/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,12 +111,12 @@
"props-physical-name:@aws-cdk/aws-cognito.UserPoolIdentityProviderGoogleProps"
]
},
"stability": "experimental",
"maturity": "developer-preview",
"stability": "stable",
"maturity": "stable",
"features": [
{
"name": "Higher level constructs for User Pools",
"stability": "Developer Preview"
"stability": "Stable"
},
{
"name": "Higher level constructs for Identity Pools",
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ses-actions/lib/s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export class S3 implements ses.IReceiptRuleAction {
// See https://docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-permissions.html#receiving-email-permissions-kms
if (this.props.kmsKey && !/alias\/aws\/ses$/.test(this.props.kmsKey.keyArn)) {
const kmsStatement = new iam.PolicyStatement({
actions: ['km:Encrypt', 'kms:GenerateDataKey'],
actions: ['kms:Encrypt', 'kms:GenerateDataKey'],
principals: [new iam.ServicePrincipal('ses.amazonaws.com')],
resources: ['*'],
conditions: {
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-ses-actions/test/actions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ test('add s3 action', () => {
},
{
Action: [
'km:Encrypt',
'kms:Encrypt',
'kms:GenerateDataKey',
],
Condition: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@
},
{
"Action": [
"km:Encrypt",
"kms:Encrypt",
"kms:GenerateDataKey"
],
"Condition": {
Expand Down Expand Up @@ -389,4 +389,4 @@
}
}
}
}
}

0 comments on commit 6742af3

Please sign in to comment.