func IsValidTimestamp()

in s3plugin/s3plugin.go [436:439]


func IsValidTimestamp(timestamp string) bool {
	timestampFormat := regexp.MustCompile(`^([0-9]{14})$`)
	return timestampFormat.MatchString(timestamp)
}