static isUpdateServiceCommand()

in src/test-helpers/app-runner-commands.ts [11:14]


    static isUpdateServiceCommand(input: ExpectedCommandInputs): input is UpdateServiceCommandInput {
        const typedInput = input as UpdateServiceCommandInput;
        return typedInput.ServiceArn !== undefined && typedInput.SourceConfiguration !== undefined;
    }