github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/sam/AVD-AWS-0121/CloudFormation.md (about)

     1  
     2  Enable server side encryption
     3  
     4  ```yaml---
     5  AWSTemplateFormatVersion: 2010-09-09
     6  Description: Good Example of SAM Table
     7  Resources:
     8    GoodFunction:
     9      Type: AWS::Serverless::SimpleTable
    10      Properties:
    11        TableName: GoodTable
    12        SSESpecification:
    13          SSEEnabled: true
    14  
    15  ```
    16  
    17