Yep, you can use the When method for this. See this page in the documentation
When(x => x.Type == "A", () => {
RuleFor....
});
When(x => x.Type == "B", () => {
RuleFor....
});