-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update all 'onXxx' methods to be CloudWatch Events
Make all CloudWatch events methods consistent. All methods called 'onXxx()' are now guaranteed to be CloudWatch Events triggers, all non-CWE methods that started with 'on' are now called differently. Introduce the 'onCloudTrailEvent' convention, to clearly signal that the indicated event depend on the presence of a CloudTrail Trail to capture it (as opposed to being intrinsically supported by the service itself). Introduce awslint rules to enforce these conventions. Fixes #2278. BREAKING CHANGES * All `onXxx()` CloudWatch Event methods now have the signature: ```ts resource.onEvent('SomeId', { target: new SomeTarget(...), // options }); ``` * CloudWatch: rename `onAlarm()` => `addAlarmAction()`, `onOk` => `addOkAction`, `onInsufficientData` => `addInsufficientDataAction`. * AutoScaling: rename `onLifecycleTransition` => `addLifecycleHook()`. * LambdaDeploymentGroup: rename `onPreHook` => `addPreHook`, `onPostHook` => `addPostHook`. * UserPool: rename all `onXxx` methods => `addXxxTrigger`. * Repository: rename `onImagePushed` => `onCloudTrailImagePushed`. * Bucket: rename `onEvent` => `addEventNotification`, `onObjectCreated` => `addObjectCreatedNotification`, `onObjectRemoved` => `addObjectRemovedNotification`, `onPutObject` => `onCloudTrailPutObject`.
- Loading branch information
Showing
48 changed files
with
1,068 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# Some sample CloudTrail events | ||
|
||
For reference. | ||
|
||
|
||
## S3 | ||
|
||
PutObject | ||
|
||
{ | ||
"eventSource": "s3.amazonaws.com", | ||
"resources": [ | ||
{ | ||
"ARN": "arn:aws:s3:::BUCKETNAME/OBJECTKEY", | ||
"type": "AWS::S3::Object" | ||
}, | ||
{ | ||
"accountId": "123456789012", | ||
"ARN": "arn:aws:s3:::BUCKETNAME", | ||
"type": "AWS::S3::Bucket" | ||
} | ||
], | ||
"eventTime": "2019-05-22T08:38:05Z", | ||
"userAgent": "[aws-cli/1.16.96 Python/2.7.12 Linux/4.4.0-146-generic botocore/1.12.86]", | ||
"readOnly": false, | ||
"recipientAccountId": "123456789012", | ||
"awsRegion": "eu-west-1", | ||
"requestID": "CF9748DFDC5FB0A4", | ||
"additionalEventData": { | ||
"CipherSuite": "ECDHE-RSA-AES128-GCM-SHA256", | ||
"bytesTransferredOut": 0, | ||
"AuthenticationMethod": "AuthHeader", | ||
"x-amz-id-2": "hRJMAs5p4ALZIabP4ATIL53npWU61+N6LYWj02gdQtR0ymKSySzVXUSZx7ydv7tRJwk+XMaPerM=", | ||
"bytesTransferredIn": 197, | ||
"SignatureVersion": "SigV4" | ||
}, | ||
"eventType": "AwsApiCall", | ||
"eventID": "3074546e-1bfa-4973-8502-b1bb4d0bda1a", | ||
"eventVersion": "1.05", | ||
"eventName": "PutObject", | ||
"sourceIPAddress": "1.2.3.4", | ||
"userIdentity": { | ||
"accountId": "123456789012", | ||
"type": "AssumedRole", | ||
"principalId": "AROAJBNCAL3UTR5C42U4M:user-SomeRole", | ||
"accessKeyId": "AZYCAIJERO6H7", | ||
"sessionContext": { | ||
"attributes": { | ||
"mfaAuthenticated": "false", | ||
"creationDate": "2019-05-22T08:10:21Z" | ||
}, | ||
"sessionIssuer": { | ||
"accountId": "123456789012", | ||
"type": "Role", | ||
"principalId": "AROAJBNCAL3UTR5C42U4M", | ||
"userName": "SomeRole", | ||
"arn": "arn:aws:iam::123456789012:role/SomeRole" | ||
} | ||
}, | ||
"arn": "arn:aws:sts::123456789012:assumed-role/SomeRole/user-SomeRole" | ||
}, | ||
"responseElements": null, | ||
"requestParameters": { | ||
"bucketName": "BUCKETNAME", | ||
"Host": "BUCKETNAME.s3.eu-west-1.amazonaws.com", | ||
"key": "OBJECTKEY" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.