in aws-codebuild-server/src/main/java/jetbrains/buildServer/aws/codebuild/CodeBuildRunType.java [43:55]
public PropertiesProcessor getRunnerPropertiesProcessor() {
return new PropertiesProcessor() {
@Override
public Collection<InvalidProperty> process(Map<String, String> properties) {
return CollectionsUtil.convertCollection(ParametersValidator.validateSettings(properties, true).entrySet(), new Converter<InvalidProperty, Map.Entry<String, String>>() {
@Override
public InvalidProperty createFrom(@NotNull Map.Entry<String, String> source) {
return new InvalidProperty(source.getKey(), source.getValue());
}
});
}
};
}