|
|
|
@ -4,14 +4,14 @@ const sharedActionMap = {
|
|
|
|
|
bucketDeleteEncryption: 's3:PutEncryptionConfiguration',
|
|
|
|
|
bucketDeletePolicy: 's3:DeleteBucketPolicy',
|
|
|
|
|
bucketDeleteWebsite: 's3:DeleteBucketWebsite',
|
|
|
|
|
bucketDeleteTagging: 's3:DeleteBucketTagging',
|
|
|
|
|
bucketDeleteTagging: 's3:PutBucketTagging',
|
|
|
|
|
bucketGet: 's3:ListBucket',
|
|
|
|
|
bucketGetACL: 's3:GetBucketAcl',
|
|
|
|
|
bucketGetCors: 's3:GetBucketCORS',
|
|
|
|
|
bucketGetEncryption: 's3:GetEncryptionConfiguration',
|
|
|
|
|
bucketGetLifecycle: 's3:GetLifecycleConfiguration',
|
|
|
|
|
bucketGetLocation: 's3:GetBucketLocation',
|
|
|
|
|
bucketGetNotification: 's3:GetBucketNotificationConfiguration',
|
|
|
|
|
bucketGetNotification: 's3:GetBucketNotification',
|
|
|
|
|
bucketGetObjectLock: 's3:GetBucketObjectLockConfiguration',
|
|
|
|
|
bucketGetPolicy: 's3:GetBucketPolicy',
|
|
|
|
|
bucketGetReplication: 's3:GetReplicationConfiguration',
|
|
|
|
@ -23,7 +23,7 @@ const sharedActionMap = {
|
|
|
|
|
bucketPutCors: 's3:PutBucketCORS',
|
|
|
|
|
bucketPutEncryption: 's3:PutEncryptionConfiguration',
|
|
|
|
|
bucketPutLifecycle: 's3:PutLifecycleConfiguration',
|
|
|
|
|
bucketPutNotification: 's3:PutBucketNotificationConfiguration',
|
|
|
|
|
bucketPutNotification: 's3:PutBucketNotification',
|
|
|
|
|
bucketPutObjectLock: 's3:PutBucketObjectLockConfiguration',
|
|
|
|
|
bucketPutPolicy: 's3:PutBucketPolicy',
|
|
|
|
|
bucketPutReplication: 's3:PutReplicationConfiguration',
|
|
|
|
@ -55,8 +55,8 @@ const actionMapRQ = {
|
|
|
|
|
// see http://docs.aws.amazon.com/AmazonS3/latest/API/
|
|
|
|
|
// RESTBucketDELETEcors.html
|
|
|
|
|
bucketDeleteCors: 's3:PutBucketCORS',
|
|
|
|
|
bucketDeleteReplication: 's3:DeleteReplicationConfiguration',
|
|
|
|
|
bucketDeleteLifecycle: 's3:DeleteLifecycleConfiguration',
|
|
|
|
|
bucketDeleteReplication: 's3:PutReplicationConfiguration',
|
|
|
|
|
bucketDeleteLifecycle: 's3:PutLifecycleConfiguration',
|
|
|
|
|
completeMultipartUpload: 's3:PutObject',
|
|
|
|
|
initiateMultipartUpload: 's3:PutObject',
|
|
|
|
|
objectDeleteVersion: 's3:DeleteObjectVersion',
|
|
|
|
@ -72,6 +72,7 @@ const actionMapRQ = {
|
|
|
|
|
objectReplicate: 's3:ReplicateObject',
|
|
|
|
|
objectPutRetentionVersion: 's3:PutObjectVersionRetention',
|
|
|
|
|
objectPutLegalHoldVersion: 's3:PutObjectVersionLegalHold',
|
|
|
|
|
listObjectVersions: 's3:ListBucketVersions',
|
|
|
|
|
...sharedActionMap,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@ -104,7 +105,7 @@ const actionMonitoringMapS3 = {
|
|
|
|
|
bucketGetCors: 'GetBucketCors',
|
|
|
|
|
bucketGetLifecycle: 'GetBucketLifecycleConfiguration',
|
|
|
|
|
bucketGetLocation: 'GetBucketLocation',
|
|
|
|
|
bucketGetNotification: 'GetBucketNotificationConfiguration',
|
|
|
|
|
bucketGetNotification: 'GetBucketNotification',
|
|
|
|
|
bucketGetObjectLock: 'GetObjectLockConfiguration',
|
|
|
|
|
bucketGetPolicy: 'GetBucketPolicy',
|
|
|
|
|
bucketGetReplication: 'GetBucketReplication',
|
|
|
|
@ -117,7 +118,7 @@ const actionMonitoringMapS3 = {
|
|
|
|
|
bucketPutACL: 'PutBucketAcl',
|
|
|
|
|
bucketPutCors: 'PutBucketCors',
|
|
|
|
|
bucketPutLifecycle: 'PutBucketLifecycleConfiguration',
|
|
|
|
|
bucketPutNotification: 'PutBucketNotificationConfiguration',
|
|
|
|
|
bucketPutNotification: 'PutBucketNotification',
|
|
|
|
|
bucketPutObjectLock: 'PutObjectLockConfiguration',
|
|
|
|
|
bucketPutPolicy: 'PutBucketPolicy',
|
|
|
|
|
bucketPutReplication: 'PutBucketReplication',
|
|
|
|
|