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

     1  
     2  Enable encryption at rest for DAX Cluster
     3  
     4  ```yaml---
     5  Resources:
     6    daxCluster:
     7      Type: AWS::DAX::Cluster
     8      Properties:
     9        ClusterName: "MyDAXCluster"
    10        NodeType: "dax.r3.large"
    11        ReplicationFactor: 1
    12        IAMRoleARN: "arn:aws:iam::111122223333:role/DaxAccess"
    13        Description: "DAX cluster created with CloudFormation"
    14        SSESpecification:
    15          SSEEnabled: true
    16  
    17  ```
    18  
    19