Can I set a log group retention policy to 'never expire' using cloudformation ? F.e. I have the following template :
CustomLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: "logs"
RetentionInDays: 3653
The documentation suggests I should use a DeleteRetentionPolicy action . Can I define/perform this action using a yml template ? If yes , how ?