-
Notifications
You must be signed in to change notification settings - Fork 14
mpolcik edited this page Jul 26, 2018
·
2 revisions
$ go run main.go --region us-east-1 --service s3
+------------------------------+-------------+-----------------+
| BUCKET NAME | DEFAULT SSE | LOGGING ENABLED |
+------------------------------+-------------+-----------------+
| bucket1 | NONE | true |
+------------------------------+-------------+-----------------+
| bucket2 | DKMS | false |
+------------------------------+-------------+-----------------+
| bucket3 | AES256 | false |
+------------------------------+-------------+-----------------+
- First column
BUCKET NAME
contains names of the s3 buckets. - Second column
DEFAULT SSE
gives you information on which default type of server side encryption was used in your S3 bucket:
-
NONE
- Default SSE not enabled. -
DKMS
- Default SSE enabled, AWS KMS Key used to encryp data. -
AES256
- Default SSE enabled, AES256.
- Third column
LOGGING ENABLED
contains information if logging was enabled in given S3 bucket.