maxInstances: function()

in aws-ecs-server/src/main/resources/buildServerResources/ecsSettings.js [360:366]


            maxInstances: function () {
                var maxInstances = this._image['maxInstances'];
                if (maxInstances && (!$j.isNumeric(maxInstances) || maxInstances < 0 )) {
                    this.addOptionError('nonNegative', 'maxInstances');
                    isValid = false;
                }
            }.bind(this),