github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/avd_docs/aws/kinesis/AVD-AWS-0064/CloudFormation.md (about) 1 2 Enable in transit encryption 3 4 ```yaml--- 5 Resources: 6 GoodExample: 7 Type: AWS::Kinesis::Stream 8 Properties: 9 Name: GoodExample 10 RetentionPeriodHours: 168 11 ShardCount: 3 12 StreamEncryption: 13 EncryptionType: KMS 14 KeyId: alis/key 15 Tags: 16 - 17 Key: Environment 18 Value: Production 19 20 ``` 21 22